-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
73 lines (59 loc) · 1.19 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
source 'https://rubygems.org'
gem 'unicorn'
gem 'rails', '4.1.9'
gem 'thin'
# JSON
gem 'active_model_serializers'
gem 'jbuilder', '~> 2.0'
# Basic JS
gem 'jquery-rails'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem "select2-rails"
gem "js-routes"
# Addon of Assets Pipleline
gem 'bower-rails'
# Front-end
gem 'gon'
gem 'angular-rails-templates' # Angularjs templates finder
gem 'ng-rails-csrf' # Angularjs csrf token provider
# Auth gem 'devise'
gem 'devise'
gem "rolify"
gem "pundit"
# View
gem 'sass-rails', '~> 4.0.3'
gem 'bootstrap-sass', '~> 3.3.3'
gem "simple_form"
gem "haml"
gem "notify"
gem 'font-awesome-sass', '~> 4.3.0'
# Security
gem 'secure_headers'
# Validation
gem 'email_validator'
# ORM wrapper
gem "squeel"
# Index view magic
gem 'smart_listing'
# State machine
gem 'state_machine'
# Soft delete
gem "paranoia", "~> 2.0"
group :development, :test do
gem 'mailcatcher'
gem 'spring'
gem 'capistrano-rails'
gem 'pry-rails'
gem 'rspec-rails'
gem 'shoulda-matchers'
gem 'factory_girl_rails'
gem 'faker'
gem 'awesome_print'
gem 'sextant'
gem 'quiet_assets'
gem "rails-erd"
gem "bullet"
gem 'foreman'
gem 'capistrano-scm-gitcopy', '0.1.3'
end