forked from datamapper/dm-migrations
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdm-migrations.gemspec
121 lines (116 loc) · 4.27 KB
/
dm-migrations.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{dm-migrations}
s.version = "1.0.0"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Paul Sadauskas"]
s.date = %q{2010-06-08}
s.description = %q{DataMapper plugin for writing and speccing migrations}
s.email = %q{psadauskas [a] gmail [d] com}
s.extra_rdoc_files = [
"LICENSE",
"README.rdoc"
]
s.files = [
".gitignore",
"Gemfile",
"LICENSE",
"README.rdoc",
"Rakefile",
"VERSION",
"db/migrations/1_create_people_table.rb",
"db/migrations/2_add_dob_to_people.rb",
"db/migrations/config.rb",
"dm-migrations.gemspec",
"examples/sample_migration.rb",
"examples/sample_migration_spec.rb",
"lib/dm-migrations.rb",
"lib/dm-migrations/adapters/dm-do-adapter.rb",
"lib/dm-migrations/adapters/dm-mysql-adapter.rb",
"lib/dm-migrations/adapters/dm-oracle-adapter.rb",
"lib/dm-migrations/adapters/dm-postgres-adapter.rb",
"lib/dm-migrations/adapters/dm-sqlite-adapter.rb",
"lib/dm-migrations/adapters/dm-sqlserver-adapter.rb",
"lib/dm-migrations/adapters/dm-yaml-adapter.rb",
"lib/dm-migrations/auto_migration.rb",
"lib/dm-migrations/migration.rb",
"lib/dm-migrations/migration_runner.rb",
"lib/dm-migrations/sql.rb",
"lib/dm-migrations/sql/column.rb",
"lib/dm-migrations/sql/mysql.rb",
"lib/dm-migrations/sql/postgres.rb",
"lib/dm-migrations/sql/sqlite.rb",
"lib/dm-migrations/sql/table.rb",
"lib/dm-migrations/sql/table_creator.rb",
"lib/dm-migrations/sql/table_modifier.rb",
"lib/spec/example/migration_example_group.rb",
"lib/spec/matchers/migration_matchers.rb",
"spec/integration/auto_migration_spec.rb",
"spec/integration/migration_runner_spec.rb",
"spec/integration/migration_spec.rb",
"spec/integration/sql_spec.rb",
"spec/isolated/require_after_setup_spec.rb",
"spec/isolated/require_before_setup_spec.rb",
"spec/isolated/require_spec.rb",
"spec/rcov.opts",
"spec/spec.opts",
"spec/spec_helper.rb",
"spec/unit/migration_spec.rb",
"spec/unit/sql/column_spec.rb",
"spec/unit/sql/postgres_spec.rb",
"spec/unit/sql/sqlite_extensions_spec.rb",
"spec/unit/sql/table_creator_spec.rb",
"spec/unit/sql/table_modifier_spec.rb",
"spec/unit/sql/table_spec.rb",
"spec/unit/sql_spec.rb",
"tasks/ci.rake",
"tasks/local_gemfile.rake",
"tasks/metrics.rake",
"tasks/spec.rake",
"tasks/yard.rake",
"tasks/yardstick.rake"
]
s.homepage = %q{http://github.com/datamapper/dm-migrations}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{datamapper}
s.rubygems_version = %q{1.3.7}
s.summary = %q{DataMapper plugin for writing and speccing migrations}
s.test_files = [
"spec/integration/auto_migration_spec.rb",
"spec/integration/migration_runner_spec.rb",
"spec/integration/migration_spec.rb",
"spec/integration/sql_spec.rb",
"spec/isolated/require_after_setup_spec.rb",
"spec/isolated/require_before_setup_spec.rb",
"spec/isolated/require_spec.rb",
"spec/spec_helper.rb",
"spec/unit/migration_spec.rb",
"spec/unit/sql/column_spec.rb",
"spec/unit/sql/postgres_spec.rb",
"spec/unit/sql/sqlite_extensions_spec.rb",
"spec/unit/sql/table_creator_spec.rb",
"spec/unit/sql/table_modifier_spec.rb",
"spec/unit/sql/table_spec.rb",
"spec/unit/sql_spec.rb",
"examples/sample_migration.rb",
"examples/sample_migration_spec.rb"
]
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<dm-core>, ["~> 1.0.0"])
s.add_development_dependency(%q<rspec>, ["~> 1.3"])
else
s.add_dependency(%q<dm-core>, ["~> 1.0.0"])
s.add_dependency(%q<rspec>, ["~> 1.3"])
end
else
s.add_dependency(%q<dm-core>, ["~> 1.0.0"])
s.add_dependency(%q<rspec>, ["~> 1.3"])
end
end