-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
51 lines (45 loc) · 1.08 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
source 'https://rubygems.org'
gem 'rails', '4.2.5.2'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.1.0'
gem 'therubyracer', platforms: :ruby
gem 'jquery-rails'
gem 'jquery-turbolinks'
gem 'turbolinks'
gem 'unicorn'
group :development, :test do
gem 'rspec-rails'
end
group :test do
gem 'cucumber-rails', require: false
gem 'site_prism'
gem 'webmock'
gem 'timecop'
gem 'factory_girl_rails'
end
group :development do
gem 'capistrano'
gem 'capistrano-rbenv'
gem 'capistrano-bundler'
gem 'capistrano-rails'
gem 'capistrano3-unicorn'
gem 'letter_opener'
end
gem 'devise'
gem 'font-awesome-rails'
gem 'httparty'
gem 'jquery-tablesorter'
gem 'bootstrap-sass'
gem 'bootstrap-datepicker-rails'
gem 'autoprefixer-rails'
gem 'simple_form'
gem 'country_select'
gem 'countries', require: 'countries/global'
gem 'exception_notification'
gem 'jquery-inputmask-rails', github: 'knapo/jquery-inputmask-rails'
gem 'jquery-validation-rails'
gem 'money-rails', '>= 1.0.0'
gem 'paypal-sdk-rest'
gem 'bootbox-rails', '~> 0.5.0'
gem 'will_paginate', '~> 3.1.0'