dm-migrations 1.0.0.rc1 → 1.0.0.rc2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Gemfile +4 -4
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/dm-migrations.gemspec +6 -6
- metadata +14 -5
data/Gemfile
CHANGED
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
source 'http://rubygems.org'
|
|
72
72
|
|
|
73
73
|
DATAMAPPER = 'git://github.com/datamapper'
|
|
74
|
-
DM_VERSION = '~> 1.0.0.
|
|
74
|
+
DM_VERSION = '~> 1.0.0.rc2'
|
|
75
75
|
|
|
76
76
|
group :runtime do # Runtime dependencies (as in the gemspec)
|
|
77
77
|
|
|
@@ -96,8 +96,8 @@ end
|
|
|
96
96
|
group :quality do # These gems contain rake tasks that check the quality of the source code
|
|
97
97
|
|
|
98
98
|
gem 'metric_fu', '~> 1.3'
|
|
99
|
-
gem 'rcov', '~> 0.9.
|
|
100
|
-
gem 'reek', '~> 1.2.
|
|
99
|
+
gem 'rcov', '~> 0.9.8'
|
|
100
|
+
gem 'reek', '~> 1.2.8'
|
|
101
101
|
gem 'roodi', '~> 2.1'
|
|
102
102
|
gem 'yard', '~> 0.5'
|
|
103
103
|
gem 'yardstick', '~> 0.1'
|
|
@@ -111,7 +111,7 @@ group :datamapper do # We need this because we want to pin these dependencies to
|
|
|
111
111
|
|
|
112
112
|
unless adapters.empty?
|
|
113
113
|
|
|
114
|
-
DO_VERSION = '~> 0.10.
|
|
114
|
+
DO_VERSION = '~> 0.10.3'
|
|
115
115
|
DM_DO_ADAPTERS = %w[sqlite postgres mysql oracle sqlserver]
|
|
116
116
|
|
|
117
117
|
gem 'data_objects', DO_VERSION, :git => "#{DATAMAPPER}/do.git"
|
data/Rakefile
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.0.
|
|
1
|
+
1.0.0.rc2
|
data/dm-migrations.gemspec
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{dm-migrations}
|
|
8
|
-
s.version = "1.0.0.
|
|
8
|
+
s.version = "1.0.0.rc2"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Paul Sadauskas"]
|
|
@@ -79,7 +79,7 @@ Gem::Specification.new do |s|
|
|
|
79
79
|
s.rdoc_options = ["--charset=UTF-8"]
|
|
80
80
|
s.require_paths = ["lib"]
|
|
81
81
|
s.rubyforge_project = %q{datamapper}
|
|
82
|
-
s.rubygems_version = %q{1.3.
|
|
82
|
+
s.rubygems_version = %q{1.3.7}
|
|
83
83
|
s.summary = %q{DataMapper plugin for writing and speccing migrations}
|
|
84
84
|
s.test_files = [
|
|
85
85
|
"spec/integration/auto_migration_spec.rb",
|
|
@@ -106,15 +106,15 @@ Gem::Specification.new do |s|
|
|
|
106
106
|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
107
107
|
s.specification_version = 3
|
|
108
108
|
|
|
109
|
-
if Gem::Version.new(Gem::
|
|
110
|
-
s.add_runtime_dependency(%q<dm-core>, ["~> 1.0.0.
|
|
109
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
110
|
+
s.add_runtime_dependency(%q<dm-core>, ["~> 1.0.0.rc2"])
|
|
111
111
|
s.add_development_dependency(%q<rspec>, ["~> 1.3"])
|
|
112
112
|
else
|
|
113
|
-
s.add_dependency(%q<dm-core>, ["~> 1.0.0.
|
|
113
|
+
s.add_dependency(%q<dm-core>, ["~> 1.0.0.rc2"])
|
|
114
114
|
s.add_dependency(%q<rspec>, ["~> 1.3"])
|
|
115
115
|
end
|
|
116
116
|
else
|
|
117
|
-
s.add_dependency(%q<dm-core>, ["~> 1.0.0.
|
|
117
|
+
s.add_dependency(%q<dm-core>, ["~> 1.0.0.rc2"])
|
|
118
118
|
s.add_dependency(%q<rspec>, ["~> 1.3"])
|
|
119
119
|
end
|
|
120
120
|
end
|
metadata
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dm-migrations
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
+
hash: 977940575
|
|
4
5
|
prerelease: true
|
|
5
6
|
segments:
|
|
6
7
|
- 1
|
|
7
8
|
- 0
|
|
8
9
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 1.0.0.
|
|
10
|
+
- rc2
|
|
11
|
+
version: 1.0.0.rc2
|
|
11
12
|
platform: ruby
|
|
12
13
|
authors:
|
|
13
14
|
- Paul Sadauskas
|
|
@@ -22,24 +23,28 @@ dependencies:
|
|
|
22
23
|
name: dm-core
|
|
23
24
|
prerelease: false
|
|
24
25
|
requirement: &id001 !ruby/object:Gem::Requirement
|
|
26
|
+
none: false
|
|
25
27
|
requirements:
|
|
26
28
|
- - ~>
|
|
27
29
|
- !ruby/object:Gem::Version
|
|
30
|
+
hash: 977940575
|
|
28
31
|
segments:
|
|
29
32
|
- 1
|
|
30
33
|
- 0
|
|
31
34
|
- 0
|
|
32
|
-
-
|
|
33
|
-
version: 1.0.0.
|
|
35
|
+
- rc2
|
|
36
|
+
version: 1.0.0.rc2
|
|
34
37
|
type: :runtime
|
|
35
38
|
version_requirements: *id001
|
|
36
39
|
- !ruby/object:Gem::Dependency
|
|
37
40
|
name: rspec
|
|
38
41
|
prerelease: false
|
|
39
42
|
requirement: &id002 !ruby/object:Gem::Requirement
|
|
43
|
+
none: false
|
|
40
44
|
requirements:
|
|
41
45
|
- - ~>
|
|
42
46
|
- !ruby/object:Gem::Version
|
|
47
|
+
hash: 9
|
|
43
48
|
segments:
|
|
44
49
|
- 1
|
|
45
50
|
- 3
|
|
@@ -123,16 +128,20 @@ rdoc_options:
|
|
|
123
128
|
require_paths:
|
|
124
129
|
- lib
|
|
125
130
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
131
|
+
none: false
|
|
126
132
|
requirements:
|
|
127
133
|
- - ">="
|
|
128
134
|
- !ruby/object:Gem::Version
|
|
135
|
+
hash: 3
|
|
129
136
|
segments:
|
|
130
137
|
- 0
|
|
131
138
|
version: "0"
|
|
132
139
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
140
|
+
none: false
|
|
133
141
|
requirements:
|
|
134
142
|
- - ">"
|
|
135
143
|
- !ruby/object:Gem::Version
|
|
144
|
+
hash: 25
|
|
136
145
|
segments:
|
|
137
146
|
- 1
|
|
138
147
|
- 3
|
|
@@ -141,7 +150,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
141
150
|
requirements: []
|
|
142
151
|
|
|
143
152
|
rubyforge_project: datamapper
|
|
144
|
-
rubygems_version: 1.3.
|
|
153
|
+
rubygems_version: 1.3.7
|
|
145
154
|
signing_key:
|
|
146
155
|
specification_version: 3
|
|
147
156
|
summary: DataMapper plugin for writing and speccing migrations
|