diff options
| -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 |
