sequel-inline_schema 0.0.1 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6037f75d98e75ad634497e1000fdf8cac67cd388a366dc01d73e7a4f00897f15
4
- data.tar.gz: 8c6d0fe5f0146d296e85a3e074cf28394e803104c93253e1f200c04274da3ba5
3
+ metadata.gz: '0586820d7a0cb25e530b431dee73a22dc205296a1cf15a945602f554ba9b3608'
4
+ data.tar.gz: 4646d1e2a538da9554864bb15db471b2eb9a2c6e920b8bdcbb462883d1724517
5
5
  SHA512:
6
- metadata.gz: d5bf204ce162b8dae4e8780202f5031c2c7a48bf2f3f3eaa18552e2a346c9096a6c046a2e6c5232eb3f3f175314e332fa95d51c11a29711f848135d7f7701dd9
7
- data.tar.gz: 2eed48961ec313876ecc72aa512d53f7cdca5ab0792fe93309c01d359d8dbe72489f02ce91e5250769580b1f00a8cae25f449219b77a5b8d8c207332605fc551
6
+ metadata.gz: 06013b428fbd164f5717a815391d65723033648ef301621b7d551ebcfb8e18c6c0c64a31678a0e36885f89ee3d7e3f3e717fbeab9722f2537dbfb9e26d16c37d
7
+ data.tar.gz: 92cf82542922e762fc32971cce5b16cdeebc6922940a019bc4b2e80ac8e01ae40a6cea8d2863d3da2fbd71761ee9022b5587fa6b3ac471a62a57cddf3f31129e
@@ -1 +1,2 @@
1
- ����&��ƒ��sȻc9�&�gD X��n��%���i��,�,����.|���>E�Cs��*���&36h'���J����S5��|4j
1
+ M1��7��� ���i={�E�G�J�������,Ҕ�����U9�����S�Q��)Y�jZ9��C�`9銐$��2��ƥ�c����l
2
+ �uW �������r�<r�zS�N|yq0�Y�\|`Y:�I�� M���x���a��l�&h�w��@��WV!=Q�h���k�w�S���b�X|�9y"#G�8®�pD�4�����#4��H
data.tar.gz.sig CHANGED
Binary file
data/History.md CHANGED
@@ -1,3 +1,15 @@
1
+ # Release History for sequel-inline_schema
2
+
3
+ ---
4
+
5
+ ## v0.2.0 [2020-01-18] Michael Granger <ged@faeriemud.org>
6
+
7
+ Improvements:
8
+
9
+ - Fail on finding migrations with the same `name`. Thanks to
10
+ Alyssa Verkade <averkade@costar.com> for the patch.
11
+
12
+
1
13
  ## v0.0.1 [2018-07-19] Michael Granger <ged@FaerieMUD.org>
2
14
 
3
15
  Initial release.
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # sequel-inline_schema
2
2
 
3
3
  home
4
- : http://bitbucket.org/ged/sequel-inlineschema
4
+ : https://hg.sr.ht/~ged/Sequel-InlineSchema
5
5
 
6
6
  github
7
7
  : https://github.com/ged/sequel-inlineschema
@@ -39,15 +39,20 @@ Examples and usage documentation are included there.
39
39
  ## Contributing
40
40
 
41
41
  You can check out the current development source with Mercurial via its
