sequel_bitemporal 0.6.15 → 0.6.16
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.
- checksums.yaml +7 -0
- data/.ruby-version +1 -0
- data/LICENSE +22 -0
- data/README.md +1 -1
- data/sequel_bitemporal.gemspec +2 -1
- metadata +18 -29
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: f1c4e0550d4e85ddec581ad5c9289081ad2c7a5e
|
|
4
|
+
data.tar.gz: 278691b26ac3cf9385d6e2431a3f4d2ff15e38ce
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 4a7aa095e7f26e392151725df64983c359862784ac2e664d57cb59d6a0815cc1a3e1f0188c52e69b36fb87d69cc2e2cb9b050e023c9b1a1b2e2f6b1dd5f99f1d
|
|
7
|
+
data.tar.gz: 1ed9559ecec830a2d07fee118038b09ac9a3d54fe31a21a693907e1178361d3b41f0a57b162198588e24ea57373bcc13af270f1892dcef0f1bc1809f9b00fb64
|
data/.ruby-version
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
2.0.0-p247
|
data/LICENSE
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
sequel_bitemporal is Copyright © 2013 TalentBox SA
|
|
2
|
+
|
|
3
|
+
MIT License
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
6
|
+
a copy of this software and associated documentation files (the
|
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
11
|
+
the following conditions:
|
|
12
|
+
|
|
13
|
+
The above copyright notice and this permission notice shall be
|
|
14
|
+
included in all copies or substantial portions of the Software.
|
|
15
|
+
|
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
CHANGED
|
@@ -44,4 +44,4 @@ Build Status
|
|
|
44
44
|
License
|
|
45
45
|
-------
|
|
46
46
|
|
|
47
|
-
sequel_bitemporal is Copyright ©
|
|
47
|
+
sequel_bitemporal is Copyright © 2013 TalentBox SA. It is free software, and may be redistributed under the terms specified in the LICENSE file.
|
data/sequel_bitemporal.gemspec
CHANGED
|
@@ -3,12 +3,13 @@ $:.push File.expand_path("../lib", __FILE__)
|
|
|
3
3
|
|
|
4
4
|
Gem::Specification.new do |s|
|
|
5
5
|
s.name = "sequel_bitemporal"
|
|
6
|
-
s.version = "0.6.
|
|
6
|
+
s.version = "0.6.16"
|
|
7
7
|
s.authors = ["Joseph HALTER", "Jonathan TRON"]
|
|
8
8
|
s.email = ["joseph.halter@thetalentbox.com", "jonathan.tron@thetalentbox.com"]
|
|
9
9
|
s.homepage = "https://github.com/TalentBox/sequel_bitemporal"
|
|
10
10
|
s.summary = "Bitemporal versioning for sequel."
|
|
11
11
|
s.description = "Bitemporal versioning for sequel, fully tested."
|
|
12
|
+
s.license = "MIT"
|
|
12
13
|
|
|
13
14
|
s.files = `git ls-files`.split("\n")
|
|
14
15
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
metadata
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sequel_bitemporal
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
5
|
-
prerelease:
|
|
4
|
+
version: 0.6.16
|
|
6
5
|
platform: ruby
|
|
7
6
|
authors:
|
|
8
7
|
- Joseph HALTER
|
|
@@ -15,7 +14,6 @@ dependencies:
|
|
|
15
14
|
- !ruby/object:Gem::Dependency
|
|
16
15
|
name: sequel
|
|
17
16
|
requirement: !ruby/object:Gem::Requirement
|
|
18
|
-
none: false
|
|
19
17
|
requirements:
|
|
20
18
|
- - ~>
|
|
21
19
|
- !ruby/object:Gem::Version
|
|
@@ -23,7 +21,6 @@ dependencies:
|
|
|
23
21
|
type: :runtime
|
|
24
22
|
prerelease: false
|
|
25
23
|
version_requirements: !ruby/object:Gem::Requirement
|
|
26
|
-
none: false
|
|
27
24
|
requirements:
|
|
28
25
|
- - ~>
|
|
29
26
|
- !ruby/object:Gem::Version
|
|
@@ -31,39 +28,34 @@ dependencies:
|
|
|
31
28
|
- !ruby/object:Gem::Dependency
|
|
32
29
|
name: sqlite3
|
|
33
30
|
requirement: !ruby/object:Gem::Requirement
|
|
34
|
-
none: false
|
|
35
31
|
requirements:
|
|
36
|
-
- -
|
|
32
|
+
- - '>='
|
|
37
33
|
- !ruby/object:Gem::Version
|
|
38
34
|
version: '0'
|
|
39
35
|
type: :development
|
|
40
36
|
prerelease: false
|
|
41
37
|
version_requirements: !ruby/object:Gem::Requirement
|
|
42
|
-
none: false
|
|
43
38
|
requirements:
|
|
44
|
-
- -
|
|
39
|
+
- - '>='
|
|
45
40
|
- !ruby/object:Gem::Version
|
|
46
41
|
version: '0'
|
|
47
42
|
- !ruby/object:Gem::Dependency
|
|
48
43
|
name: pg
|
|
49
44
|
requirement: !ruby/object:Gem::Requirement
|
|
50
|
-
none: false
|
|
51
45
|
requirements:
|
|
52
|
-
- -
|
|
46
|
+
- - '>='
|
|
53
47
|
- !ruby/object:Gem::Version
|
|
54
48
|
version: '0'
|
|
55
49
|
type: :development
|
|
56
50
|
prerelease: false
|
|
57
51
|
version_requirements: !ruby/object:Gem::Requirement
|
|
58
|
-
none: false
|
|
59
52
|
requirements:
|
|
60
|
-
- -
|
|
53
|
+
- - '>='
|
|
61
54
|
- !ruby/object:Gem::Version
|
|
62
55
|
version: '0'
|
|
63
56
|
- !ruby/object:Gem::Dependency
|
|
64
57
|
name: rspec
|
|
65
58
|
requirement: !ruby/object:Gem::Requirement
|
|
66
|
-
none: false
|
|
67
59
|
requirements:
|
|
68
60
|
- - ~>
|
|
69
61
|
- !ruby/object:Gem::Version
|
|
@@ -71,7 +63,6 @@ dependencies:
|
|
|
71
63
|
type: :development
|
|
72
64
|
prerelease: false
|
|
73
65
|
version_requirements: !ruby/object:Gem::Requirement
|
|
74
|
-
none: false
|
|
75
66
|
requirements:
|
|
76
67
|
- - ~>
|
|
77
68
|
- !ruby/object:Gem::Version
|
|
@@ -79,33 +70,29 @@ dependencies:
|
|
|
79
70
|
- !ruby/object:Gem::Dependency
|
|
80
71
|
name: timecop
|
|
81
72
|
requirement: !ruby/object:Gem::Requirement
|
|
82
|
-
none: false
|
|
83
73
|
requirements:
|
|
84
|
-
- -
|
|
74
|
+
- - '>='
|
|
85
75
|
- !ruby/object:Gem::Version
|
|
86
76
|
version: '0'
|
|
87
77
|
type: :development
|
|
88
78
|
prerelease: false
|
|
89
79
|
version_requirements: !ruby/object:Gem::Requirement
|
|
90
|
-
none: false
|
|
91
80
|
requirements:
|
|
92
|
-
- -
|
|
81
|
+
- - '>='
|
|
93
82
|
- !ruby/object:Gem::Version
|
|
94
83
|
version: '0'
|
|
95
84
|
- !ruby/object:Gem::Dependency
|
|
96
85
|
name: rake
|
|
97
86
|
requirement: !ruby/object:Gem::Requirement
|
|
98
|
-
none: false
|
|
99
87
|
requirements:
|
|
100
|
-
- -
|
|
88
|
+
- - '>='
|
|
101
89
|
- !ruby/object:Gem::Version
|
|
102
90
|
version: '0'
|
|
103
91
|
type: :development
|
|
104
92
|
prerelease: false
|
|
105
93
|
version_requirements: !ruby/object:Gem::Requirement
|
|
106
|
-
none: false
|
|
107
94
|
requirements:
|
|
108
|
-
- -
|
|
95
|
+
- - '>='
|
|
109
96
|
- !ruby/object:Gem::Version
|
|
110
97
|
version: '0'
|
|
111
98
|
description: Bitemporal versioning for sequel, fully tested.
|
|
@@ -117,8 +104,10 @@ extensions: []
|
|
|
117
104
|
extra_rdoc_files: []
|
|
118
105
|
files:
|
|
119
106
|
- .gitignore
|
|
107
|
+
- .ruby-version
|
|
120
108
|
- .travis.yml
|
|
121
109
|
- Gemfile
|
|
110
|
+
- LICENSE
|
|
122
111
|
- README.md
|
|
123
112
|
- Rakefile
|
|
124
113
|
- lib/sequel/plugins/bitemporal.rb
|
|
@@ -133,28 +122,28 @@ files:
|
|
|
133
122
|
- spec/support/bitemporal_matchers.rb
|
|
134
123
|
- spec/support/db.rb
|
|
135
124
|
homepage: https://github.com/TalentBox/sequel_bitemporal
|
|
136
|
-
licenses:
|
|
125
|
+
licenses:
|
|
126
|
+
- MIT
|
|
127
|
+
metadata: {}
|
|
137
128
|
post_install_message:
|
|
138
129
|
rdoc_options: []
|
|
139
130
|
require_paths:
|
|
140
131
|
- lib
|
|
141
132
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
142
|
-
none: false
|
|
143
133
|
requirements:
|
|
144
|
-
- -
|
|
134
|
+
- - '>='
|
|
145
135
|
- !ruby/object:Gem::Version
|
|
146
136
|
version: '0'
|
|
147
137
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
148
|
-
none: false
|
|
149
138
|
requirements:
|
|
150
|
-
- -
|
|
139
|
+
- - '>='
|
|
151
140
|
- !ruby/object:Gem::Version
|
|
152
141
|
version: '0'
|
|
153
142
|
requirements: []
|
|
154
143
|
rubyforge_project:
|
|
155
|
-
rubygems_version:
|
|
144
|
+
rubygems_version: 2.0.3
|
|
156
145
|
signing_key:
|
|
157
|
-
specification_version:
|
|
146
|
+
specification_version: 4
|
|
158
147
|
summary: Bitemporal versioning for sequel.
|
|
159
148
|
test_files:
|
|
160
149
|
- spec/bitemporal_date_spec.rb
|