-
Notifications
You must be signed in to change notification settings - Fork 3
/
Gemfile
69 lines (50 loc) · 1.35 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
# encoding: utf-8
source 'https://rubygems.org'
gem 'rails', '4.2.4'
gem 'annotate', git: 'git://github.com/ctran/annotate_models.git'
gem 'faker'
gem 'coderay'
gem 'haml'
gem 'turbolinks'
gem 'puma'
gem 'test-unit'
gem 'wice_grid', '3.6.0'
# gem 'wice_grid', path: 'vendor/wice_grid'
gem 'font-awesome-sass', '~> 4.3'
gem 'jquery-ui-themes'
gem 'protected_attributes'
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'bootstrap-sass', '3.1.1.1'
gem 'sass-rails', '>= 3.2'
gem 'sprockets', '2.11.0' # http://stackoverflow.com/questions/22392862/undefined-method-environment-for-nilnilclass-when-importing-bootstrap
gem 'coffee-rails'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer'
gem 'uglifier', '>= 1.0.3'
group :production, :postgres do
gem 'pg'
end
gem 'mysql2', group: :mysql
group :development do
gem 'quiet_assets'
end
group :test, :development do
gem 'rspec-rails', '~> 2.13.0'
# gem 'capybara' , '1.1.2'
gem 'capybara', '~> 2.1.0'
gem 'selenium-webdriver'
gem 'poltergeist'
end
group :test do
gem 'shoulda-matchers'
gem 'capybara-screenshot'
end
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# To use Jbuilder templates for JSON
# gem 'jbuilder'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# gem 'ruby-debug19', :require => 'ruby-debug'