project skeleton

This commit is contained in:
Charles Lowell 2010-12-18 13:36:28 -06:00
commit 1fa5a3b1ca
5 changed files with 36 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
pkg/*
*.gem
.bundle

4
Gemfile Normal file
View File

@ -0,0 +1,4 @@
source "http://rubygems.org"
# Specify your gem's dependencies in hudson.war.gemspec
gemspec

2
Rakefile Normal file
View File

@ -0,0 +1,2 @@
require 'bundler'
Bundler::GemHelper.install_tasks

21
hudson.war.gemspec Normal file
View File

@ -0,0 +1,21 @@
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "hudson/war/version"
Gem::Specification.new do |s|
s.name = "hudson.war"
s.version = Hudson::War::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Charles Lowell"]
s.email = ["cowboyd@thefrontside.net"]
s.homepage = "http://rubygems.org/gems/hudson.war"
s.summary = "get a specific hudson version with rubygems"
s.description = "this installs a known version of hudson. It also comes with a cron task to bundle versions of itself when a new version of hudson comes out"
s.rubyforge_project = "hudson.war"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
end

View File

@ -0,0 +1,6 @@
module Hudson
module War
VERSION = "1.386"
end
end