summaryrefslogtreecommitdiff
path: root/Gemfile
diff options
context:
space:
mode:
authorTyler Mercier <tylermercier@gmail.com>2013-07-23 14:40:33 -0600
committerTyler Mercier <tylermercier@gmail.com>2013-07-23 14:40:33 -0600
commite2e8476f356233586a5bdccc7cfbb84499810570 (patch)
tree652a540894067972290b287351989f91d7ec314a /Gemfile
parent985ae524144ca8442413567fd987324b534f1f3e (diff)
cleanup gemfile
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile43
1 files changed, 9 insertions, 34 deletions
diff --git a/Gemfile b/Gemfile
index 3a85a7a..7b76ecf 100644
--- a/Gemfile
+++ b/Gemfile
@@ -1,44 +1,30 @@
source 'https://rubygems.org'
ruby '2.0.0'
-# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.0.0'
-
-gem 'pg'
-gem 'high_voltage', '~> 1.2.1'
-
-# Use SCSS for stylesheets
gem 'sass-rails', '~> 4.0.0'
-gem 'bootstrap-sass'
-
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
-
# 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'
+# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
+gem 'jbuilder', '~> 1.2'
+gem 'unicorn'
+gem 'pg'
+
+# Use ActiveModel has_secure_password
+# gem 'bcrypt-ruby', '~> 3.0.0'
# 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'
gem 'gibbon'
gem 'dotenv-rails'
-
-group :doc do
- # bundle exec rake doc:rails generates the API under doc/api.
- gem 'sdoc', require: false
-end
+gem 'high_voltage', '~> 1.2.1'
+gem 'bootstrap-sass'
group :development do
gem 'capistrano'
- gem 'rvm-capistrano', '1.4.0'
end
group :development, :test do
@@ -46,23 +32,12 @@ group :development, :test do
gem 'rspec-fakes'
gem 'teaspoon'
gem 'capybara'
- #gem 'capybara-screenshot'
gem 'poltergeist'
- gem 'selenium-webdriver'
gem 'database_cleaner'
gem 'simplecov'
gem 'factory_girl_rails'
end
-# Use ActiveModel has_secure_password
-# gem 'bcrypt-ruby', '~> 3.0.0'
-
-# Use unicorn as the app server
-gem 'unicorn'
-
-# Use debugger
-# gem 'debugger', group: [:development, :test]
-
group :production, :staging do
gem 'rails_12factor'
end