Skip to content

Commit

Permalink
0.1.4 Updated description, fixed tabtab def location
Browse files Browse the repository at this point in the history
  • Loading branch information
ianwhite committed Nov 23, 2008
1 parent 7514a7f commit 28c0eee
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Rakefile
Expand Up @@ -11,8 +11,8 @@ require 'garlic'
spec = Gem::Specification.new do |s| spec = Gem::Specification.new do |s|
s.name = "garlic" s.name = "garlic"
s.version = Garlic::Version::String s.version = Garlic::Version::String
s.summary = "Lightweight set of rake tasks to help with CI." s.summary = "Set of commands/rake-tasks for CI against multiple version of rails/deps."
s.description = "Lightweight set of rake tasks to help with CI." s.description = "Set of commands/rake-tasks for CI against multiple version of rails/deps."
s.author = "Ian White" s.author = "Ian White"
s.email = "ian.w.white@gmail.com" s.email = "ian.w.white@gmail.com"
s.homepage = "http://github.com/ianwhite/garlic/tree" s.homepage = "http://github.com/ianwhite/garlic/tree"
Expand Down
6 changes: 3 additions & 3 deletions garlic.gemspec
Expand Up @@ -8,16 +8,16 @@ Gem::Specification.new do |s|
s.authors = ["Ian White"] s.authors = ["Ian White"]
s.date = %q{2008-11-23} s.date = %q{2008-11-23}
s.default_executable = %q{garlic} s.default_executable = %q{garlic}
s.description = %q{Lightweight set of rake tasks to help with CI.} s.description = %q{Set of commands/rake-tasks for CI against multiple version of rails/deps.}
s.email = %q{ian.w.white@gmail.com} s.email = %q{ian.w.white@gmail.com}
s.executables = ["garlic"] s.executables = ["garlic"]
s.files = ["lib/garlic/configurator.rb", "lib/garlic/generator.rb", "lib/garlic/repo.rb", "lib/garlic/session.rb", "lib/garlic/shell.rb", "lib/garlic/target.rb", "lib/garlic/tasks.rb", "lib/garlic.rb", "lib/tabtab_definition.rb", "templates/default.rb", "templates/rspec.rb", "templates/shoulda.rb", "MIT-LICENSE", "README.textile", "TODO", "CHANGELOG", "spec/garlic/repo_spec.rb", "bin/garlic"] s.files = ["lib/garlic/configurator.rb", "lib/garlic/generator.rb", "lib/garlic/repo.rb", "lib/garlic/session.rb", "lib/garlic/shell.rb", "lib/garlic/target.rb", "lib/garlic/tasks.rb", "lib/garlic.rb", "lib/tabtab_definitions/garlic.rb", "templates/default.rb", "templates/rspec.rb", "templates/shoulda.rb", "MIT-LICENSE", "README.textile", "TODO", "CHANGELOG", "spec/garlic/repo_spec.rb", "bin/garlic"]
s.has_rdoc = true s.has_rdoc = true
s.homepage = %q{http://github.com/ianwhite/garlic/tree} s.homepage = %q{http://github.com/ianwhite/garlic/tree}
s.rdoc_options = ["--title", "Garlic", "--line-numbers"] s.rdoc_options = ["--title", "Garlic", "--line-numbers"]
s.require_paths = ["lib"] s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.1} s.rubygems_version = %q{1.3.1}
s.summary = %q{Lightweight set of rake tasks to help with CI.} s.summary = %q{Set of commands/rake-tasks for CI against multiple version of rails/deps.}
s.test_files = ["spec/garlic/repo_spec.rb"] s.test_files = ["spec/garlic/repo_spec.rb"]


if s.respond_to? :specification_version then if s.respond_to? :specification_version then
Expand Down
2 changes: 1 addition & 1 deletion lib/garlic.rb
Expand Up @@ -11,7 +11,7 @@ module Garlic
module Version module Version
Major = 0 Major = 0
Minor = 1 Minor = 1
Tiny = 3 Tiny = 4


String = [Major, Minor, Tiny].join('.') String = [Major, Minor, Tiny].join('.')
end end
Expand Down
File renamed without changes.

0 comments on commit 28c0eee

Please sign in to comment.