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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 462ed282fbdbb842057a6f474bcf396a48e9786f
4
- data.tar.gz: 8004ca3ce52a3b345734a05dd05ab008210c4a4a
3
+ metadata.gz: ed89baadc7dbb586f430d1f4fa80c6c622370723
4
+ data.tar.gz: 1396747ca969060827efb08093a24283aaeb5556
5
5
  SHA512:
6
- metadata.gz: ea070b1c64a61317c9d302d0e36135e1c27160e269aff6df5187117dae87454fcfd328f8abb2124fab5bb36c911bba5b3cbd43e4837e25a9040e4e3a437f21e1
7
- data.tar.gz: 44920a292d02a2b760e93b305a35fbf17f8b7a49c327ebc85f3b660edaaf865929255357b31c5285382539c69dc769c51e3d2fc1a1012680dc065512c7c411e5
6
+ metadata.gz: d12a7d5a12b1b6c05e086d549055622813f52ce94acbfa0b46c8e185c4456ec324423dae2e11e1f17860bed7b9f74e536aa364ce1f3604a29d35e54cd73f1c87
7
+ data.tar.gz: 93f5c6ca6bdffaa05d624ca9106190a6fe5382c0a59c1385b9bc1b360afe1847e8ea979cf3ac7bb3adb96cb47fd205b9af640fed6045f82797104d43d04f9774
@@ -4,6 +4,10 @@
4
4
 
5
5
  (nothing)
6
6
 
7
+ ## 1.0.1
8
+
9
+ - Added MIT license.
10
+
7
11
  ## 1.0.0.0
8
12
 
9
13
  - Initial release.
@@ -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.
@@ -2,8 +2,8 @@ module AttrArray
2
2
  module Version
3
3
  Major = 1
4
4
  Minor = 0
5
- Revision = 0
6
- Prerelease = 0
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 = "UNLICENSED"
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.0.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
- - UNLICENSED
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.0.0
79
+ summary: AttrArray v1.0.1
79
80
  test_files: []