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