Commit 695de2bb533e39e5f628624cf6391fe1c1d16bb4

Authored by Marcin Ciunelis
1 parent d784759a
Exists in master and in 1 other branch production

will_paginate dependency removed

Showing 3 changed files with 0 additions and 4 deletions   Show diff stats
Gemfile
... ... @@ -4,7 +4,6 @@ gem 'rails', '3.0.10'
4 4 gem 'nokogiri'
5 5 gem 'mongoid', '2.1.2'
6 6 gem 'haml'
7   -gem 'will_paginate', '>=3'
8 7 gem 'htmlentities', "~> 4.3.0"
9 8 gem 'devise', '~> 1.4.0'
10 9 gem 'lighthouse-api'
... ...
Gemfile.lock
... ... @@ -217,7 +217,6 @@ GEM
217 217 webmock (1.7.6)
218 218 addressable (~> 2.2, > 2.2.5)
219 219 crack (>= 0.1.7)
220   - will_paginate (3.0.2)
221 220  
222 221 PLATFORMS
223 222 ruby
... ... @@ -254,4 +253,3 @@ DEPENDENCIES
254 253 thin
255 254 useragent (~> 0.3.1)
256 255 webmock
257   - will_paginate (>= 3)
... ...
config/application.rb
... ... @@ -7,7 +7,6 @@ require "action_controller/railtie"
7 7 require "action_mailer/railtie"
8 8 # require "active_resource/railtie"
9 9 require 'mongoid/railtie'
10   -require 'will_paginate/array' # make paginate available on Array
11 10  
12 11  
13 12 # If you have a Gemfile, require the gems listed there, including any gems
... ...