attr_array 1.0.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/MIT-LICENSE +20 -0
- data/lib/attr_array/version.rb +3 -3
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ed89baadc7dbb586f430d1f4fa80c6c622370723
|
4
|
+
data.tar.gz: 1396747ca969060827efb08093a24283aaeb5556
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d12a7d5a12b1b6c05e086d549055622813f52ce94acbfa0b46c8e185c4456ec324423dae2e11e1f17860bed7b9f74e536aa364ce1f3604a29d35e54cd73f1c87
|
7
|
+
data.tar.gz: 93f5c6ca6bdffaa05d624ca9106190a6fe5382c0a59c1385b9bc1b360afe1847e8ea979cf3ac7bb3adb96cb47fd205b9af640fed6045f82797104d43d04f9774
|
data/CHANGELOG.md
CHANGED
data/MIT-LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright 2017 Brightcommerce, Inc. All rights reserved.
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/lib/attr_array/version.rb
CHANGED
@@ -2,8 +2,8 @@ module AttrArray
|
|
2
2
|
module Version
|
3
3
|
Major = 1
|
4
4
|
Minor = 0
|
5
|
-
Revision =
|
6
|
-
Prerelease =
|
5
|
+
Revision = 1
|
6
|
+
Prerelease = nil
|
7
7
|
Compact = [Major, Minor, Revision, Prerelease].compact.join('.')
|
8
8
|
Summary = "AttrArray v#{Compact}"
|
9
9
|
Description = "A high performance ActiveRecord concern for Rails using the PostgreSQL array type."
|
@@ -11,6 +11,6 @@ module AttrArray
|
|
11
11
|
Email = "support@brightcommerce.com"
|
12
12
|
Homepage = "https://github.com/brightcommerce/attr_array"
|
13
13
|
Metadata = {'copyright' => 'Copyright 2017 Pocket Business, Co. All Rights Reserved.'}
|
14
|
-
License = "
|
14
|
+
License = "MIT"
|
15
15
|
end
|
16
16
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: attr_array
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jurgen Jocubeit
|
@@ -46,6 +46,7 @@ extensions: []
|
|
46
46
|
extra_rdoc_files: []
|
47
47
|
files:
|
48
48
|
- CHANGELOG.md
|
49
|
+
- MIT-LICENSE
|
49
50
|
- README.md
|
50
51
|
- lib/attr_array.rb
|
51
52
|
- lib/attr_array/active_record.rb
|
@@ -53,7 +54,7 @@ files:
|
|
53
54
|
- lib/attr_array/version.rb
|
54
55
|
homepage: https://github.com/brightcommerce/attr_array
|
55
56
|
licenses:
|
56
|
-
-
|
57
|
+
- MIT
|
57
58
|
metadata:
|
58
59
|
copyright: Copyright 2017 Pocket Business, Co. All Rights Reserved.
|
59
60
|
post_install_message:
|
@@ -75,5 +76,5 @@ rubyforge_project:
|
|
75
76
|
rubygems_version: 2.6.11
|
76
77
|
signing_key:
|
77
78
|
specification_version: 4
|
78
|
-
summary: AttrArray v1.0.
|
79
|
+
summary: AttrArray v1.0.1
|
79
80
|
test_files: []
|