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 +4 -4
- checksums.yaml.gz.sig +2 -1
- data.tar.gz.sig +0 -0
- data/History.md +12 -0
- data/README.md +12 -8
- data/Rakefile +5 -95
- data/lib/sequel/inline_schema.rb +2 -2
- data/lib/sequel/plugins/inline_migrations.rb +6 -1
- metadata +41 -102
- metadata.gz.sig +0 -0
- data/.editorconfig +0 -14
- data/ChangeLog +0 -48
- data/Manifest.txt +0 -16
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '0586820d7a0cb25e530b431dee73a22dc205296a1cf15a945602f554ba9b3608'
|
4
|
+
data.tar.gz: 4646d1e2a538da9554864bb15db471b2eb9a2c6e920b8bdcbb462883d1724517
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 06013b428fbd164f5717a815391d65723033648ef301621b7d551ebcfb8e18c6c0c64a31678a0e36885f89ee3d7e3f3e717fbeab9722f2537dbfb9e26d16c37d
|
7
|
+
data.tar.gz: 92cf82542922e762fc32971cce5b16cdeebc6922940a019bc4b2e80ac8e01ae40a6cea8d2863d3da2fbd71761ee9022b5587fa6b3ac471a62a57cddf3f31129e
|
checksums.yaml.gz.sig
CHANGED
@@ -1 +1,2 @@
|
|
1
|
-
|
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
|
-
:
|
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][
|
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
|
47
|
+
$ rake setup
|
48
48
|
|
49
|
-
This task will install any missing dependencies,
|
50
|
-
|
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-
|
80
|
-
|
84
|
+
Copyright (c) 2017-2020, Michael Granger
|
81
85
|
|
82
86
|
|
83
|
-
[
|
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
|
-
|
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
|
-
|
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
|
-
|
data/lib/sequel/inline_schema.rb
CHANGED
@@ -7,10 +7,10 @@ require 'sequel/plugins/inline_schema'
|
|
7
7
|
module Sequel::InlineSchema
|
8
8
|
|
9
9
|
# Package version
|
10
|
-
VERSION = '0.0
|
10
|
+
VERSION = '0.2.0'
|
11
11
|
|
12
12
|
# Version control revision
|
13
|
-
REVISION = %q$Revision
|
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
|
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
|
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
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
+
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
OMKv6pWsoS81vw5KAGBmfX8nht/Py90DQrbRvakATGI=
|
13
|
+
MIIENDCCApygAwIBAgIBATANBgkqhkiG9w0BAQsFADAiMSAwHgYDVQQDDBdnZWQv
|
14
|
+
REM9RmFlcmllTVVEL0RDPW9yZzAeFw0xOTEwMDkwMDM2NTdaFw0yMDEwMDgwMDM2
|
15
|
+
NTdaMCIxIDAeBgNVBAMMF2dlZC9EQz1GYWVyaWVNVUQvREM9b3JnMIIBojANBgkq
|
16
|
+
hkiG9w0BAQEFAAOCAY8AMIIBigKCAYEAvyVhkRzvlEs0fe7145BYLfN6njX9ih5H
|
17
|
+
L60U0p0euIurpv84op9CNKF9tx+1WKwyQvQP7qFGuZxkSUuWcP/sFhDXL1lWUuIl
|
18
|
+
M4uHbGCRmOshDrF4dgnBeOvkHr1fIhPlJm5FO+Vew8tSQmlDsosxLUx+VB7DrVFO
|
19
|
+
5PU2AEbf04GGSrmqADGWXeaslaoRdb1fu/0M5qfPTRn5V39sWD9umuDAF9qqil/x
|
20
|
+
Sl6phTvgBrG8GExHbNZpLARd3xrBYLEFsX7RvBn2UPfgsrtvpdXjsHGfpT3IPN+B
|
21
|
+
vQ66lts4alKC69TE5cuKasWBm+16A4aEe3XdZBRNmtOu/g81gvwA7fkJHKllJuaI
|
22
|
+
dXzdHqq+zbGZVSQ7pRYHYomD0IiDe1DbIouFnPWmagaBnGHwXkDT2bKKP+s2v21m
|
23
|
+
ozilJg4aar2okb/RA6VS87o+d7g6LpDDMMQjH4G9OPnJENLdhu8KnPw/ivSVvQw7
|
24
|
+
N2I4L/ZOIe2DIVuYH7aLHfjZDQv/mNgpAgMBAAGjdTBzMAkGA1UdEwQCMAAwCwYD
|
25
|
+
VR0PBAQDAgSwMB0GA1UdDgQWBBRyjf55EbrHagiRLqt5YAd3yb8k4DAcBgNVHREE
|
26
|
+
FTATgRFnZWRARmFlcmllTVVELm9yZzAcBgNVHRIEFTATgRFnZWRARmFlcmllTVVE
|
27
|
+
Lm9yZzANBgkqhkiG9w0BAQsFAAOCAYEAFqsr6o0SvQRgjQVmhbQvExRnCMCoW1yb
|
28
|
+
FJiN7A5RA2Iy2E61OG1Ul5nGmaDmx/PNB/6JIbIV3B9Uq8aTZx4uOjK7r8vMl1/t
|
29
|
+
ZfY7r6HejJfXlcO2m6JDMbpdyEVv916LncBkzZRz6vnnNCx+31f15FKddxujpAFd
|
30
|
+
qpn3JRQY+oj7ZkoccL/IUiDpxQWeS3oOoz9qr2kVTp8R50InZimt79FqCl/1m66W
|
31
|
+
kdOuf+wM3DDx7Rt4IVNHrhGlyfMr7xjKW1Q3gll+pMN1DT6Ajx/t3JDSEg7BnnEW
|
32
|
+
r7AciSO6J4ApUdqyG+coLFlGdtgFTgRHv7ihbQtDI7Z/LV7A4Spn1j2PK3j0Omri
|
33
|
+
kSl1hPVigRytfgdVGiLXzvkkrkgj9EknCaj5UHbac7XvVBrljXj9hsnnqTANaKsg
|
34
|
+
jBZSA+N+xUTgUWpXjjwsLZjzJkhWATJWq+krNXcqpwXo6HsjmdUxoFMt63RBb+sI
|
35
|
+
XrxOxp8o0uOkU7FdLSGsyqJ2LzsR4obN
|
37
36
|
-----END CERTIFICATE-----
|
38
|
-
date:
|
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:
|
54
|
+
name: pg
|
56
55
|
requirement: !ruby/object:Gem::Requirement
|
57
56
|
requirements:
|
58
57
|
- - "~>"
|
59
58
|
- !ruby/object:Gem::Version
|
60
|
-
version: '1.
|
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.
|
66
|
+
version: '1.2'
|
68
67
|
- !ruby/object:Gem::Dependency
|
69
|
-
name:
|
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.
|
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.
|
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
|
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@
|
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:
|
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
|
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
|
-
|
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
|
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
|
data/.editorconfig
DELETED
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]
|
data/Manifest.txt
DELETED
@@ -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
|