This repository has been archived by the owner on May 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Gemfile
107 lines (75 loc) · 2.33 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# Copyright 2011-2012 Rice University. Licensed under the Affero General Public
# License version 3 or later. See the COPYRIGHT file for details.
source 'https://rubygems.org'
gem 'rails', '3.2.17'
# 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'
gem 'uglifier', '>= 1.0.3'
gem 'therubyracer', '~> 0.10.1'
gem 'bootstrap-sass', '~> 2.0.2'
end
gem 'jquery-rails', '~> 2.1.0'
gem 'capistrano', '~> 2.12.0'
gem 'devise', '~> 2.1.0'
gem "will_paginate", "~> 3.0.3"
gem 'mime-types', :require => 'mime/types'
gem 'squeel', '~> 1.0.5'
gem 'recaptcha', '~> 0.3.4', :require => 'recaptcha/rails'
gem "aws-ses", "~> 0.4.3", :require => 'aws/ses'
gem 'whenever', :require => false
gem 'chronic'
gem 'date_validator'
gem 'fastercsv'
gem 'csv_builder', '~>2.1.1'
gem 'yaml_db'
gem 'best_in_place'
gem 'acts-as-taggable-on', '~> 2.3.1'
gem 'sqlite3', '~> 1.3.6'
gem 'rack-mini-profiler'
gem 'newrelic_rpm'
gem 'mini_magick'
gem 'carrierwave'
gem "fog", "~> 1.3.1"
gem 'remotipart', '~> 1.0'
gem 'babbler', '~> 1.0.0'
gem 'sketchily', '~> 1.5.0'
gem 'unconfirm', git: 'https://github.com/lml/unconfirm.git', ref: '7cc1ed8b46453fa78c7e117e0de9383a392d0bd5'
gem 'on_the_spot', git: 'https://github.com/kevinburleigh75/on_the_spot.git', ref: '67a423a'
gem 'fine_print', git: 'https://github.com/jpslav/fine_print.git', ref: '3146ce934e337'
gem 'openstax_utilities', '~> 1.1.0'
gem 'lev', '~> 2.2.0'
gem 'rack-cors', :require => 'rack/cors'
gem 'rails_autolink'
group :development, :test do
gem 'debugger', '~> 1.1.4'
gem 'faker', '~> 1.0.1'
gem 'timecop', '~> 0.3.5'
gem 'thin', '~> 1.4.1'
gem 'quiet_assets', '~> 1.0.1'
gem 'cheat'
gem 'brakeman'
gem 'rvm-capistrano', :require => false
# gem 'localtunnel'
end
group :development, :test do
gem 'factory_girl_rails', '~> 4.0'
gem 'rspec-rails'
gem 'rspec-rerun'
gem 'cucumber-rails', :require => false
gem 'capybara-screenshot'
gem 'poltergeist'
gem 'launchy'
gem 'database_cleaner'
gem 'spork-rails'
end
group :development, :test do
gem 'rails-erd', '~> 1.1.0'
end
group :production do
gem 'mysql2', '~> 0.3.11'
gem 'rack-ssl-enforcer', '~> 0.2.4'
gem 'lograge', git: 'https://github.com/jpslav/lograge.git' # 'git@github.com:jpslav/lograge.git'
end