Setup bundler to manage gem dependencies

This commit is contained in:
Thibault Jouan 2015-04-06 16:36:20 +00:00
parent 46056482a7
commit 33bf50d3ae
2 changed files with 7 additions and 0 deletions

2
.gitignore vendored
View File

@ -0,0 +1,2 @@
/Gemfile-custom.rb
/Gemfile.lock

5
Gemfile Normal file
View File

@ -0,0 +1,5 @@
source 'https://rubygems.org'
gemspec
eval File.read('Gemfile-custom.rb') if File.exist?('Gemfile-custom.rb')