Skip to content

Commit b8b61b5

Browse files
josetonypstonerl
authored andcommitted
Apply first patchset from jose
1 parent 427d6d9 commit b8b61b5

38 files changed

+292
-306
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@ tmp/
88
*.sw?
99
public/pdf
1010
index
11-
coverage
11+
coverage
12+
config/database.yml

.rspec

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
--color
2+
--format progress

.ruby-gemset

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
dglb

.ruby-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2.2.0

Gemfile

Lines changed: 13 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,7 @@
11
source 'https://rubygems.org'
22

3-
ruby '2.1.5'
4-
5-
gem 'rails', '3.2.13'
6-
7-
# Bundle edge Rails instead:
8-
# gem 'rails', :git => 'git://github.com/rails/rails.git'
9-
3+
gem 'rails', '4.2.4'
104
gem 'sqlite3'
11-
12-
13-
# Gems used only for assets and not required
14-
# in production environments by default.
15-
group :assets do
16-
gem 'sass-rails', '~> 3.2.3'
17-
gem 'coffee-rails', '~> 3.2.1'
18-
19-
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
20-
# gem 'therubyracer', :platforms => :ruby
21-
22-
gem 'uglifier', '>= 1.0.3'
23-
end
24-
255
gem 'jquery-rails'
266
gem "ckeditor"
277
gem 'turbolinks'
@@ -30,35 +10,29 @@ gem 'nokogiri'
3010
gem 'devise'
3111
gem 'devise-i18n-views'
3212
gem "rspec-rails", :group => [:test, :development]
33-
gem "paper_trail", "~> 2"
13+
gem "paper_trail"
3414
gem "kaminari"
15+
gem 'bcrypt-ruby'
16+
gem 'cancancan'
17+
18+
group :assets do
19+
gem 'sass-rails', '~> 5.0'
20+
gem 'uglifier', '>= 1.3.0'
21+
end
3522

3623
group :development do
37-
gem 'better_errors'
38-
gem 'binding_of_caller'
39-
gem 'pry'
24+
gem 'pry-rails'
25+
gem 'awesome_print'
4026
end
27+
4128
group :test do
4229
gem 'capybara'
4330
gem 'factory_girl_rails'
4431
gem 'guard-rspec'
45-
gem 'rb-inotify', '~> 0.8.8'
4632
gem 'database_cleaner'
4733
end
48-
# To use ActiveModel has_secure_password
49-
gem 'bcrypt-ruby', '~> 3.0.0'
50-
51-
# To use Jbuilder templates for JSON
52-
# gem 'jbuilder'
5334

54-
# Use unicorn as the app server
55-
# gem 'unicorn'
56-
57-
# Deploy with Capistrano
58-
group :deployment do
35+
group :deployment do
5936
gem 'capistrano'
6037
gem 'rvm-capistrano'
6138
end
62-
63-
# To use debugger
64-
# gem 'debugger'

0 commit comments

Comments
 (0)