Sha256: b0d3d7e67982048a74f81da965c6c434ab34328c1e23aa03a2f36dd582c265cc

Contents?: true

Size: 993 Bytes

Versions: 1

Compression:

Stored size: 993 Bytes

Contents

append_file "Gemfile" do
<<-RUBY

# Project Gems

# View Related
gem "haml", :git => "https://github.com/nex3/haml.git"
gem 'kaminari'
gem 'gravatar_image_tag', '1.0.0.pre2'

# Object Mapper
gem "mongoid"
gem "bson_ext"

# Date/Time Parsing
# gem 'nickel', :git => "https://github.com/lzell/nickel"

# Authentication
gem "omniauth", '~> 0.2.6'
gem "bcrypt-ruby", :require => "bcrypt"

# Location Stuff
gem "simplegeo"

# FIXME: Get mongoid_geo working
# gem "mongoid_geo"

group :development do
  gem "haml-rails"
  gem "thin"
  gem "rspec-rails", "2.6.1.beta1"  
  gem "awesome_print"
end

group :test do
  # Pretty printed test output
  gem 'turn', :require => false
  gem "rspec", "2.6.0"
  gem "webrat", "0.7.1"
end

group :development, :test do
  gem "factory_girl_rails"
  gem "faker"
end

group :production do
  gem 'unicorn'
  gem 'therubyracer-heroku', '0.8.1.pre3', :group => [:production]  
end

RUBY
end

# Install bundled gems
run 'bundle install --binstubs --without production'

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
icebreaker-0.1.5 templates/gemfile.rb