Sha256: f63d02324ba4383b9a08690d76b35b25a4f09845a5566245f832751ac3a73758
Contents?: true
Size: 1.08 KB
Versions: 6
Compression:
Stored size: 1.08 KB
Contents
source 'http://rubygems.org' gem 'rhoconnect', '<%=gem_version%>' # Helps with some of the limitations of green threads, not needed in ruby 1.9.x gem 'SystemTimer', '~> 1.2.3', :platforms => :ruby_18 gem 'win32-process', :platforms => [:mswin, :mingw] # use thin and eventmachine everywhere except JRuby platforms :ruby, :ruby_19, :mingw, :mingw_19 do gem "eventmachine", "~> 1.0.0.beta" # using thin by default gem 'thin' end # for async framework # for Async, Eventful execution platforms :ruby_19, :mingw_19 do gem 'rack-fiber_pool' gem 'async-rack' end platforms :jruby do gem 'jdbc-sqlite3', ">= 3.7.2" gem 'dbi', ">= 0.4.5" gem 'dbd-jdbc', ">= 0.1.4" gem 'jruby-openssl', ">= 0.7.4" gem 'trinidad' gem 'warbler' end # uncomment the line below to use bulk sync: http://docs.rhomobile.com/rhoconnect/bulk-sync # gem 'sqlite3', ">= 1.3.3", :platforms => [:ruby, :mswin, :mingw] group :development do gem 'rhomobile-debug', ">= 1.0.2" end group :test do gem 'rspec', '~> 2.10.0' gem 'rack-test', '>= 0.5.3', :require => "rack/test" gem 'rhomobile-debug', ">= 1.0.2" end
Version data entries
6 entries across 6 versions & 1 rubygems