Skip to content

Commit

Permalink
Adding a whole host of gems to be used.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kurtis Rainbolt-Greene committed Mar 25, 2012
1 parent 52ac874 commit 85eed01
Showing 1 changed file with 39 additions and 13 deletions.
52 changes: 39 additions & 13 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,26 +1,52 @@
source 'https://rubygems.org'

gem 'rails', '3.2.0'
gem 'rails', '~> 3'

# gem 'dalli', '~> 1'

# Extention libraries
gem 'thin', '~> 1'

# Rendering engines and vendor libraries
gem 'jquery-rails', '~> 2'
gem 'rdiscount'
gem 'stringex', :git => 'git://github.com/rsl/stringex.git'
gem 'kaminari'

group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'uglifier', '>= 1.0.3'
# Misc libraries
gem 'bcrypt-ruby', '~> 3', require: 'bcrypt'
gem 'stringex', '~> 1', git: 'git://github.com/rsl/stringex.git'
gem 'kaminari', '~> 0.13'

group :production do
# gem 'newrelic_rpm', '~> 3'
gem 'pg', '~> 0.13'
end

group :development do
gem 'capistrano'
gem 'sqlite3'
end
# gem 'heroku', '~> 2'
# gem 'capistrano', '~> '
gem 'guard', '~> 1'
gem 'guard-rspec', '~> 0.6'
gem 'guard-spork', '~> 0.5'

group :production do
gem 'pg'
gem 'rails_best_practices', '~> 1'
end

group :test do
gem "sqlite3", :platform => [:ruby, :mswin, :mingw]
gem 'capybara', '~> 1'
gem 'spork', '~> 0.9'
gem 'database_cleaner', '~> 0.7'
end

group :development, :test do
gem 'foreman', '~> 0.40'
gem 'sqlite3', '~> 1', platform: [:ruby, :mswin, :mingw]
gem 'rspec-rails', '~> 2'
gem 'faker', '~> 1'
gem 'factory_girl_rails', '~> 1'
end

gem 'jquery-rails'
group :assets do
gem 'sass-rails', '~> 3'
gem 'coffee-rails', '~> 3'
gem 'uglifier', '~> 1'
end

0 comments on commit 85eed01

Please sign in to comment.