forked from OperationCode/operationcode_old_site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
68 lines (56 loc) · 1.28 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
source 'https://rubygems.org'
# ruby '2.2.2'
#################
# Server and DB #
#################
gem 'rails', '4.2.0'
gem 'sprockets-rails', '~> 2.0'
gem 'pg'
gem 'sidekiq'
#############
# Front-end #
#############
gem 'sass-rails', '~> 4.0.3' #review node folders
gem 'bootstrap-sass'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jquery-turbolinks'
gem 'jbuilder', '~> 2.0'
gem 'aws-sdk', '~> 1.35.0'
#cordova (phonegap), Meteor.com
########################
# Auth and Permissions #
########################
gem 'stripe'
gem 'devise', '3.4.1' #JDavis: devise is the Rails standard for authenticating users.
gem 'activeadmin', github: 'activeadmin'
########
# Misc #
########
gem 'shareable'
gem 'font-awesome-rails'
gem 'github-markup', '~> 1.2.1'
gem 'annotate', '2.5.0' #JDavis: this adds the table fields to the model file. To use, run 'annotate --position before'
gem 'skylight'
#####################
# Development Tools #
#####################
group :development do
gem 'pry-rails'
gem 'better_errors'
gem 'binding_of_caller'
gem 'railroady'
gem 'letter_opener'
gem 'spring'
end
group :test do
gem 'rspec-rails'
gem 'factory_girl_rails'
gem 'capybara'
end
group :production do
gem 'rails_12factor'
gem 'thin'
end