Skip to content

Commit

Permalink
Updated to Rails 4.2.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bimovidia committed Feb 22, 2016
1 parent 2fb1c60 commit 81623f8
Show file tree
Hide file tree
Showing 31 changed files with 631 additions and 345 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
/db/*.sqlite3-journal

# Ignore all logfiles and tempfiles.
/log/*.log
/log/*
!/log/.keep
/tmp

.DS_Store
16 changes: 9 additions & 7 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
ruby '2.1.3'
source 'https://rubygems.org'

gem 'rails', '4.0.3'
gem 'rails', '4.2.5.1'
gem 'sqlite3'
gem 'thin'
gem 'faye'

Expand All @@ -12,13 +13,14 @@ gem 'newrelic_rpm'
# Assets
gem 'jquery-rails'
gem 'turbolinks'
gem 'sass-rails', '~> 4.0.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'sass-rails', '~> 5.0'
gem 'coffee-rails', '~> 4.1.0'
gem 'uglifier', '>= 1.0.3'
gem 'bootstrap-sass'
gem 'therubyracer', require: 'v8'
gem 'yui-compressor'
gem 'font-awesome-rails'
gem 'responders', '~> 2.0'

# Custom gems
gem 'pivotal-tracker'
Expand All @@ -40,6 +42,7 @@ group :test do
end

group :development do
gem 'spring'
gem 'better_errors'
gem 'binding_of_caller'
gem 'capistrano', '~> 3.0', require: false
Expand All @@ -49,7 +52,6 @@ group :development do
gem 'codeclimate-test-reporter', require: false
end

group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end
gem 'jbuilder', '~> 2.0'
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0', group: :doc
Loading

0 comments on commit 81623f8

Please sign in to comment.