Skip to content

Commit

Permalink
Remove jeweler from Gemfile & Rakefile.
Browse files Browse the repository at this point in the history
  • Loading branch information
benhoskings committed Oct 25, 2011
1 parent 48f74bb commit d983d3d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 22 deletions.
1 change: 0 additions & 1 deletion Gemfile
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -5,6 +5,5 @@ gem 'colorize'
group :development do group :development do
gem "rspec" gem "rspec"
gem "rcov" gem "rcov"
gem "jeweler"
gem "rocco" gem "rocco"
end end
7 changes: 0 additions & 7 deletions Gemfile.lock
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -3,13 +3,7 @@ GEM
specs: specs:
colorize (0.5.8) colorize (0.5.8)
diff-lcs (1.1.3) diff-lcs (1.1.3)
git (1.2.5)
jeweler (1.6.4)
bundler (~> 1.0)
git (>= 1.2.5)
rake
mustache (0.99.4) mustache (0.99.4)
rake (0.9.2)
rcov (0.9.11) rcov (0.9.11)
redcarpet (1.17.2) redcarpet (1.17.2)
rocco (0.8.2) rocco (0.8.2)
Expand All @@ -29,7 +23,6 @@ PLATFORMS


DEPENDENCIES DEPENDENCIES
colorize colorize
jeweler
rcov rcov
rocco rocco
rspec rspec
17 changes: 3 additions & 14 deletions Rakefile
Original file line number Original file line Diff line number Diff line change
@@ -1,26 +1,15 @@
require 'rubygems' require 'rubygems'
require 'bundler' require 'bundler'

begin begin
Bundler.setup(:default, :development) Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e rescue Bundler::BundlerError => e
$stderr.puts e.message $stderr.puts e.message
$stderr.puts "Run `bundle install` to install missing gems" $stderr.puts "Run `bundle install` to install missing gems"
exit e.status_code exit e.status_code
end end
require 'rake'


require 'jeweler' require 'rake'
Jeweler::Tasks.new do |gem|
# gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
gem.name = "git-smart"
gem.homepage = "http://github.com/geelen/git-smart"
gem.license = "MIT"
gem.summary = %Q{Add some smarts to your git workflow}
gem.description = %Q{Installs some additional 'smart' git commands, like `git smart-pull`.}
gem.email = "glenmaddern@gmail.com"
gem.authors = ["Glen Maddern"]
end
Jeweler::RubygemsDotOrgTasks.new


require 'rspec/core' require 'rspec/core'
require 'rspec/core/rake_task' require 'rspec/core/rake_task'
Expand Down Expand Up @@ -79,4 +68,4 @@ GitSmart.run('#{cmd}', ARGV)
} }
end end


task :gemspec => :generate_binaries task :build => :generate_binaries

0 comments on commit d983d3d

Please sign in to comment.