forked from frocher/sofreakingboring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
98 lines (73 loc) · 1.67 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
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.2.10'
# Use sqlite3 as the database for Active Record
gem 'sqlite3'
gem 'mysql2'
# settings
gem 'figaro'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 4.0.2'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'select2-rails'
gem 'bootstrap-sass'
gem 'font-awesome-rails'
# Use jquery as the JavaScript library
gem 'jquery-rails'
gem 'momentjs-rails'
gem 'bootstrap-daterangepicker-rails'
# Auth
gem 'devise'
gem 'six'
gem 'omniauth'
gem 'omniauth-facebook'
gem 'omniauth-google-oauth2'
gem 'omniauth-github'
# Pagination
gem 'kaminari'
# Template engine
gem 'slim'
# breadcrumbs on pages
gem 'breadcrumbs_on_rails'
# tags on tasks
gem 'acts-as-taggable-on'
# Files attachments
gem 'paperclip'
gem 'paperclip-meta'
# Versioning
gem 'paper_trail', '~> 3.0.5'
# State machine
gem 'state_machine'
# Date manipulation and number
gem 'chronic'
gem 'numerizer'
# Cron jobs
gem 'whenever', :require => false
# xslsx exports
gem 'axlsx_rails'
# Keyboard shortcuts
gem 'mousetrap-rails'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'grape', '~> 0.10.1'
gem 'grape-entity', '~> 0.4.4'
gem 'gon'
gem 'tzinfo-data', platforms: [:mingw, :mswin]
group :test, :development do
gem 'rspec-rails'
gem 'capybara'
gem 'faker'
gem 'minitest', '~> 5.3.0'
gem 'rack-mini-profiler'
gem 'bullet'
gem 'quiet_assets'
end
group :test do
gem 'simplecov', require: false
gem 'shoulda-matchers', require: false
end
# Use puma as the app server
gem 'foreman'
gem 'puma'
gem 'annotate', '~> 2.6.5', group: :development
gem 'bigdecimal', '1.3.0'