forked from web-cat/code-workout
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
133 lines (114 loc) · 3.2 KB
/
Copy pathGemfile
File metadata and controls
133 lines (114 loc) · 3.2 KB
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
source 'http://rubygems.org'
gem 'rails'
gem 'bootstrap-sass', '~> 3.2.0'
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'bootstrap-editable-rails'
gem 'codemirror-rails'
gem 'font-awesome-rails'
gem 'formtastic', '~> 3.1'
gem 'formtastic-bootstrap'
#gem 'sidekiq'
gem 'sucker_punch', '~> 1.0'
# gem 'jbuilder', '~> 1.2'
gem 'haml', '>= 3.1.4'
gem 'haml-rails'
gem 'test-unit', '~> 3.0.9'
gem 'nokogiri'
gem 'csv_shaper'
gem 'andand', github: 'raganwald/andand'
gem 'foreigner'
gem 'responders', '~> 1.1' # Can't move above 1.1 until migrating to rails 4.2+
gem 'friendly_id', '~> 5'
gem 'active_record-acts_as'
gem 'acts_as_list'
gem 'acts-as-taggable-on'
gem 'representable'
gem 'kramdown'
# gem 'redcarpet'
gem 'loofah'
gem 'truncate_html',
github: 'LevoLeague/truncate_html', branch: 'fix/non-breaking-spaces'
gem 'puma'
gem 'tzinfo' # For timezone support
# for CoffeeScript in views and assets:
gem 'coffee-rails', '~> 4.0.0'
gem 'coffee-script-source'
gem 'therubyracer', platforms: :ruby
gem 'therubyrhino', platforms: :jruby
# For JSON support
gem 'rabl'
gem 'json', platforms: :ruby
gem 'json_pure', platforms: :jruby
group :assets do
gem 'sass-rails'
gem 'uglifier', '>= 1.3.0'
gem 'autoprefixer-rails'
end
gem 'mysql2', '= 0.3.15', platforms: :ruby
gem 'activerecord-jdbcmysql-adapter', platforms: :jruby
group :development, :test do
gem 'sqlite3', platforms: :ruby
gem 'activerecord-jdbcsqlite3-adapter', platforms: :jruby
gem 'rspec-rails'
gem 'annotate'
gem 'rails-erd', github: 'voormedia/rails-erd'
gem 'immigrant'
gem 'faker'
# Needed for debugging support in Aptana Studio. Disabled, since these
# two gems do not support Ruby 2.0 yet :-(.
# gem 'ruby-debug-base'
# gem 'ruby-debug-ide'
gem 'pry'
gem 'request-log-analyzer'
# We're using puma, not thin
# gem 'thin'
# Not supported on jruby
# gem 'byebug'
end
gem 'factory_girl_rails'
gem 'log_file'
group :test do
gem 'capybara'
end
group :production, :staging do
end
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end
# Gems for authentication and authorization.
gem 'devise'
gem 'omniauth'
gem 'omniauth-facebook'
gem 'omniauth-google-oauth2'
gem 'omniauth-cas'
gem 'ims-lti', '~> 1.1.8'
gem 'cancancan'
gem 'activeadmin', github: 'activeadmin'
gem "active_admin_import" , github: 'activeadmin-plugins/active_admin_import'
gem 'active_skin', github: 'rstgroup/active_skin'
gem 'exception_handler'
gem 'kaminari' # Auto-paginated views
gem 'remotipart' # Adds support for remote mulitpart forms (file uploads)
gem 'gravtastic' # For Gravatar integration
gem 'js-routes' # Route helpers in Javascript
gem 'awesome_print' # For debugging/logging output
#gems for rich text editing
gem 'bootstrap-wysihtml5-rails'
#gems for datepicker
gem 'momentjs-rails', '>= 2.9.0'
gem 'bootstrap3-datetimepicker-rails', '~> 4.17.37'
#gem for improved WHERE querying
gem 'squeel'
#for nested forms
gem 'cocoon'
# For handling converting to booleans
gem 'wannabe_bool'
# Gems for deployment.
gem 'capistrano'
gem 'capistrano-bundler'
gem 'capistrano-rails'
gem 'capistrano3-puma', github: 'seuros/capistrano-puma'
#for multi-color progress bar
gem 'css3-progress-bar-rails'