diff options
| author | Lorenzo Manacorda | 2015-06-08 18:08:14 +0200 | 
|---|---|---|
| committer | Lorenzo Manacorda | 2015-06-08 18:08:14 +0200 | 
| commit | dcd0d16d1acbcc1e068eb611cd50c737f446802d (patch) | |
| tree | 1d4e2773d87f21ede360a1eb19240f853690a007 | |
| parent | d5ca9a70a27a1992fea4fb7603e9a0a039cff88b (diff) | |
| download | hcl-dcd0d16d1acbcc1e068eb611cd50c737f446802d.tar.bz2 | |
split gemfiles based on platform
| -rw-r--r-- | Gemfile | 17 | ||||
| -rw-r--r-- | Gemfile.lock | 11 | ||||
| -rw-r--r-- | gemfiles/Gemfile.rbx | 16 | 
3 files changed, 24 insertions, 20 deletions
| @@ -1,11 +1,10 @@  source "https://rubygems.org"  gemspec -gem 'ronn', group:['development'] -# XXX this is dumb but it's crazy hard to get platform specfic deps into a gemspec -gem 'byebug', group:['test','development'], platform:'ruby_20' -gem 'rubysl-abbrev', platform:'rbx' -gem 'rubysl-singleton', platform:'rbx' -gem 'rubysl-rexml', platform:'rbx' -gem 'rubysl-coverage', platform:'rbx', group:'test' -gem 'rubinius-coverage', platform:'rbx', group:'test' -gem 'yajl-ruby', platform:'rbx', group:'test' + +group :development do +  gem 'ronn' +end + +group :test, :development do +  gem 'byebug' +end diff --git a/Gemfile.lock b/Gemfile.lock index 3af24e0..f91f72d 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -52,12 +52,7 @@ GEM        hpricot (>= 0.8.2)        mustache (>= 0.7.0)        rdiscount (>= 1.5.8) -    rubinius-coverage (2.0.3)      rubygems-tasks (0.2.4) -    rubysl-abbrev (2.0.4) -    rubysl-coverage (2.0.3) -    rubysl-rexml (2.0.4) -    rubysl-singleton (2.0.0)      simplecov (0.10.0)        docile (~> 1.1.0)        json (~> 1.8) @@ -81,14 +76,8 @@ DEPENDENCIES    mocha    rake    ronn -  rubinius-coverage    rubygems-tasks -  rubysl-abbrev -  rubysl-coverage -  rubysl-rexml -  rubysl-singleton    simplecov -  yajl-ruby    yard  BUNDLED WITH diff --git a/gemfiles/Gemfile.rbx b/gemfiles/Gemfile.rbx new file mode 100644 index 0000000..fd494be --- /dev/null +++ b/gemfiles/Gemfile.rbx @@ -0,0 +1,16 @@ +source "https://rubygems.org" +gemspec + +gem 'rubysl-abbrev' +gem 'rubysl-singleton' +gem 'rubysl-rexml' + +group :development do +  gem 'ronn' +end + +group :test do +  gem 'rubysl-coverage' +  gem 'rubinius-coverage' +  gem 'yajl-ruby' +end | 
