Sha256: 0e6b1ccc5e99a2435f2ed0fbf989af20332764e8dab88dcda70918741940f411

Contents?: true

Size: 1.09 KB

Versions: 7

Compression:

Stored size: 1.09 KB

Contents

source 'http://rubygems.org'

# load rhoconnect from relative path
gem 'rhoconnect', :path => '../../'

# 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]

# for Async, Eventful execution
platforms :ruby_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

gem 'sqlite3', ">= 1.3.3", :platforms => [:ruby, :mswin, :mingw]

group :development do
  # FIXME: At this moment (01/10/2012) only pre release of 'eventmachine' is working on Windows
  gem 'eventmachine', '~> 1.0.0.beta', :platforms => [:mswin, :mingw]
  # By default to run application thin web server is used
  gem 'thin', :platforms => [:ruby, :mswin, :mingw]
  gem 'rhomobile-debug', ">= 1.0.2"
end

group :test do
  gem 'rack-test', '>= 0.5.3', :require => "rack/test"
  gem 'rspec', '~> 2.6.0'
  gem 'rhomobile-debug', ">= 1.0.2"
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
rhoconnect-3.2.1 examples/simple/Gemfile
rhoconnect-3.2.0 examples/simple/Gemfile
rhoconnect-3.2.0.beta5 examples/simple/Gemfile
rhoconnect-3.2.0.beta4 examples/simple/Gemfile
rhoconnect-3.2.0.beta3 examples/simple/Gemfile
rhoconnect-3.2.0.beta2 examples/simple/Gemfile
rhoconnect-3.2.0.beta1 examples/simple/Gemfile