avoid ruby dependency
Joel AZEMAR
committed Apr 15, 2014
commit 47d78647eec31d8bb39d2a8b8a01d3fcd7d5f4ad
Showing 2
changed files with
9 additions
and 1 deletions
Gemfile
+8
-0
| @@ | @@ -13,3 +13,11 @@ group :test do |
| end | |
| gem 'thin' | |
| + | |
| + | platform :jruby do |
| + | ruby '1.9.3', engine: 'jruby', engine_version: '1.7.11' |
| + | end |
| + | |
| + | platform :ruby do |
| + | ruby '2.1.1' |
| + | end |
| \ No newline at end of file | |
locomotivecms_steam.gemspec
+1
-1
| @@ | @@ -37,5 +37,5 @@ Gem::Specification.new do |spec| |
| spec.add_dependency 'locomotivecms-solid' | |
| spec.add_dependency 'locomotivecms_common', '~> 0.0.1' | |
| - | spec.required_ruby_version = '~> 2.0' |
| + | # spec.required_ruby_version = '~> 2.0' |
| end | |