-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
52 lines (46 loc) · 1.15 KB
/
Gemfile
File metadata and controls
52 lines (46 loc) · 1.15 KB
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
source 'https://rubygems.org'
gem 'rails', '~> 4.2'
gem 'simple_form'
gem 'select2-rails'
gem 'sass-rails', '~> 4.0.3'
gem 'coffee-rails', '~> 4.0.0'
gem 'uglifier', '>= 1.3.0'
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'bootstrap-sass', github: 'thomas-mcdonald/bootstrap-sass' # Twitter bootstrap in sass form
gem 'font-awesome-rails' # Bootstrap's icons rendered as a font
gem 'webshims-rails'
gem 'therubyracer', platforms: :ruby
gem 'unicorn'
gem 'mysql2'
group :development do
gem 'thin'
gem 'capistrano'
gem 'capistrano-bundler'
gem 'capistrano-rbenv'
gem 'capistrano-rbenv-install'
gem 'capistrano-rails'
gem 'spring'
end
group :development, :test do
gem 'guard'
gem 'guard-rspec'
gem 'guard-cucumber'
gem 'factory_girl_rails', '~> 4.0'
gem 'headless'
gem 'rspec-rails', '~> 3.0.0', require: false
gem 'shoulda-matchers'
gem 'mocha', require: false
gem 'rubocop'
gem 'jslint_on_rails'
gem 'brakeman'
gem 'simplecov'
gem 'capybara-webkit'
gem 'cucumber-rails', require: false
gem 'database_cleaner'
gem 'webmock', require: false
gem 'launchy', '~> 2.1.2'
gem 'pry'
gem 'pry-rails'
gem 'sqlite3'
end