summaryrefslogtreecommitdiff
path: root/Gemfile
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2014-02-20 18:08:39 -0700
committermo khan <mo@mokhan.ca>2014-02-20 18:08:39 -0700
commitf87c6088405df0d0f0fe563fac4865dfbdb206b1 (patch)
tree0a746cd9e3d25d49ced59989c9e554e0d71c195b /Gemfile
parent1bff8ede68b131f183c96eafacb99df6c9ee514a (diff)
install rspec and cleanup default gem file.
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile31
1 files changed, 4 insertions, 27 deletions
diff --git a/Gemfile b/Gemfile
index e3d983b..07b72cf 100644
--- a/Gemfile
+++ b/Gemfile
@@ -1,25 +1,9 @@
source 'https://rubygems.org'
-# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.0.3'
-
-# Use sqlite3 as the database for Active Record
-gem 'sqlite3'
-
-
-# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails', '~> 4.0.0'
-
-# See https://github.com/sstephenson/execjs#readme for more supported runtimes
-# gem 'therubyracer', platforms: :ruby
-
-# Use jquery as the JavaScript library
gem 'jquery-rails'
-
-# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
-
-# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 1.2'
group :doc do
@@ -27,14 +11,7 @@ group :doc do
gem 'sdoc', require: false
end
-# Use ActiveModel has_secure_password
-# gem 'bcrypt-ruby', '~> 3.1.2'
-
-# Use unicorn as the app server
-# gem 'unicorn'
-
-# Use Capistrano for deployment
-# gem 'capistrano', group: :development
-
-# Use debugger
-# gem 'debugger', group: [:development, :test]
+group :development, :test do
+ gem 'sqlite3'
+ gem 'rspec-rails'
+end