upgrade gems
did
committed Mar 27, 2015
commit 53a910eb6ea4cfff7f5e350da938fa9491169786
Showing 4
changed files with
15 additions
and 16 deletions
Gemfile
+2
-2
| @@ | @@ -19,12 +19,12 @@ group :test do |
| gem 'timecop', '~> 0.7.1' | |
| - | gem 'pry-byebug', '~> 3.0.1' |
| + | gem 'pry-byebug', '~> 3.1.0' |
| gem 'rack-test', '~> 0.6.3' | |
| gem 'codeclimate-test-reporter', '~> 0.4.7', require: false | |
| - | gem 'coveralls', '~> 0.7.11', require: false |
| + | gem 'coveralls', '~> 0.7.12', require: false |
| end | |
| platform :ruby do | |
Gemfile.lock
+10
-13
| @@ | @@ -3,7 +3,7 @@ PATH |
| specs: | |
| locomotivecms_steam (1.0.0.pre.alpha) | |
| RedCloth (~> 4.2.9) | |
| - | activesupport (~> 4.2.0) |
| + | activesupport (~> 4.2.1) |
| chronic (~> 0.10.2) | |
| coffee-script (~> 2.3.0) | |
| compass (~> 1.0.3) | |
| @@ | @@ -29,7 +29,7 @@ GEM |
| remote: https://rubygems.org/ | |
| specs: | |
| RedCloth (4.2.9) | |
| - | activesupport (4.2.0) |
| + | activesupport (4.2.1) |
| i18n (~> 0.7) | |
| json (~> 1.7, >= 1.7.7) | |
| minitest (~> 5.1) | |
| @@ | @@ -37,10 +37,8 @@ GEM |
| tzinfo (~> 1.1) | |
| addressable (2.3.7) | |
| bson (2.3.0) | |
| - | byebug (3.5.1) |
| - | columnize (~> 0.8) |
| - | debugger-linecache (~> 1.2) |
| - | slop (~> 3.6) |
| + | byebug (4.0.3) |
| + | columnize (= 0.9.0) |
| chronic (0.10.2) | |
| chunky_png (1.3.4) | |
| codeclimate-test-reporter (0.4.7) | |
| @@ | @@ -65,7 +63,7 @@ GEM |
| compass-import-once (1.0.5) | |
| sass (>= 3.2, < 3.5) | |
| connection_pool (2.1.1) | |
| - | coveralls (0.7.11) |
| + | coveralls (0.7.12) |
| multi_json (~> 1.10) | |
| rest-client (>= 1.6.8, < 2) | |
| simplecov (~> 0.9.1) | |
| @@ | @@ -73,7 +71,6 @@ GEM |
| thor (~> 0.19.1) | |
| crass (1.0.1) | |
| daemons (1.1.9) | |
| - | debugger-linecache (1.2.0) |
| diff-lcs (1.2.5) | |
| docile (1.1.5) | |
| dragonfly (1.0.7) | |
| @@ | @@ -128,8 +125,8 @@ GEM |
| coderay (~> 1.1.0) | |
| method_source (~> 0.8.1) | |
| slop (~> 3.4) | |
| - | pry-byebug (3.0.1) |
| - | byebug (~> 3.4) |
| + | pry-byebug (3.1.0) |
| + | byebug (~> 4.0) |
| pry (~> 0.10) | |
| rack (1.6.0) | |
| rack-cache (1.2) | |
| @@ | @@ -189,7 +186,7 @@ GEM |
| thread_safe (0.3.5) | |
| tilt (1.4.1) | |
| timecop (0.7.3) | |
| - | tins (1.3.4) |
| + | tins (1.3.5) |
| tzinfo (1.2.2) | |
| thread_safe (~> 0.1) | |
| yui-compressor (0.12.0) | |
| @@ | @@ -200,13 +197,13 @@ PLATFORMS |
| DEPENDENCIES | |
| bundler (~> 1.7) | |
| codeclimate-test-reporter (~> 0.4.7) | |
| - | coveralls (~> 0.7.11) |
| + | coveralls (~> 0.7.12) |
| i18n-spec (~> 0.6.0) | |
| json_spec (~> 1.1.4) | |
| locomotivecms_steam! | |
| moped (~> 2.0.4) | |
| origin (~> 2.1.1) | |
| - | pry-byebug (~> 3.0.1) |
| + | pry-byebug (~> 3.1.0) |
| rack-test (~> 0.6.3) | |
| rake (~> 10.4.2) | |
| rspec (~> 3.2.0) | |
locomotivecms_steam.gemspec
+1
-1
| @@ | @@ -22,7 +22,7 @@ Gem::Specification.new do |spec| |
| spec.add_development_dependency 'moped', '~> 2.0.4' | |
| spec.add_development_dependency 'origin', '~> 2.1.1' | |
| - | spec.add_dependency 'activesupport', '~> 4.2.0' |
| + | spec.add_dependency 'activesupport', '~> 4.2.1' |
| spec.add_dependency 'stringex', '~> 2.5.2' | |
| spec.add_dependency 'sanitize', '~> 3.1.2' | |
| spec.add_dependency 'morphine', '~> 0.1.1' | |
spec/integration/server/sitemap_spec.rb
+2
-0
| @@ | @@ -14,6 +14,8 @@ describe Locomotive::Steam::Server do |
| subject { Timecop.freeze(now) { get '/sitemap.xml' }; last_response.body } | |
| + | before { Locomotive::Steam::Adapters::Filesystem::SimpleCacheStore.new.clear } |
| + | |
| it 'checks if it looks valid' do | |
| expect(Nokogiri::XML(subject).errors.empty?).to eq true | |
| expect(subject.scan(/<url>/).size).to eq 45 | |