Skip to content

Commit

Permalink
Updated gem dependencies
Browse files Browse the repository at this point in the history
* Silenced minor warnings in 1.9.1
  • Loading branch information
Dan Kubb committed Mar 23, 2009
1 parent 06095cc commit 3affe54
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dm-core.gemspec
Expand Up @@ -6,7 +6,7 @@ Gem::Specification.new do |s|

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Dan Kubb"]
s.date = %q{2009-01-30}
s.date = %q{2009-03-23}
s.description = %q{Faster, Better, Simpler.}
s.email = ["dan.kubb@gmail.com"]
s.extra_rdoc_files = ["History.txt", "Manifest.txt", "README.txt"]
Expand Down
2 changes: 1 addition & 1 deletion lib/dm-core/adapters/data_objects_adapter.rb
Expand Up @@ -278,7 +278,7 @@ def links_statement(query)
elsif table_list.include?(child_table_name)
parent_table_name
else
raise ArgumentError "you're trying to join a table with no connection to this query"
raise ArgumentError, 'you\'re trying to join a table with no connection to this query'
end
table_list << join_table_name

Expand Down
2 changes: 1 addition & 1 deletion spec/spec_helper.rb
@@ -1,7 +1,7 @@
require 'pathname'
require 'rubygems'

gem 'rspec', '~>1.1.11'
gem 'rspec', '~>1.2'
require 'spec'

SPEC_ROOT = Pathname(__FILE__).dirname.expand_path
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/adapters/data_objects_adapter_spec.rb
Expand Up @@ -339,7 +339,7 @@ def do_create

if method == :read_one
it 'should return a DataMapper::Resource' do
do_read.should == be_kind_of(DataMapper::Resource)
do_read.should be_kind_of(DataMapper::Resource)
end
else
it 'should return a DataMapper::Collection' do
Expand Down

0 comments on commit 3affe54

Please sign in to comment.