Merge branch 'master' into 2681-new-inactive-user-notification
[arvados.git] / apps / workbench / Gemfile
1 source 'https://rubygems.org'
2
3 gem 'rails', '~> 4.1.0'
4 gem 'minitest', '>= 5.0.0'
5
6 # Bundle edge Rails instead:
7 # gem 'rails', :git => 'git://github.com/rails/rails.git'
8
9 gem 'sqlite3'
10
11 gem 'multi_json'
12 gem 'oj'
13 gem 'sass'
14
15 # Note: keeping this out of the "group :assets" section "may" allow us
16 # to use Coffescript for UJS responses. It also prevents a
17 # warning/problem when running tests: "WARN: tilt autoloading
18 # 'coffee_script' in a non thread-safe way; explicit require
19 # 'coffee_script' suggested."
20 gem 'coffee-rails'
21
22 # Gems used only for assets and not required
23 # in production environments by default.
24 group :assets do
25   gem 'sass-rails'
26
27   # See https://github.com/sstephenson/execjs#readme for more supported runtimes
28   gem 'therubyracer', :platforms => :ruby
29
30   gem 'uglifier', '>= 1.0.3'
31 end
32
33 group :test do
34   gem 'rvm-capistrano'
35   gem 'selenium-webdriver'
36   gem 'capybara'
37   gem 'poltergeist'
38   gem 'headless'
39   # Note: "require: false" here tells bunder not to automatically
40   # 'require' the packages during application startup. Installation is
41   # still mandatory.
42   gem 'simplecov', '~> 0.7.1', require: false
43   gem 'simplecov-rcov', require: false
44 end
45
46 gem 'jquery-rails'
47 gem 'bootstrap-sass', '~> 3.1.0'
48 gem 'bootstrap-x-editable-rails'
49
50 gem 'less'
51 gem 'less-rails'
52
53 # To use ActiveModel has_secure_password
54 # gem 'bcrypt-ruby', '~> 3.0.0'
55
56 # To use Jbuilder templates for JSON
57 # gem 'jbuilder'
58
59 # Use unicorn as the app server
60 # gem 'unicorn'
61
62 # Deploy with Capistrano
63 # gem 'capistrano'
64
65 # To use debugger
66 #gem 'byebug'
67
68 gem 'passenger', :group => :production
69 gem 'andand'
70 gem 'RedCloth'
71
72 gem 'piwik_analytics'
73 gem 'httpclient'
74
75 # This fork has Rails 4 compatible routes
76 gem 'themes_for_rails', git: 'https://github.com/holtkampw/themes_for_rails', ref: '1fd2d7897d75ae0d6375f4c390df87b8e91ad417'
77
78 gem "deep_merge", :require => 'deep_merge/rails_compat'