Skip to content

Commit

Permalink
Fix gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
norbert committed Jul 19, 2010
1 parent c1d17e8 commit 2e2d37d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions braid.gemspec
@@ -1,17 +1,17 @@
Gem::Specification.new do |s|
s.name = %q{braid}
s.version = "0.6.1"
s.version = "0.6.2"

s.specification_version = 2 if s.respond_to? :specification_version=

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Cristi Balan", "Norbert Crombach"]
s.date = %q{2008-10-29}
s.date = %q{2010-07-19}
s.default_executable = %q{braid}
s.description = %q{A simple tool for tracking vendor branches in git.}
s.email = %q{evil@che.lu}
s.executables = ["braid"]
s.files = ["bin/braid", "braid.gemspec", "lib/braid/command.rb", "lib/braid/commands/add.rb", "lib/braid/commands/diff.rb", "lib/braid/commands/remove.rb", "lib/braid/commands/setup.rb", "lib/braid/commands/update.rb", "lib/braid/config.rb", "lib/braid/mirror.rb", "lib/braid/operations.rb", "lib/braid.rb", "lib/core_ext.rb", "LICENSE", "Rakefile", "README.textile", "test/braid_test.rb", "test/config_test.rb", "test/fixtures/shiny/README", "test/fixtures/skit1/layouts/layout.liquid", "test/fixtures/skit1/preview.png", "test/fixtures/skit1.1/layouts/layout.liquid", "test/fixtures/skit1.2/layouts/layout.liquid", "test/integration/adding_test.rb", "test/integration/updating_test.rb", "test/integration_helper.rb", "test/mirror_test.rb", "test/operations_test.rb", "test/test_helper.rb"]
s.files = ["bin/braid", "braid.gemspec", "lib/braid/command.rb", "lib/braid/commands/add.rb", "lib/braid/commands/diff.rb", "lib/braid/commands/push.rb", "lib/braid/commands/remove.rb", "lib/braid/commands/setup.rb", "lib/braid/commands/update.rb", "lib/braid/config.rb", "lib/braid/mirror.rb", "lib/braid/operations.rb", "lib/braid.rb", "lib/core_ext.rb", "LICENSE", "Rakefile", "README.textile", "test/braid_test.rb", "test/config_test.rb", "test/fixtures/shiny/README", "test/fixtures/skit1/layouts/layout.liquid", "test/fixtures/skit1/preview.png", "test/fixtures/skit1.1/layouts/layout.liquid", "test/fixtures/skit1.2/layouts/layout.liquid", "test/integration/adding_test.rb", "test/integration/updating_test.rb", "test/integration_helper.rb", "test/mirror_test.rb", "test/operations_test.rb", "test/test_helper.rb"]
s.has_rdoc = false
s.homepage = %q{http://evil.che.lu/projects/braid}
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "braid", "--main"]
Expand All @@ -20,6 +20,6 @@ Gem::Specification.new do |s|
s.rubygems_version = %q{1.1.0}
s.summary = %q{A simple tool for tracking vendor branches in git.}

s.add_dependency(%q<main>, [">= 3.0.0"])
s.add_dependency(%q<open4>, [">= 0.9.6"])
s.add_dependency(%q<main>, [">= 4.2.0"])
s.add_dependency(%q<open4>, [">= 1.0.1"])
end
2 changes: 1 addition & 1 deletion lib/braid.rb
@@ -1,7 +1,7 @@
$:.unshift dirname = File.dirname(__FILE__)

module Braid
VERSION = "0.6.1"
VERSION = "0.6.2"

CONFIG_FILE = ".braids"
REQUIRED_GIT_VERSION = "1.6"
Expand Down

0 comments on commit 2e2d37d

Please sign in to comment.