Skip to content

Commit

Permalink
Added some better gems for development
Browse files Browse the repository at this point in the history
  • Loading branch information
amanelis committed Jan 24, 2013
1 parent bc8e10d commit c94a8ee
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 18 deletions.
32 changes: 19 additions & 13 deletions Gemfile
Expand Up @@ -3,13 +3,8 @@ source 'https://rubygems.org'
# Core gems
gem 'rails', '3.2.11'

group :development, :test do
gem 'sqlite3'
gem 'guard'
gem 'guard-rspec'
end
# Database adapters
gem 'pg', '0.12.2'
gem 'pg'

# Auth/Cloudfuji gems
gem 'devise'
Expand All @@ -33,18 +28,29 @@ gem 'airbrake'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'sass-rails'
gem 'coffee-rails'
gem 'bourbon'
gem 'execjs' # See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'execjs'
gem 'eco'
gem 'uglifier', '>= 1.0.3'
gem 'uglifier'
end

group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'rack-mini-profiler'
end

# Test gems, obviously
group :test do
gem 'rspec-rails'
gem 'shoulda-matchers'
gem 'factory_girl_rails', '~> 3.0'
gem 'jasmine', :git => "https://github.com/pivotal/jasmine-gem.git", :branch => "1.2.rc1", :group => [:development, :test]
gem 'factory_girl_rails'
end

group :development, :test do
gem 'sqlite3'
gem 'guard'
gem 'guard-rspec'
gem 'jasmine', :git => 'https://github.com/pivotal/jasmine-gem.git', :branch => '1.2.rc1'
end
19 changes: 14 additions & 5 deletions Gemfile.lock
Expand Up @@ -59,6 +59,10 @@ GEM
nokogiri (<= 1.5.0)
uuidtools (~> 2.1)
bcrypt-ruby (3.0.1)
better_errors (0.3.2)
coderay (>= 1.0.0)
erubis (>= 2.7.0)
binding_of_caller (0.6.8)
bourbon (1.4.0)
sass (>= 3.1)
bourne (1.1.2)
Expand Down Expand Up @@ -167,6 +171,8 @@ GEM
rack (1.4.3)
rack-cache (1.2)
rack (>= 0.4)
rack-mini-profiler (0.1.23)
rack (>= 1.1.3)
rack-ssl (1.3.2)
rack
rack-test (0.6.2)
Expand Down Expand Up @@ -256,26 +262,29 @@ DEPENDENCIES
_bushido-faye (= 0.8.2)
airbrake
aws-sdk
better_errors
binding_of_caller
bourbon
cloudfuji
cloudfuji_paperclip
coffee-rails (~> 3.2.1)
coffee-rails
devise
devise_cloudfuji_authenticatable
eco
execjs
factory_girl_rails (~> 3.0)
factory_girl_rails
guard
guard-rspec
jasmine!
jquery-rails
kaminari
pg (= 0.12.2)
pg
rack-mini-profiler
rails (= 3.2.11)
remotipart
rspec-rails
sass-rails (~> 3.2.3)
sass-rails
shoulda-matchers
sqlite3
thin
uglifier (>= 1.0.3)
uglifier

0 comments on commit c94a8ee

Please sign in to comment.