aboutsummaryrefslogtreecommitdiffstats
path: root/spec/support
diff options
context:
space:
mode:
authorBryan Helmkamp <bryan@brynary.com>2010-05-26 18:15:21 -0400
committerBryan Helmkamp <bryan@brynary.com>2010-05-26 18:15:21 -0400
commit2ee391231842eec5ce75517c0b24576c1e2a3261 (patch)
treebd3bbd8698b810ebc7cd8a44a8e9b095b7be0f68 /spec/support
parentd144b8d5af11c819b8f70a97006998bf89ee926c (diff)
downloadrails-2ee391231842eec5ce75517c0b24576c1e2a3261.tar.gz
rails-2ee391231842eec5ce75517c0b24576c1e2a3261.tar.bz2
rails-2ee391231842eec5ce75517c0b24576c1e2a3261.zip
Whitespace fixes
Diffstat (limited to 'spec/support')
-rw-r--r--spec/support/check.rb2
-rw-r--r--spec/support/connections/mysql_connection.rb2
-rw-r--r--spec/support/connections/oracle_connection.rb2
-rw-r--r--spec/support/connections/postgresql_connection.rb2
-rw-r--r--spec/support/guards.rb2
-rw-r--r--spec/support/matchers.rb2
-rw-r--r--spec/support/matchers/have_rows.rb2
-rw-r--r--spec/support/model.rb2
8 files changed, 8 insertions, 8 deletions
diff --git a/spec/support/check.rb b/spec/support/check.rb
index 0a89349629..c9adce420c 100644
--- a/spec/support/check.rb
+++ b/spec/support/check.rb
@@ -3,4 +3,4 @@ module Check
# See: https://rspec.lighthouseapp.com/projects/5645/tickets/504
def check(*args)
end
-end \ No newline at end of file
+end
diff --git a/spec/support/connections/mysql_connection.rb b/spec/support/connections/mysql_connection.rb
index de9d05c2ce..c924c27080 100644
--- a/spec/support/connections/mysql_connection.rb
+++ b/spec/support/connections/mysql_connection.rb
@@ -11,4 +11,4 @@ ActiveRecord::Base.configurations = {
:encoding => 'utf8',
:database => 'arel_unit',
}
-} \ No newline at end of file
+}
diff --git a/spec/support/connections/oracle_connection.rb b/spec/support/connections/oracle_connection.rb
index c28602b134..309d127071 100644
--- a/spec/support/connections/oracle_connection.rb
+++ b/spec/support/connections/oracle_connection.rb
@@ -14,4 +14,4 @@ ActiveRecord::Base.configurations = {
:password => 'arel_unit',
:database => 'orcl',
}
-} \ No newline at end of file
+}
diff --git a/spec/support/connections/postgresql_connection.rb b/spec/support/connections/postgresql_connection.rb
index 34d304efa9..692533d10d 100644
--- a/spec/support/connections/postgresql_connection.rb
+++ b/spec/support/connections/postgresql_connection.rb
@@ -10,4 +10,4 @@ ActiveRecord::Base.configurations = {
:encoding => 'utf8',
:database => 'arel_unit',
}
-} \ No newline at end of file
+}
diff --git a/spec/support/guards.rb b/spec/support/guards.rb
index cfa4b7b79a..db6075f73a 100644
--- a/spec/support/guards.rb
+++ b/spec/support/guards.rb
@@ -25,4 +25,4 @@ module AdapterGuards
def valid_adapters
%w[mysql postgresql sqlite3 oracle]
end
-end \ No newline at end of file
+end
diff --git a/spec/support/matchers.rb b/spec/support/matchers.rb
index 8cef5d947e..5f51a68633 100644
--- a/spec/support/matchers.rb
+++ b/spec/support/matchers.rb
@@ -1,4 +1,4 @@
require "support/matchers/be_like"
require "support/matchers/disambiguate_attributes"
require "support/matchers/hash_the_same_as"
-require "support/matchers/have_rows" \ No newline at end of file
+require "support/matchers/have_rows"
diff --git a/spec/support/matchers/have_rows.rb b/spec/support/matchers/have_rows.rb
index 7d9c6a20c9..e476d25f4f 100644
--- a/spec/support/matchers/have_rows.rb
+++ b/spec/support/matchers/have_rows.rb
@@ -15,4 +15,4 @@ module Matchers
found.compact.length == expected.length && got.compact.length == expected.length
end
end
-end \ No newline at end of file
+end
diff --git a/spec/support/model.rb b/spec/support/model.rb
index be692e53ec..d5be35cbba 100644
--- a/spec/support/model.rb
+++ b/spec/support/model.rb
@@ -59,4 +59,4 @@ module Arel
insert.record
end
end
-end \ No newline at end of file
+end