forked from hyperstudio/Annotation-Studio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
89 lines (73 loc) · 1.65 KB
/
Gemfile
File metadata and controls
89 lines (73 loc) · 1.65 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
source 'https://rubygems.org'
ruby '2.2.4'
gem 'rails', '4.2.1'
gem 'puma'
gem 'pg'
gem "newrelic_rpm"#, "~> 3.5.7.59"
gem 'devise', '~> 3.2'
gem 'cancancan', '~> 1.10'
gem 'repertoire-groups', '0.0.1', :path => 'vendor/repertoire-groups-0.0.1' #, :require => 'repertoire-groups'
gem 'acts-as-taggable-on'
gem "friendly_id"
gem "babosa"
gem 'high_voltage', '~> 2.1.0'
gem "aws-sdk", '< 2.0'
gem "paperclip"
gem "delayed_job_active_record"
gem 'pdf-reader'
gem 'pdf-reader-html'
gem 'apartment'
gem 'yomu'
gem 'net-ssh'
gem 'select2-rails', '< 4.0'
gem 'omniauth-oauth2', '1.3.1'
gem 'omniauth-wordpress_hosted', github: 'jwickard/omniauth-wordpress-oauth2-plugin'
group :development do
gem 'sextant'
gem 'meta_request'#, '0.2.1'
gem 'highline'
gem 'figaro'
end
group :assets do
gem "therubyracer"
gem 'coffee-rails' #, '~> 3.2.1'
gem 'uglifier' #, '>= 1.0.3'
gem 'underscore-rails'
gem 'backbone-on-rails'
gem 'mustache'
end
group :test, :development do
gem 'factory_girl_rails'
gem 'rspec-rails'
gem 'pry-rails'
gem 'spring'
gem 'simplecov'
gem 'rails_best_practices'
gem 'launchy'
gem 'shoulda-matchers', require: false
gem 'database_cleaner'
end
group :production do
gem 'rails_12factor'
end
gem 'jquery-rails', '~> 2.3.0'
gem 'jquery-ui-rails'
gem 'tinymce-rails'
gem "fog"
gem "mini_magick"
gem "carrierwave"
gem 'jbuilder'
gem "jwt"
gem "rabl"
gem "gon"
gem "nokogiri"
gem 'tilt', '1.1'
gem 'sass-rails', '5.0.3'
gem 'activeadmin', '1.0.0.pre1'
gem 'will_paginate', '~> 3.0.5'
gem 'will_paginate-bootstrap'
gem 'exception_notification'
gem "melcatalog", :path => "vendor"
gem "rest-client"
gem "doorkeeper"
gem "octokit", "~> 4.0"