summaryrefslogtreecommitdiff
path: root/Gemfile
diff options
context:
space:
mode:
authorjomo <github@jomo.tv>2016-01-17 19:45:46 +0100
committerjomo <github@jomo.tv>2016-01-17 22:27:38 +0100
commite53228eaf15dc2d9ab5f631e312ef5132eaae747 (patch)
tree98927256e847630c8ebbc5c0d1e3cb1c41582d07 /Gemfile
parentce19d61e1dc45a0a55ee9f9569e5a82e1cf181ab (diff)
update to rails 4.2.5, clean up
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile17
1 files changed, 12 insertions, 5 deletions
diff --git a/Gemfile b/Gemfile
index eac521d..4714ee3 100644
--- a/Gemfile
+++ b/Gemfile
@@ -1,10 +1,10 @@
source 'https://rubygems.org'
-gem 'rails', '4.1.0'
+gem 'rails', github: 'rails/rails', branch: '4-2-stable'
gem 'mysql2'
gem 'jquery-rails'
-gem 'bcrypt-ruby' # To use ActiveModel's has_secure_password
+gem 'bcrypt' # To use ActiveModel's has_secure_password
gem 'sanitize'
gem 'strip_attributes'
gem 'redcarpet', '~> 3.2.3'
@@ -20,7 +20,6 @@ gem 'jquery-textcomplete-rails', github: 'RedstonerServer/jquery-textcomplete-ra
# in production environments by default.
group :assets do
gem 'sass-rails'
- gem 'coffee-rails'
gem 'uglifier'
end
@@ -33,7 +32,15 @@ group :development do
gem 'capistrano-rails', '~> 1.1.2'
gem 'capistrano-rbenv', '~> 2.0'
gem 'capistrano-bundler', '~> 1.1.3'
+ # windows timezone foo
+ gem 'tzinfo-data', platforms: [:mingw, :mswin]
end
-# Use unicorn as the app server
-gem 'unicorn' \ No newline at end of file
+group :test do
+ gem 'sqlite3'
+end
+
+group :production do
+ # Use unicorn as the app server
+ gem 'unicorn'
+end \ No newline at end of file