Skip to content

Commit

Permalink
Remove deprecation warnings. Remove space warning from user_spec.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathan Fisher committed May 10, 2011
1 parent 8173fac commit 7f57ada
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ group :cucumber do
end

group :test do
gem 'rspec', '1.3.0'
gem 'rspec-rails', '1.3.2'
gem 'rspec', '1.3.2'
gem 'rspec-rails', '1.3.4'
gem 'webrat', '0.7.1'
end

20 changes: 10 additions & 10 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
GEM
remote: http://rubygems.org/
specs:
Ascii85 (1.0.0)
Ascii85 (1.0.1)
actionmailer (2.3.11)
actionpack (= 2.3.11)
actionpack (2.3.11)
Expand Down Expand Up @@ -44,14 +44,14 @@ GEM
pdf-reader (0.8.6)
Ascii85 (>= 0.9)
prawn (0.8.4)
prawn-core (< 0.9, >= 0.8.4)
prawn-layout (< 0.9, >= 0.8.4)
prawn-security (< 0.9, >= 0.8.4)
prawn-core (>= 0.8.4, < 0.9)
prawn-layout (>= 0.8.4, < 0.9)
prawn-security (>= 0.8.4, < 0.9)
prawn-core (0.8.4)
prawn-layout (0.8.4)
prawn-security (0.8.4)
rack (1.1.2)
rack-test (0.5.7)
rack-test (0.6.0)
rack (>= 1.0)
rails (2.3.11)
actionmailer (= 2.3.11)
Expand All @@ -65,10 +65,10 @@ GEM
mime-types (>= 1.16)
rsolr (0.12.1)
builder (>= 2.1.2)
rspec (1.3.0)
rspec-rails (1.3.2)
rspec (1.3.2)
rspec-rails (1.3.4)
rack (>= 1.0.0)
rspec (>= 1.3.0)
rspec (~> 1.3.1)
subexec (0.0.4)
sunspot (1.1.0)
escape (= 0.0.4)
Expand Down Expand Up @@ -100,8 +100,8 @@ DEPENDENCIES
prawn (= 0.8.4)
rails (= 2.3.11)
rest-client (= 1.3.0)
rspec (= 1.3.0)
rspec-rails (= 1.3.2)
rspec (= 1.3.2)
rspec-rails (= 1.3.4)
subexec (= 0.0.4)
sunspot (= 1.1.0)
uuidtools (= 2.1.1)
Expand Down
2 changes: 1 addition & 1 deletion spec/models/user_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ def build_and_save_user( options = {} )
end

it "should save blacklisted devices to the device list" do
device = Device.new (:imei => "1234", :blacklisted => false, :user_name => "timothy")
device = Device.new(:imei => "1234", :blacklisted => false, :user_name => "timothy")
device.save!

user = build_and_save_user(:user_name => "timothy")
Expand Down

0 comments on commit 7f57ada

Please sign in to comment.