This repository has been archived by the owner on Nov 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
90 lines (70 loc) · 2.06 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 4.2'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 4.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails', '~> 4.0'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer' #, platforms: :ruby
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
#gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 1.2'
# our session data is too much for a mere cookie: https://github.com/rails/activerecord-session_store
gem 'activerecord-session_store'
#our app is now too much for a mere webrick server
gem 'thin'
#sigh
gem 'sprockets', '~> 2.8'
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Use Capistrano for deployment
gem 'capistrano', '~> 3.2'
gem 'capistrano-bundler'
#gem 'capistrano-passenger'
gem 'capistrano-secrets-yml', '~> 1.0.0'
gem 'capistrano-rails'
gem 'capistrano-rbenv'
gem 'bootstrap-sass', '~> 3'
gem 'nokogiri'
gem 'mini_portile'
gem 'paperclip'
gem 'rest-client'
gem 'lograge'
gem 'devise'
gem 'devise_ldap_authenticatable'
gem 'browse-everything'
gem 'delayed_job_active_record'
gem 'capistrano3-delayed-job', '~> 1.0'
gem 'daemons'
group :development, :test do
gem 'sqlite3'
gem 'rspec-rails', '~> 3'
gem 'byebug'
gem 'simplecov', :require => false
gem 'pry-rails'
gem 'pry-byebug'
end
group :test do
gem 'webmock'
gem 'equivalent-xml', :git => "https://github.com/mbklein/equivalent-xml.git"
gem 'factory_girl_rails'
gem 'capybara'
gem 'launchy'
gem 'database_cleaner'
gem 'selenium-webdriver'
gem 'rspec-activejob'
end
group :staging, :production do
gem 'pg'
gem 'rb-readline'
end