-
Notifications
You must be signed in to change notification settings - Fork 3
/
Gemfile
87 lines (63 loc) · 1.66 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
source 'https://rubygems.org'
# The current ruby stable version
ruby '2.2.3'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.2.1'
# Use PostgreSQL for the db
gem 'pg', '0.15.1'
# Use SCSS for stylesheets
gem 'sass-rails', '5.0.3'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '2.7.0'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '4.1.0'
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# Bourbon suite of tools for neat / refills etc...
gem 'bourbon'
gem 'neat', '1.7.2'
# Font Awesome for the icon set
gem 'font-awesome-sass', '4.3.0'
# Better forms
gem 'simple_form'
# SEO
gem 'meta-tags'
gem 'gabba'
# JSON API
gem 'active_model_serializers'
# React
gem 'react-rails', '1.2.0'
gem 'sprockets-coffee-react'
gem 'es5-shim-rails'
# Generating documentation
gem 'apipie-rails', '0.3.5'
# Rate limigitng
gem 'rack-throttle', '0.3.0'
group :development do
# Access errors in the web browser
gem 'better_errors'
gem 'binding_of_caller'
# Annotate all models with DB schema
gem 'annotate'
end
group :development, :test do
# Unit testing with rspec
gem 'rspec-rails', '3.3.3'
# Model factories
gem 'factory_girl', '4.5.0'
# Database cleaner for faster tests
gem 'database_cleaner', '1.4.1'
# For DOM testing
gem 'capybara'
gem 'capybara-webkit'
end
group :doc do
# bundle exec rake doc:rails generates the API under doc/api
gem 'sdoc', '0.4.0'
end
group :staging, :production do
# Use Unicorn as the app server
gem 'unicorn'
end