Skip to content

Commit e4de153

Browse files
committed
Removing unused test/fixture/db_definitions. Getting gemspec in order.
1 parent 17bac26 commit e4de153

File tree

9 files changed

+67
-306
lines changed

9 files changed

+67
-306
lines changed

MIT-LICENSE

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
Copyright (c) 2008
2+
3+
Permission is hereby granted, free of charge, to any person obtaining
4+
a copy of this software and associated documentation files (the
5+
"Software"), to deal in the Software without restriction, including
6+
without limitation the rights to use, copy, modify, merge, publish,
7+
distribute, sublicense, and/or sell copies of the Software, and to
8+
permit persons to whom the Software is furnished to do so, subject to
9+
the following conditions:
10+
11+
The above copyright notice and this permission notice shall be
12+
included in all copies or substantial portions of the Software.
13+
14+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
File renamed without changes.

Rakefile

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,6 @@ task :release => :package do
4848
rubyforge.add_release(PKG_NAME, PKG_NAME, "REL #{PKG_VERSION}", *packages)
4949
end
5050

51-
52-
SCHEMA_PATH = File.join(File.dirname(__FILE__), *%w(test fixtures db_definitions))
53-
5451
desc 'Create the SQL Server test databases'
5552
task :create_databases do
5653
# Define a user named 'rails' in SQL Server with all privileges granted

rails-sqlserver-adapter.gemspec

Lines changed: 0 additions & 16 deletions
This file was deleted.

sqlserver-05-adapter.gemspec

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
Gem::Specification.new do |s|
2+
s.name = "sqlserver-05-adapter"
3+
s.version = "1.0.0"
4+
s.date = "2008-11-19"
5+
s.summary = "SQL Server 2000 & 2005 Adapter For Rails."
6+
s.email = "ken@metaskills.net"
7+
s.homepage = "http://github.com/rails-sqlserver/sqlserver-05-adapter/"
8+
s.description = "SQL Server 2000 & 2005 Adapter For Rails."
9+
s.has_rdoc = true
10+
s.authors = ["Ken Collins","Murray Steele","Shawn Balestracci","Tom Ward"]
11+
s.files = [
12+
"CHANGELOG",
13+
"MIT-LICENSE",
14+
"Rakefile",
15+
"README.textile",
16+
"RUNNING_UNIT_TESTS",
17+
"autotest",
18+
"autotest/discover.rb",
19+
"autotest/railssqlserver.rb",
20+
"autotest/sqlserver.rb",
21+
"lib/active_record/connection_adapters/sqlserver_adapter.rb",
22+
"lib/core_ext/active_record.rb",
23+
"lib/core_ext/dbi.rb" ]
24+
s.test_files = [
25+
"test/cases/aaaa_create_tables_test_sqlserver.rb",
26+
"test/cases/adapter_test_sqlserver.rb",
27+
"test/cases/basics_test_sqlserver.rb",
28+
"test/cases/calculations_test_sqlserver.rb",
29+
"test/cases/column_test_sqlserver.rb",
30+
"test/cases/connection_test_sqlserver.rb",
31+
"test/cases/eager_association_test_sqlserver.rb",
32+
"test/cases/inheritance_test_sqlserver.rb",
33+
"test/cases/migration_test_sqlserver.rb",
34+
"test/cases/offset_and_limit_test_sqlserver.rb",
35+
"test/cases/pessimistic_locking_test_sqlserver.rb",
36+
"test/cases/query_cache_test_sqlserver.rb",
37+
"test/cases/schema_dumper_test_sqlserver.rb",
38+
"test/cases/specific_schema_test_sqlserver.rb",
39+
"test/cases/sqlserver_helper.rb",
40+
"test/connections/native_sqlserver/connection.rb",
41+
"test/connections/native_sqlserver_odbc/connection.rb",
42+
"test/migrations/transaction_table/1_table_will_never_be_created.rb",
43+
"test/schema/sqlserver_specific_schema.rb" ]
44+
s.rdoc_options = ["--line-numbers", "--inline-source", "--main", "README.textile"]
45+
s.extra_rdoc_files = ["README.textile"]
46+
s.add_dependency("activerecord", [">= 2.2.0"])
47+
end

test/fixtures/db_definitions/sqlserver.drop.sql

Lines changed: 0 additions & 35 deletions
This file was deleted.

test/fixtures/db_definitions/sqlserver.sql

Lines changed: 0 additions & 247 deletions
This file was deleted.

test/fixtures/db_definitions/sqlserver2.drop.sql

Lines changed: 0 additions & 1 deletion
This file was deleted.

test/fixtures/db_definitions/sqlserver2.sql

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)