Sha256: 0470d35e783724ba53ac8c0c779981e63a52285ab752b083c274c08225f7389a
Contents?: true
Size: 1.55 KB
Versions: 6
Compression:
Stored size: 1.55 KB
Contents
source 'http://rubygems.org' gemspec # volt-mongo gem for testing # gem 'volt-mongo' gem 'volt-sql' # Use rbnacl for message bus encrpytion # (optional, if you don't need encryption, disable in app.rb and remove) gem 'rbnacl', require: false gem 'rbnacl-libsodium', require: false # temp until 0.8.0 of opal # gem 'opal-rspec', github: 'opal/opal-rspec' gem 'sqlite3' gem 'pg', '~> 0.18.2' gem 'pg_json', '~> 0.1.29' group :development, :test do # For testing the kitchen sink app # Twitter bootstrap gem 'volt-bootstrap' # Simple theme for bootstrap, remove to theme yourself. gem 'volt-bootstrap_jumbotron_theme' # For testing gem 'volt-fields' # For testing gem 'volt-user_templates' # For running rubocop gem 'rubocop', require: false end group :development, :test do platform :mri do # For running tests gem 'thin' end platform :jruby do # For running tests gem 'puma' end end platform :mri do # The implementation of ReadWriteLock in Volt uses concurrent ruby and ext helps performance. gem 'concurrent-ruby-ext' # For debugging gem 'pry-byebug', '~> 2.0.0', require: false # For Yard Formatting, in MRI block because redcarpet doesn't install on jruby gem 'redcarpet', '~> 3.2.2', require: false gem 'github-markup', '~> 1.3.1', require: false # Sauce has a dependency that doesn't run on ruby <= 2.0.0 # (which older jruby versions don't support) # TODO: Move out of MRI block once jruby 9k is outs gem 'sauce', '~> 3.5.3', require: false gem 'sauce-connect', '~> 3.5.0', require: false end
Version data entries
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
volt-0.9.7.pre8 | Gemfile |
volt-0.9.7.pre7 | Gemfile |
volt-0.9.7.pre6 | Gemfile |
volt-0.9.7.pre5 | Gemfile |
volt-0.9.7.pre3 | Gemfile |
volt-0.9.7.pre2 | Gemfile |