42
- [project page][bitbucket]. Or if you prefer Git, via [its Github
42
+ [project page][sourcehut]. Or if you prefer Git, via [its Github
43
43
  mirror][github].
44
44
 
45
45
  After checking out the source, run:
46
46
 
47
- $ rake newb
47
+ $ rake setup
48
48
 
49
- This task will install any missing dependencies, run the tests/specs,
50
- and generate the API documentation.
49
+ This task will install any missing dependencies, and do any other necessary
50
+ setup to start development.
51
+
52
+
53
+ ## Authors
54
+
55
+ - Michael Granger <ged@faeriemud.org>
51
56
 
52
57
 
53
58
  ## License
@@ -76,10 +81,9 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
76
81
 
77
82
  The rest is licensed under the same terms, but:
78
83
 
79
- Copyright (c) 2017-2018, Michael Granger
80
-
84
+ Copyright (c) 2017-2020, Michael Granger
81
85
 
82
86
 
83
- [bitbucket]: http://bitbucket.org/ged/sequel-inlineschema
87
+ [sourcehut]: https://hg.sr.ht/~ged/Sequel-InlineSchema
84
88
  [github]: https://github.com/ged/sequel-inlineschema
85
89
 
data/Rakefile CHANGED
@@ -1,99 +1,9 @@
1
- #!/usr/bin/env rake
1
+ #!/usr/bin/env ruby -S rake
2
2
 
3
- begin
4
- require 'hoe'
5
- rescue LoadError
6
- abort "This Rakefile requires hoe (gem install hoe)"
7
- end
8
-
9
- GEMSPEC = 'sequel-inline_schema.gemspec'
10
-
11
-
12
- Hoe.plugin :mercurial
13
- Hoe.plugin :signing
14
- Hoe.plugin :deveiate
15
-
16
- Hoe.plugins.delete :rubyforge
17
-
18
- hoespec = Hoe.spec 'sequel-inline_schema' do |spec|
19
-
20
- spec.readme_file = 'README.md'
21
- spec.history_file = 'History.md'
22
- spec.urls = {
23
- home: 'http://bitbucket.org/ged/sequel-inline_schema',
24
- code: 'http://bitbucket.org/ged/sequel-inline_schema',
25
- docs: 'http://deveiate.org/code/sequel-inline_schema',
26
- github: 'http://github.com/ged/sequel-inline_schema',
27
- }
28
-
29
- spec.extra_rdoc_files = FileList[ '*.rdoc', '*.md' ]
30
- spec.license 'BSD-3-Clause'
31
-
32
- spec.developer 'Michael Granger', 'ged@FaerieMUD.org'
33
-
34
- spec.dependency 'sequel', '~> 5.0'
35
-
36
- spec.dependency 'hoe-deveiate', '~> 0.9', :developer
37
- spec.dependency 'simplecov', '~> 0.13', :developer
38
- spec.dependency 'rdoc-generator-fivefish', '~> 0.3', :developer
39
-
40
- spec.require_ruby_version( '>=2.4.0' )
41
- spec.hg_sign_tags = true if spec.respond_to?( :hg_sign_tags= )
42
- spec.check_history_on_release = true if spec.respond_to?( :check_history_on_release= )
43
-
44
- spec.rdoc_locations << "deveiate:/usr/local/www/public/code/#{remote_rdoc_dir}"
45
- end
3
+ require 'rake/deveiate'
46
4
 
47
-
48
- ENV['VERSION'] ||= hoespec.spec.version.to_s
49
-
50
- # Run the tests before checking in
51
- task 'hg:precheckin' => [ :check_history, :check_manifest, :gemspec, :spec ]
52
-
53
- task :test => :spec
54
-
55
- # Rebuild the ChangeLog immediately before release
56
- task :prerelease => 'ChangeLog'
57
- CLOBBER.include( 'ChangeLog' )
58
-
59
- desc "Build a coverage report"
60
- task :coverage do
61
- ENV["COVERAGE"] = 'yes'
62
- Rake::Task[:spec].invoke
63
- end
64
- CLOBBER.include( 'coverage' )
65
-
66
-
67
- # Use the fivefish formatter for docs generated from development checkout
68
- if File.directory?( '.hg' )
69
- require 'rdoc/task'
70
-
71
- Rake::Task[ 'docs' ].clear
72
- RDoc::Task.new( 'docs' ) do |rdoc|
73
-
74
- rdoc.markup = 'markdown'
75
- rdoc.main = "README.md"
76
- rdoc.rdoc_files.include( "*.md", "ChangeLog", "lib/**/*.rb" )
77
-
78
- rdoc.generator = :fivefish
79
- rdoc.title = 'sequel-inline_schema'
80
- rdoc.rdoc_dir = 'doc'
81
- end
5
+ Rake::DevEiate.setup( 'sequel-inline_schema' ) do |project|
6
+ project.publish_to = 'deveiate:/usr/local/www/public/code'
7
+ project.required_ruby_version = '~> 2.4'
82
8
  end
83
9
 
84
- task :gemspec => GEMSPEC
85
- file GEMSPEC => [ __FILE__, 'Manifest.txt' ]
86
- task GEMSPEC do |task|
87
- spec = $hoespec.spec
88
- spec.files.delete( '.gemtest' )
89
- spec.signing_key = nil
90
- spec.cert_chain = ['certs/ged.pem']
91
- spec.version = "#{spec.version.bump}.0.pre#{Time.now.strftime("%Y%m%d%H%M%S")}"
92
- File.open( task.name, 'w' ) do |fh|
93
- fh.write( spec.to_ruby )
94
- end
95
- end
96
- CLOBBER.include( GEMSPEC.to_s )
97
-
98
- task :default => :gemspec
99
-
@@ -7,10 +7,10 @@ require 'sequel/plugins/inline_schema'
7
7
  module Sequel::InlineSchema
8
8
 
9
9
  # Package version
10
- VERSION = '0.0.1'
10
+ VERSION = '0.2.0'
11
11
 
12
12
  # Version control revision
13
- REVISION = %q$Revision: fe2f291518ce $
13
+ REVISION = %q$Revision$
14
14
 
15
15
  end # Sequel::InlineSchema
16
16
 
@@ -409,7 +409,12 @@ module Sequel::Plugins::InlineMigrations
409
409
  migrations = self.all_migrating_model_classes.
410
410
  collect( &:migrations ).
411
411
  compact.
412
- inject {|all, hash| all.merge(hash) }
412
+ inject do |all, hash|
413
+ all.merge( hash ) do |key, old, new|
414
+ # rely on the fact that `up` is user defined even for a change block
415
+ fail "found duplicate `names` for migrations at #{old.up.source_location[0]} and #{new.up.source_location[0]}"
416
+ end
417
+ end
413
418
 
414
419
  return migrations.values.sort_by {|m| [m.name, m.model_class.name] }
415
420
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sequel-inline_schema
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Granger
@@ -10,32 +10,31 @@ bindir: bin
10
10
  cert_chain:
11
11
  - |
12
12
  -----BEGIN CERTIFICATE-----
13
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- TH5UHsOtUU7k9TYARt/TgYZKuaoAMZZd5qyVqhF1vV+7/Qzmp89NGflXf2xYP26a
21
- 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
- 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
- +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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
35
+ XrxOxp8o0uOkU7FdLSGsyqJ2LzsR4obN
37
36
  -----END CERTIFICATE-----
38
- date: 2018-07-10 00:00:00.000000000 Z
37
+ date: 2020-01-19 00:00:00.000000000 Z
39
38
  dependencies:
40
39
  - !ruby/object:Gem::Dependency
41
40
  name: sequel
@@ -52,47 +51,33 @@ dependencies:
52
51
  - !ruby/object:Gem::Version
53
52
  version: '5.0'
54
53
  - !ruby/object:Gem::Dependency
55
- name: hoe-mercurial
54
+ name: pg
56
55
  requirement: !ruby/object:Gem::Requirement
57
56
  requirements:
58
57
  - - "~>"
59
58
  - !ruby/object:Gem::Version
60
- version: '1.4'
59
+ version: '1.2'
61
60
  type: :development
62
61
  prerelease: false
63
62
  version_requirements: !ruby/object:Gem::Requirement
64
63
  requirements:
65
64
  - - "~>"
66
65
  - !ruby/object:Gem::Version
67
- version: '1.4'
66
+ version: '1.2'
68
67
  - !ruby/object:Gem::Dependency
69
- name: hoe-deveiate
68
+ name: rake-deveiate
70
69
  requirement: !ruby/object:Gem::Requirement
71
70
  requirements:
72
71
  - - "~>"
73
72
  - !ruby/object:Gem::Version
74
- version: '0.10'
73
+ version: '0.5'
75
74
  type: :development
76
75
  prerelease: false
77
76
  version_requirements: !ruby/object:Gem::Requirement
78
77
  requirements:
79
78
  - - "~>"
80
79
  - !ruby/object:Gem::Version
81
- version: '0.10'
82
- - !ruby/object:Gem::Dependency
83
- name: hoe-highline
84
- requirement: !ruby/object:Gem::Requirement
85
- requirements:
86
- - - "~>"
87
- - !ruby/object:Gem::Version
88
- version: '0.2'
89
- type: :development
90
- prerelease: false
91
- version_requirements: !ruby/object:Gem::Requirement
92
- requirements:
93
- - - "~>"
94
- - !ruby/object:Gem::Version
95
- version: '0.2'
80
+ version: '0.5'
96
81
  - !ruby/object:Gem::Dependency
97
82
  name: simplecov
98
83
  requirement: !ruby/object:Gem::Requirement
@@ -121,64 +106,20 @@ dependencies:
121
106
  - - "~>"
122
107
  - !ruby/object:Gem::Version
123
108
  version: '0.3'
124
- - !ruby/object:Gem::Dependency
125
- name: rdoc
126
- requirement: !ruby/object:Gem::Requirement
127
- requirements:
128
- - - "~>"
129
- - !ruby/object:Gem::Version
130
- version: '4.0'
131
- type: :development
132
- prerelease: false
133
- version_requirements: !ruby/object:Gem::Requirement
134
- requirements:
135
- - - "~>"
136
- - !ruby/object:Gem::Version
137
- version: '4.0'
138
- - !ruby/object:Gem::Dependency
139
- name: hoe
140
- requirement: !ruby/object:Gem::Requirement
141
- requirements:
142
- - - "~>"
143
- - !ruby/object:Gem::Version
144
- version: '3.16'
145
- type: :development
146
- prerelease: false
147
- version_requirements: !ruby/object:Gem::Requirement
148
- requirements:
149
- - - "~>"
150
- - !ruby/object:Gem::Version
151
- version: '3.16'
152
109
  description: |-
153
110
  This is a set of plugins for Sequel for declaring a model's table schema and
154
- any migrations in the class itself (similar to the legacy `schema` plugin).
155
-
156
- It has only really been tested with PostgreSQL, but patches that make it more generic are welcomed.
157
-
158
- The two plugins are:
159
-
160
- * Sequel::Plugins::InlineSchema
161
- * Sequel::Plugins::InlineMigrations
162
-
163
- Examples and usage documentation are included there.
111
+ any migrations in the class itself (similar to the legacy <code>schema</code> plugin).
164
112
  email:
165
- - ged@FaerieMUD.org
113
+ - ged@faeriemud.org
166
114
  executables: []
167
115
  extensions: []
168
- extra_rdoc_files:
169
- - History.md
170
- - LICENSE.txt
171
- - Manifest.txt
172
- - README.md
116
+ extra_rdoc_files: []
173
117
  files:
174
118
  - ".document"
175
- - ".editorconfig"
176
119
  - ".rdoc_options"
177
120
  - ".simplecov"
178
- - ChangeLog
179
121
  - History.md
180
122
  - LICENSE.txt
181
- - Manifest.txt
182
123
  - README.md
183
124
  - Rakefile
184
125
  - lib/sequel/inline_schema.rb
@@ -187,31 +128,29 @@ files:
187
128
  - spec/sequel/plugins/inline_migrations_spec.rb
188
129
  - spec/sequel/plugins/inline_schema_spec.rb
189
130
  - spec/spec_helper.rb
190
- homepage: http://bitbucket.org/ged/sequel-inline_schema
131
+ homepage: https://hg.sr.ht/~ged/Sequel-InlineSchema
191
132
  licenses:
192
133
  - BSD-3-Clause
193
134
  metadata: {}
194
135
  post_install_message:
195
- rdoc_options:
196
- - "--main"
197
- - README.md
136
+ rdoc_options: []
198
137
  require_paths:
199
138
  - lib
200
139
  required_ruby_version: !ruby/object:Gem::Requirement
201
140
  requirements:
202
- - - ">="
141
+ - - "~>"
203
142
  - !ruby/object:Gem::Version
204
- version: 2.4.0
143
+ version: '2.4'
205
144
  required_rubygems_version: !ruby/object:Gem::Requirement
206
145
  requirements:
207
146
  - - ">="
208
147
  - !ruby/object:Gem::Version
209
148
  version: '0'
210
149
  requirements: []
211
- rubyforge_project:
212
- rubygems_version: 2.7.7
150
+ rubygems_version: 3.1.2
213
151
  signing_key:
214
152
  specification_version: 4
215
153
  summary: This is a set of plugins for Sequel for declaring a model's table schema
216
- and any migrations in the class itself (similar to the legacy `schema` plugin)
154
+ and any migrations in the class itself (similar to the legacy <code>schema</code>
155
+ plugin).
217
156
  test_files: []
metadata.gz.sig CHANGED
Binary file
@@ -1,14 +0,0 @@
1
- # http://EditorConfig.org
2
-
3
- # top-most EditorConfig file
4
- root = true
5
-
6
- # Unix-style newlines with a newline ending every file
7
- [*]
8
- end_of_line = lf
9
- insert_final_newline = true
10
-
11
- # Tab indentation
12
- [**.*]
13
- indent_style = tab
14
-
data/ChangeLog DELETED
@@ -1,48 +0,0 @@
1
- 2018-07-10 Michael Granger <ged@FaerieMUD.org>
2
-
3
- * .hgtags:
4
- Added tag v0.0.1 for changeset 5f6554f4bd40
5
- [8fe6f86ec7c7] [tip]
6
-
7
- * .hgsigs:
8
- Added signature for changeset f94a7b19d4de
9
- [5f6554f4bd40] [v0.0.1]
10
-
11
- * .hgignore, History.md, README.md, Rakefile, sequel-
12
- inline_schema.gemspec:
13
- Prep for first release.
14
- [f94a7b19d4de]
15
-
16
- 2017-09-28 Michael Granger <ged@FaerieMUD.org>
17
-
18
- * lib/sequel/plugins/inline_migrations.rb,
19
- lib/sequel/plugins/inline_schema.rb:
20
- Fix documentation formatting, add some more details about migrations
21
- [f7de01d27012] [github/master]
22
-
23
- 2017-09-27 Michael Granger <ged@FaerieMUD.org>
24
-
25
- * README.md:
26
- Fix README links.
27
- [81085384e8eb]
28
-
29
- * lib/sequel/plugins/inline_schema.rb,
30
- spec/sequel/plugins/inline_schema_spec.rb:
31
- More documentation updates, add drop_table hooks.
32
- [dc2231fc945a]
33
-
34
- * .hgignore, README.md, lib/sequel/plugins/inline_migrations.rb,
35
- lib/sequel/plugins/inline_schema.rb:
36
- Documentation fixes/additions.
37
- [4783fffe2ab9]
38
-
39
- * .document, .editorconfig, .gems, .hgignore, .pryrc, .rdoc_options,
40
- .ruby-gemset, .ruby-version, .simplecov, Gemfile, History.md,
41
- LICENSE.txt, Manifest.txt, README.md, Rakefile, certs/ged.pem,
42
- lib/sequel/inline_schema.rb,
43
- lib/sequel/plugins/inline_migrations.rb,
44
- lib/sequel/plugins/inline_schema.rb, sequel-inline_schema.gemspec,
45
- spec/sequel/plugins/inline_migrations_spec.rb,
46
- spec/sequel/plugins/inline_schema_spec.rb, spec/spec_helper.rb:
47
- Initial implementation
48
- [fe2f291518ce]
@@ -1,16 +0,0 @@
1
- .document
2
- .editorconfig
3
- .rdoc_options
4
- .simplecov
5
- ChangeLog
6
- History.md
7
- LICENSE.txt
8
- Manifest.txt
9
- README.md
10
- Rakefile
11
- lib/sequel/inline_schema.rb
12
- lib/sequel/plugins/inline_migrations.rb
13
- lib/sequel/plugins/inline_schema.rb
14
- spec/sequel/plugins/inline_migrations_spec.rb
15
- spec/sequel/plugins/inline_schema_spec.rb
16
- spec/spec_helper.rb