Sha256: 76117880fc5cbb204319f55a4aebf979733b3a0fd3c5b7fc226b1fc9bfe4a7b1
Contents?: true
Size: 985 Bytes
Versions: 6
Compression:
Stored size: 985 Bytes
Contents
# Rhoconnect app runtime dependencies # DO NOT edit this file unless you know what are you doing! # v0.7.x removes Process.fork, need this version for now gem 'win32-process', '= 0.6.6', :platforms => [:mswin, :mingw] # use thin and eventmachine everywhere except JRuby platforms :ruby, :mingw do gem "eventmachine", "~> 1.0.0" # using thin by default gem 'thin' # for async framework # for Async, Eventful execution 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 'puma', "~> 1.6.0" 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