-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
123 lines (110 loc) · 3.02 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
#***************************
# Configuration
#***************************
source 'https://rubygems.org'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://github.com/#{repo_name}.git"
end
gem 'rails', '~> 5.0.3'
gem 'pg'
#***************************
# Layoutb & rendering
#***************************
gem 'turbolinks', '~> 5.x'
gem 'jbuilder', '~> 2.5'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.2'
gem 'therubyracer', platforms: :ruby
gem 'jquery-rails'
gem 'haml-rails'
gem 'entypo-rails'
gem 'bootstrap-sass'
gem 'modernizr-rails'
gem 'meta-tags', require: 'meta_tags'
gem 'responders', '~> 2.0'
gem 'bh'
gem 'simple_form'
gem 'premailer-rails'
gem 'figaro'
gem 'momentjs-rails'
gem 'bootstrap3-datetimepicker-rails'
gem "paranoia", github: "rubysherpas/paranoia", branch: "rails5"
gem 'pry-rails', :group => :development
gem 'jquery-datetimepicker-rails'
gem 'draper'
gem 'jquery-rails'
gem 'simple_form'
gem 'best_in_place', '~> 3.0.1'
#------------------------------------------
# For Mails
#------------------------------------------
gem 'mailgun-ruby', '~>1.1.6'
#------------------------------------------
# For Searching
#------------------------------------------
gem 'ransack'
gem 'acts_as_tree'
#------------------------------------------
# Invoices & PDF
#------------------------------------------
gem 'wicked_pdf'
gem 'wkhtmltopdf-binary'
#------------------------------------------
# Validations
#------------------------------------------
gem 'validates_timeliness', '~> 4.0'
gem 'time_difference'
gem 'puma', '~> 3.0'
gem 'active_model_serializers', '0.9.3'
group :development do
gem 'happy_seed'
gem 'web-console', '>= 3.3.0'
gem 'listen', '~> 3.0.5'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
group :development, :test do
gem 'byebug', platform: :mri
gem 'rspec', '~> 3.5.0'
gem 'rspec-rails', '~> 3.5.0'
gem 'factory_girl_rails'
gem 'capybara'
gem 'cucumber-rails', require: false
gem 'guard-rspec', '~> 4.6.4', require: false
gem 'guard-cucumber'
gem 'database_cleaner'
gem 'spring-commands-rspec'
gem 'spring-commands-cucumber'
gem 'launchy'
gem 'vcr'
gem 'faker'
gem 'dotenv-rails'
gem 'rdiscount'
gem 'rails-controller-testing'
gem 'better_errors'
gem 'binding_of_caller'
gem "letter_opener"
gem 'webmock'
gem 'fakeredis', require: 'fakeredis/rspec'
end
group :production do
gem 'rails_12factor'
gem 'lograge'
end
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
gem 'nokogiri'
gem 'devise', '~> 4.2'
gem 'cancancan'
gem 'devise_invitable', github: 'scambra/devise_invitable'
gem 'data-confirm-modal'
gem 'will_paginate'
gem 'will_paginate-bootstrap'
gem 'recurring_select', git: 'https://github.com/sahild/recurring_select.git', branch: 'master'
gem 'ice_cube'
gem 'capistrano', '~> 3.7', '>= 3.7.1'
gem 'capistrano-rails', '~> 1.2'
gem 'capistrano-passenger', '~> 0.2.0'
gem 'capistrano-rvm'