Sha256: 2e7c672156e130e1d5c22923dfedfd1b6db8c0fa16c374f93a153e62ab1223f9

Contents?: true

Size: 1.02 KB

Versions: 8

Compression:

Stored size: 1.02 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'
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

8 entries across 8 versions & 1 rubygems

Version Path
rhoconnect-6.0.11 generators/templates/application/rcgemfile
rhoconnect-5.5.18 generators/templates/application/rcgemfile
rhoconnect-5.5.17 generators/templates/application/rcgemfile
rhoconnect-5.5.15 generators/templates/application/rcgemfile
rhoconnect-5.5.0.22 generators/templates/application/rcgemfile
rhoconnect-5.5.2 generators/templates/application/rcgemfile
rhoconnect-5.5.0.7 generators/templates/application/rcgemfile
rhoconnect-5.5.0.3 generators/templates/application/rcgemfile