rubyx-debugger/Gemfile

42 lines
1.3 KiB
Ruby
Raw Normal View History

2015-07-06 13:20:21 +02:00
source 'https://rubygems.org'
2015-07-31 18:31:02 +02:00
gem 'volt', '0.9.5.pre4'
2015-07-29 16:13:04 +02:00
# volt uses mongo as the default data store.
gem 'volt-mongo', '~> 0.1.0'
2015-07-31 20:41:11 +02:00
gem "parslet" , git: "https://github.com/salama/parslet.git"
2015-08-04 20:45:49 +02:00
#gem "salama" , git: "https://github.com/salama/salama.git"
gem "salama" , path: "../salama"
2015-07-31 19:36:35 +02:00
gem "salama-reader" , git: "https://github.com/salama/salama-reader.git"
gem "salama-arm" , git: "https://github.com/salama/salama-arm.git"
gem "salama-object-file" , git: "https://github.com/salama/salama-object-file.git"
2015-07-29 16:34:15 +02:00
gem "susy" , "2.2.5"
2015-07-29 16:26:04 +02:00
2015-07-29 16:13:04 +02:00
# Asset compilation gems, they will be required when needed.
gem 'csso-rails', '~> 0.3.4', require: false
gem 'uglifier', '>= 2.4.0', require: false
2015-07-31 18:31:02 +02:00
#gem "foundation" , :github => "zurb/foundation"
2015-07-29 16:13:04 +02:00
group :test do
# Testing dependencies
2015-07-30 14:18:19 +02:00
gem "minitest"
2015-07-29 16:13:04 +02:00
gem 'rspec', '~> 3.2.0'
gem 'opal-rspec', '~> 0.4.2'
gem 'capybara', '~> 2.4.2'
gem 'selenium-webdriver', '~> 2.43.0'
gem 'chromedriver2-helper', '~> 0.0.8'
gem 'poltergeist', '~> 1.5.0'
end
# Server for MRI
platform :mri, :mingw do
# The implementation of ReadWriteLock in Volt uses concurrent ruby and ext helps performance.
gem 'concurrent-ruby-ext', '~> 0.8.0'
# Thin is the default volt server, Puma is also supported
gem 'thin', '~> 1.6.0'
gem 'bson_ext', '~> 1.9.0'
2015-07-24 17:38:37 +02:00
end