forked from CDLUC3/dash-ingest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
64 lines (50 loc) · 1.42 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
source 'https://rubygems.org'
ruby '2.1.2'
gem 'rails', '3.2.19'
gem 'mysql2'
gem 'rubyzip', "~> 0.9.9"
group :development, :local do
gem 'webrick', '~> 1.3.1'
gem 'byebug'
gem 'sextant' #you can go to http://localhost:3000/rails/routes to see routes
end
group :test do
gem 'launchy'
gem 'capybara', '>= 2.2.0'
gem 'capybara-webkit', '~> 1.1.0'
gem 'sqlite3'
gem 'database_cleaner'
end
group :development, :test do
gem 'rspec-rails', '~> 3.0.0'
gem 'factory_girl_rails'
gem 'selenium-webdriver', '~> 2.35.1'
gem 'chromedriver-helper'
end
gem 'whenever', :require => false
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', :platforms => :ruby
gem 'uglifier', '>= 1.0.3'
end
gem 'jquery-rails'
gem 'jquery-fileupload-rails'
gem "paperclip", "~> 3.5.3"
gem 'twitter-bootstrap-rails', '2.1.7'
gem 'less-rails', '2.3.3'
gem 'honeypot-captcha'
gem 'strong_parameters'
gem "omniauth-google-oauth2", "~> 0.2.1"
gem "omniauth-shibboleth" , :git => "https://bitbucket.org/cdl/omniauth-shibboleth", :branch=>'master'
gem 'unicorn'
gem 'carrierwave'
gem 'custom_error_message'
gem 'nokogiri'
gem 'capistrano', '~> 3.2.1'
gem 'capistrano-rails'
gem 'capistrano-bundler'
gem 'exception_notification'