Skip to content

Commit

Permalink
Update the gemspec to not use jeweler (bumped the rspec version for f…
Browse files Browse the repository at this point in the history
…c5655f too).
  • Loading branch information
benhoskings committed Oct 25, 2011
1 parent 0a26fd6 commit 48f74bb
Showing 1 changed file with 12 additions and 78 deletions.
90 changes: 12 additions & 78 deletions git-smart.gemspec
@@ -1,91 +1,25 @@
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-

Gem::Specification.new do |s|
s.name = %q{git-smart}
s.version = "0.1.6"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Glen Maddern"]
s.email = %q{glenmaddern@gmail.com}
s.date = %q{2011-01-06}
s.summary = %q{Add some smarts to your git workflow}
s.description = %q{Installs some additional 'smart' git commands, like `git smart-pull`.}
s.email = %q{glenmaddern@gmail.com}
s.executables = ["git-smart-log", "git-smart-pull", "git-smart-merge"]
s.extra_rdoc_files = [
"LICENSE.txt",
"README.md"
]
s.files = [
"Gemfile",
"Gemfile.lock",
"LICENSE.txt",
"README.md",
"Rakefile",
"VERSION",
"bin/git-smart-log",
"bin/git-smart-merge",
"bin/git-smart-pull",
"docs/images/git-smart.png",
"docs/smart-merge.html",
"docs/smart-pull.html",
"git-smart.gemspec",
"lib/commands/smart-log.rb",
"lib/commands/smart-merge.rb",
"lib/commands/smart-pull.rb",
"lib/core_ext/array.rb",
"lib/core_ext/hash.rb",
"lib/core_ext/object.rb",
"lib/git-smart.rb",
"lib/git-smart/exceptions.rb",
"lib/git-smart/execution_context.rb",
"lib/git-smart/git_repo.rb",
"lib/git-smart/git_smart.rb",
"lib/git-smart/safe_shell.rb",
"spec/smart-merge_failures_spec.rb",
"spec/smart-merge_spec.rb",
"spec/smart-pull_spec.rb",
"spec/spec_helper.rb"
]
s.homepage = %q{http://github.com/geelen/git-smart}
s.licenses = ["MIT"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.7}
s.summary = %q{Add some smarts to your git workflow}
s.test_files = [
"spec/smart-merge_failures_spec.rb",
"spec/smart-merge_spec.rb",
"spec/smart-pull_spec.rb",
"spec/spec_helper.rb"
]

if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
s.extra_rdoc_files = %w[LICENSE.txt README.md]

if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<colorize>, [">= 0"])
s.add_development_dependency(%q<rspec>, ["~> 2.3.0"])
s.add_development_dependency(%q<rcov>, [">= 0"])
s.add_development_dependency(%q<bundler>, ["~> 1.0.0"])
s.add_development_dependency(%q<jeweler>, ["~> 1.5.2"])
s.add_development_dependency(%q<rocco>, [">= 0"])
else
s.add_dependency(%q<colorize>, [">= 0"])
s.add_dependency(%q<rspec>, ["~> 2.3.0"])
s.add_dependency(%q<rcov>, [">= 0"])
s.add_dependency(%q<bundler>, ["~> 1.0.0"])
s.add_dependency(%q<jeweler>, ["~> 1.5.2"])
s.add_dependency(%q<rocco>, [">= 0"])
end
else
s.add_dependency(%q<colorize>, [">= 0"])
s.add_dependency(%q<rspec>, ["~> 2.3.0"])
s.add_dependency(%q<rcov>, [">= 0"])
s.add_dependency(%q<bundler>, ["~> 1.0.0"])
s.add_dependency(%q<jeweler>, ["~> 1.5.2"])
s.add_dependency(%q<rocco>, [">= 0"])
end
end
s.executables = `git ls-files -- bin`.split("\n").map{|f| File.basename(f) }
s.files = `git ls-files -- {lib,docs}`.split("\n") + %w[Gemfile Gemfile.lock LICENSE.txt README.md Rakefile VERSION]
s.test_files = `git ls-files -- spec`.split("\n")

s.add_runtime_dependency(%q<colorize>, [">= 0"])

s.add_development_dependency(%q<rspec>, [">= 2.7.0"])
s.add_development_dependency(%q<rcov>, [">= 0"])
s.add_development_dependency(%q<rocco>, [">= 0"])
end

0 comments on commit 48f74bb

Please sign in to comment.