-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
107 lines (88 loc) · 1.97 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
source 'https://rubygems.org'
gem 'rails', '~> 3.2.13'
gem 'inherited_resources'
gem 'activeadmin'
gem 'meta_search'
gem 'delayed_job_active_record'
gem 'delayed_job_admin'
gem 'redis'
gem 'resque', :require => 'resque/server'
gem 'devise'
gem 'devise_invitable'
gem 'formtastic'
gem 'country_select'
gem 'nested_form'
gem 'kaminari'
gem 'jquery-rails'
gem 'client_side_validations'
gem 'client_side_validations-formtastic'
gem 'carmen'
gem 'cancan'
gem 'role_model'
gem 'money-rails'
gem 'google_currency', :git => 'git://github.com/RubyMoney/google_currency.git'
gem 'settingslogic'
gem 'geocoder'
gem 'friendly_id'
gem 'squeel'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails'
gem 'coffee-rails'
gem 'uglifier'
gem 'compass-rails'
gem 'bootstrap-sass'
gem 'sassy-buttons'
end
group :development, :test, :cucumber do
gem 'mysql2'
gem 'rspec-rails', '~> 2.0'
gem 'haml-rails'
gem 'pry-rails'
gem 'pry-nav'
gem 'pry', :git => 'git://github.com/pry/pry.git'
end
group :test do
gem 'cucumber-rails', :require => false
gem 'capybara'
gem 'capybara-webkit', :github => 'thoughtbot/capybara-webkit', branch: 'master'
gem 'database_cleaner'
gem 'machinist'
gem 'faker'
gem 'shoulda'
gem 'shoulda-matchers'
gem 'simplecov'
gem 'vcr'
gem 'webmock'
end
group :development do
gem 'awesome_print'
gem 'spork', :git => 'git://github.com/sporkrb/spork.git'
gem 'guard-livereload'
gem 'yajl-ruby'
gem 'rack-livereload'
gem 'guard-spork'
gem 'guard-bundler'
gem 'guard-cucumber'
gem 'guard-redis'
gem 'guard-resque'
gem 'guard-rspec'
require 'rbconfig'
HOST_OS = RbConfig::CONFIG['host_os']
case HOST_OS
when /darwin/i
gem 'rb-fsevent'
gem 'terminal-notifier-guard'
when /linux/i
gem 'libnotify'
gem 'rb-inotify'
when /mswin|windows/i
gem 'rb-fchange'
gem 'win32console'
gem 'rb-notifu'
end
end
group :production do
gem 'pg'
end