Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
76 lines (64 loc) · 1.61 KB

File metadata and controls

76 lines (64 loc) · 1.61 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
source 'https://rubygems.org'
ruby '2.2.3'
#################
# Server and DB #
#################
gem 'rails', '4.2.2'
gem 'sprockets-rails', '~> 2.0'
gem 'pg'
gem 'sidekiq'
gem 'thin'
gem 'newrelic_rpm'
#############
# 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'
gem 'google-webfonts-rails' #adds Google WebFonts to Rails application
#cordova (phonegap), Meteor.com
########################
# Auth and Permissions #
########################
gem 'stripe', :git => 'https://github.com/stripe/stripe-ruby'
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 'skylight'
gem 'figaro' #app configuration using ENV variables and a single YAML file
gem 'jekyll' #blogging gem
#####################
# Development Tools #
#####################
group :test do
gem 'rspec-rails'
gem 'factory_girl_rails'
gem 'capybara'
end
group :development do
gem 'quiet_assets'
gem 'pry-byebug'
gem 'pry-rails'
gem 'better_errors'
gem 'binding_of_caller'
gem 'railroady'
gem 'letter_opener'
gem 'spring'
gem 'annotate' #JDavis: this adds the table fields to the model file. To use, run 'annotate --position after'
gem 'xray-rails' #https://github.com/brentd/xray-rails
gem 'thin'
end
group :production do
gem 'rails_12factor'
end
Morty Proxy This is a proxified and sanitized view of the page, visit original site.