Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 9th, 2012  |  syntax: None  |  size: 1.37 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. source 'http://rubygems.org'
  2.  
  3. gem 'rails', :git => 'https://github.com/rails/rails.git', :branch => '3-1-stable'
  4.  
  5. # Bundle edge Rails instead:
  6. # gem 'rails',     :git => 'git://github.com/rails/rails.git'
  7.  
  8. gem 'sqlite3'
  9.  
  10. # Asset template engines
  11. gem 'sass'
  12. gem 'coffee-script'
  13. gem 'uglifier'
  14. gem 'jquery-rails'
  15.  
  16. # Use unicorn as the web server
  17. # gem 'unicorn'
  18.  
  19. # authentication and related gems
  20. gem 'devise'
  21. gem 'hpricot'
  22. gem 'ruby_parser'
  23. gem 'cancan'
  24.  
  25. # Templates and UI
  26. gem 'haml-rails'
  27. gem 'sass-rails', :git => 'https://github.com/rails/sass-rails.git', :branch => '3-1-stable'
  28. gem 'simple_form'
  29. gem 'has_scope'
  30. gem 'kaminari'
  31. gem 'compass', :git => 'https://github.com/chriseppstein/compass.git', :branch => 'rails31'
  32. gem 'compass-colors'
  33. gem 'compass-960-plugin'
  34.  
  35. # Deploy with Capistrano
  36. # gem 'capistrano'
  37.  
  38. # To use debugger
  39. # gem 'ruby-debug19', :require => 'ruby-debug'
  40.  
  41. # Bundle gems for the local environment. Make sure to
  42. # put test-only gems in this group so their generators
  43. # and rake tasks are available in development mode:
  44. group :development, :test do
  45.   gem "rspec-rails"
  46.   gem "cucumber-rails"
  47.   # gem 'capybara'
  48.   # gem 'webrat'
  49.   gem 'factory_girl_rails'
  50. end
  51.  
  52. group :development do
  53.   gem 'capistrano'
  54.   # gem 'rails3-generators'
  55. end
  56.  
  57. group :production do
  58.   gem 'pg'
  59. end
  60.  
  61. group :test do
  62.   # Pretty printed test output
  63.   gem 'turn', :require => false
  64.   gem 'database_cleaner'
  65. end