update gems, fix warning about must_equal nil test

This commit is contained in:
Kyle Drake 2017-05-22 18:10:26 -07:00
parent 8a4fcd3d44
commit 4d397df015
2 changed files with 12 additions and 12 deletions

View file

@ -14,7 +14,7 @@ GEM
specs:
acme-client (0.5.5)
faraday (~> 0.9, >= 0.9.1)
activesupport (5.1.0)
activesupport (5.1.1)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (~> 0.7)
minitest (~> 5.1)
@ -40,7 +40,7 @@ GEM
capybara (>= 2)
minitest (>= 4)
certified (1.0.0)
climate_control (0.1.0)
climate_control (0.2.0)
cliver (0.3.2)
cocaine (0.5.8)
climate_control (>= 0.0.3, < 1.0)
@ -99,7 +99,7 @@ GEM
http_parser.rb (~> 0.6.0)
http-cookie (1.0.3)
domain_name (~> 0.5)
http-form_data (1.0.1)
http-form_data (1.0.3)
http_parser.rb (0.6.0)
i18n (0.8.1)
image_optim (0.24.3)
@ -123,7 +123,7 @@ GEM
json (1.8.6)
loofah (2.0.3)
nokogiri (>= 1.5.9)
m (1.5.0)
m (1.5.1)
method_source (>= 0.6.7)
rake (>= 0.9.2.2)
magic (0.2.9)
@ -134,7 +134,7 @@ GEM
method_source (0.8.2)
mime-types (2.99.3)
mini_portile2 (2.1.0)
minitest (5.10.1)
minitest (5.10.2)
minitest-reporters (1.1.14)
ansi
builder
@ -155,9 +155,9 @@ GEM
net-ssh (>= 2.6.5)
net-ssh (4.1.0)
netrc (0.11.0)
nokogiri (1.7.1)
nokogiri (1.7.2)
mini_portile2 (~> 2.1.0)
nokogumbo (1.4.10)
nokogumbo (1.4.11)
nokogiri
ox (2.5.0)
paypal-recurring (1.1.0)
@ -176,7 +176,7 @@ GEM
pry (~> 0.10)
public_suffix (2.0.5)
puma (3.8.2)
rack (2.0.1)
rack (2.0.3)
rack-cache (1.7.0)
rack (>= 0.4)
rack-protection (2.0.0)
@ -211,7 +211,7 @@ GEM
crass (~> 1.0.2)
nokogiri (>= 1.4.4)
nokogumbo (~> 1.4.1)
sass (3.4.23)
sass (3.4.24)
sax-machine (1.3.2)
scrypt (3.0.5)
ffi-compiler (>= 1.0, < 2.0)
@ -230,7 +230,7 @@ GEM
docile (~> 1.1.0)
json (>= 1.8, < 3)
simplecov-html (~> 0.10.0)
simplecov-html (0.10.0)
simplecov-html (0.10.1)
simpleidn (0.0.7)
sinatra (2.0.0)
mustermann (~> 1.0)
@ -261,7 +261,7 @@ GEM
thread_safe (0.3.6)
tilt (2.0.7)
timecop (0.8.1)
tins (1.13.2)
tins (1.14.0)
tzinfo (1.2.3)
thread_safe (~> 0.1)
unf (0.1.4)

View file

@ -263,7 +263,7 @@ describe 'api upload' do
it 'succeeds with valid api key' do
create_site
@site.api_key.must_equal nil
@site.api_key.must_be_nil
@site.generate_api_key!
@site.reload.api_key.wont_equal nil
header 'Authorization', "Bearer #{@site.api_key}"