Skip to content

Commit

Permalink
Adds Gemspec to Gemfile
Browse files Browse the repository at this point in the history
Before this, if you wanted to check local changes to gem versions and the like using bundler, it would complain it could not find the gem in the bundle environment.
  • Loading branch information
petems committed May 14, 2015
1 parent 4ff4fd2 commit 2dbf19a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@ source 'https://rubygems.org'
puppetversion = ENV.key?('PUPPET_VERSION') ? "~> #{ENV['PUPPET_VERSION']}.0" : ['~> 4.0']
rspecversion = ENV.key?('RSPEC_VERSION') ? "= #{ENV['RSPEC_VERSION']}" : ['~> 2.0']

gemspec

gem 'rake'
gem 'rspec', rspecversion
gem 'rspec-core', rspecversion
gem 'puppet', puppetversion
gem 'pry', :group => :development
gem 'pry', :group => :development

0 comments on commit 2dbf19a

Please sign in to comment.