source 'http://rubygems.org' gem 'bundler', '~> 1.0.0' gem 'rails', '~> 3.0.3' # Bundle edge Rails instead: # gem 'rails', :git => 'git://github.com/rails/rails.git' if (java = RUBY_PLATFORM == 'java') gem 'activerecord-jdbcsqlite3-adapter', '>= 1.0.2', :platform => :jruby else gem 'sqlite3-ruby', :require => 'sqlite3' end # Use unicorn as the web server # gem 'unicorn' # gem 'mongrel', :group => :development # Deploy with Capistrano # gem 'capistrano' # To use debugger # gem 'ruby-debug' # Bundle the extra gems: # gem 'bj' # gem 'nokogiri', '1.4.1' # gem 'sqlite3-ruby', :require => 'sqlite3' # gem 'aws-s3', :require => 'aws/s3' # Bundle gems for the local environment. Make sure to # put test-only gems in this group so their generators # and rake tasks are available in development mode: # group :development, :test do # gem 'webrat' # end # REFINERY CMS ================================================================ java = (RUBY_PLATFORM == 'java') # Specify the Refinery CMS core: gem 'refinerycms', :path => '.' # Specify additional Refinery CMS Engines here (all optional): gem 'refinerycms-inquiries', '~> 0.9' # gem 'refinerycms-news', '~> 0.9.9' # gem 'refinerycms-portfolio', '~> 0.9.8' # gem 'refinerycms-theming', '~> 0.9.8' # Add i18n support (optional, you can remove this if you really want to). gem 'refinerycms-i18n', '~> 0.9' # END REFINERY CMS ============================================================ # REFINERY CMS DEVELOPMENT ==================================================== group :test do # RSpec gem 'rspec-rails', '~> 2.3' # Cucumber gem 'capybara' gem 'database_cleaner' gem 'cucumber-rails' gem 'cucumber' gem 'spork' unless Bundler::WINDOWS gem 'launchy' gem 'gherkin' # TODO: Change back to gem when patch is merged in gem 'rack-test', '~> 0.5.6' # FIXME: JSON constant constants warnings gem 'json_pure', '~> 1.4.6', :require => 'json/pure' # Factory Girl gem 'factory_girl' gem "#{'j' if java}ruby-prof" unless defined?(RUBY_ENGINE) and RUBY_ENGINE == 'rbx' # Autotest gem 'autotest' gem 'autotest-rails' gem 'autotest-notification' # FIXME: Replace when new babosa gem is released gem 'babosa', '0.2.0', :git => 'git://github.com/stevenheidel/babosa.git' if java end # END REFINERY CMS DEVELOPMENT =================================================