-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathGemfile
101 lines (74 loc) · 2.29 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
source 'https://rubygems.org'
ruby '2.0.0'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.0.0'
# Rails ORM for MongoDB
gem 'mongoid', :git => 'git://github.com/mongoid/mongoid'
# Wraps the Angular.js library for use in Rails 3.1 and above. Assets will minify automatically during production.
gem 'angularjs-rails'
# D3.js Library for the asset pipeline
gem "d3_rails", "~> 3.2.8"
gem 'newrelic_rpm'
# Allows for use of db push/pull
gem 'heroku'
#-----------------------------------------------------------------------
# Figaro provides a clean and simple way to configure your app and keep the private stuff… private
gem 'figaro'
# better, cleaner HTTP fetcher
gem 'httparty'
gem 'kaminari'
#-----------------------------------------------------------------------
# Haml-rails provides Haml generators for Rails
gem 'haml-rails'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 4.0.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use jquery as the JavaScript library
gem 'jquery-rails'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 1.2'
group :development, :test do
gem 'jasmine'
gem 'faker'
gem 'guard-jasmine', require: false
gem 'guard-rspec', require: false
end
group :development do
gem 'jazz_hands'
gem 'better_errors'
gem 'binding_of_caller'
gem 'meta_request'
end
group :test do
gem 'rspec-rails'
gem 'capybara'
gem 'vcr'
gem 'webmock'
# For Guard testing
gem 'rb-fsevent', require: false
gem 'growl', require: false
end
group :production do
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# for heroku asset-pipeline issue
gem 'rails_12factor'
end
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end
gem 'mechanize'
gem 'nokogiri'
gem 'json'
# Use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# Use unicorn as the app server
# gem 'unicorn'
# Use Capistrano for deployment
# gem 'capistrano', group: :development
# Use debugger
# gem 'debugger', group: [:development, :test]