Sha256: 705591f628879824161e8d35c1a98041ad908eb41f95818b816ac0b854644ae5

Contents?: true

Size: 1.07 KB

Versions: 5

Compression:

Stored size: 1.07 KB

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-api', '= 1.4.5', :platforms => [:mswin, :mingw]
gem 'win32-process', '= 0.6.6', :platforms => [:mswin, :mingw]

# use thin and eventmachine everywhere except JRuby
platforms :ruby, :mingw do
  gem "eventmachine", "~> 1.0.5"
  # using thin by default
  gem 'thin'
# for async framework
# for Async, Eventful execution
  gem 'rack-fiber_pool'
  gem 'async-rack', :git => 'https://github.com/tauplatform/async-rack.git'
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.14'
  gem 'rack-test', '~> 0.6', :require => "rack/test"
  gem 'rhomobile-debug', ">= 1.0.2"
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
rhoconnect-7.6.0 generators/templates/application/rcgemfile
rhoconnect-7.5.1 generators/templates/application/rcgemfile
rhoconnect-7.4.1 generators/templates/application/rcgemfile
rhoconnect-7.1.17 generators/templates/application/rcgemfile
rhoconnect-6.2.0 generators/templates/application/rcgemfile