Skip to content

Commit

Permalink
Merge branch 'master' into edit-guides
Browse files Browse the repository at this point in the history
  • Loading branch information
simonv3 committed Jan 28, 2015
2 parents 542f475 + 13fc43a commit 2adf54c
Show file tree
Hide file tree
Showing 99 changed files with 1,063 additions and 563 deletions.
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.1.3
2.2.0
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
language: ruby
# If you don't specify a version, Travis CI will use MRI 1.9.3 as the default.
# http://docs.travis-ci.com/user/languages/ruby/
rvm:
- 2.2.0
services:
- mongodb
- elasticsearch
16 changes: 10 additions & 6 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
source 'https://rubygems.org'

ruby '2.1.3'
ruby '2.2.0'

gem 'rails', '4.0.2' # TODO: Upgrade when Mongoid is compatible.

Expand All @@ -24,14 +24,14 @@ gem 'rack-cors', require: 'rack/cors'
gem 'delayed_job_mongoid'
gem 'patron' # For searchKick
gem 'searchkick', '~> 0.8.5'
gem "pundit"
gem 'pundit'
gem 'eventmachine', '~> 1.0.4' # Temp fix for failing Linux builds.

group :development, :test do
gem 'coveralls', require: false
gem 'quiet_assets'
gem 'rubocop'
gem 'better_errors'
gem 'rspec-rails', '~> 2.14.0'
gem 'rspec-rails', '~> 3.0.0'
gem 'pry'
gem 'pry-nav'
gem 'launchy'
Expand All @@ -40,16 +40,20 @@ group :development, :test do
end

group :test do
gem 'test-unit'
gem 'doc_yo_self'
gem 'capybara'
gem 'poltergeist'
gem 'phantomjs', '>= 1.8.1', :require => 'phantomjs/poltergeist'
gem 'simplecov'
gem 'database_cleaner'
gem 'database_cleaner', '~> 1.3.0'
gem 'vcr'
gem 'webmock'
end

group :development do
gem 'rubocop'
end
group :production, :staging do
gem 'thin'
gem 'exception_notification'
Expand All @@ -63,5 +67,5 @@ gem 'rails_admin'
gem 'ng-rails-csrf'

gem 'bson_ext'
gem 'mongoid', :github => 'mongoid/mongoid'
gem 'mongoid', :github => 'mongoid/mongoid', tag: 'v4.0.1'
gem 'active_model_serializers'
Loading

0 comments on commit 2adf54c

Please sign in to comment.