-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
57 lines (49 loc) · 1.81 KB
/
Copy pathGemfile
File metadata and controls
57 lines (49 loc) · 1.81 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
53
54
55
56
57
source 'https://rubygems.org'
# ruby version
ruby '2.1.2'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.1.6'
# Development and Test tools
# Use sqlite3 as the database for Active Record
# Use Rspec as Test-Driven Development, Domain Driven Design, and Acceptance Test-Driven Planning
group :development, :test do
gem 'sqlite3', '1.3.8'
gem 'rspec-rails', '2.13.1'
end
# Test tools
# Selenium-WebDriver is a tool for writing automated tests of websites
# Capybara is an integration testing tool for rack based web applications. Capybara is needed by selenium-webdriver
group :test do
gem 'selenium-webdriver', '2.35.1'
gem 'capybara', '2.1.0'
end
# Use SCSS for stylesheets
gem 'sass-rails', '4.0.3'
# Twitter's Bootstrap
gem 'bootstrap-sass', '3.2.0'
gem 'autoprefixer-rails'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '2.1.1'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails', '4.0.1'
# Use jquery as the JavaScript library
gem 'jquery-rails', '3.0.4'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks', '1.1.1'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '1.0.2'
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '0.4.0', group: :doc
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring', group: :development
# Use ActiveModel has_secure_password
gem 'bcrypt', '3.1.7'
# Use pundit for authorization
gem 'pundit', '0.3.0'
# Production tools
# use pg as interface to the PostgreSQL RDBMS
# use rails_12factor to run app easier
group :production do
gem 'pg', '0.15.1'
gem 'rails_12factor', '0.0.2'
end