mighty_struct 0.1.4 → 0.1.5

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: f8d7b9936e89b506c81ae023b4f503b838670c6a
4
- data.tar.gz: d377473551801d74b6aeafa3a2b008c77690c756
3
+ metadata.gz: abd6b402fa2a8f25232163bb9aa327611d4a0051
4
+ data.tar.gz: d571e84a5c3fc9a35d84c691b536b296f90cf852
5
5
  SHA512:
6
- metadata.gz: 894c82f523a88a02172d576649c41282c7620fde4e57a91b0011139c8d28e9ddd79ea7535b3a7c145fbaaa2f81f2ea853720471cca6a04e21c282e798a5960f2
7
- data.tar.gz: 8e5fe24e3cb830edacc15af24e7dd2e8859cd1dc8a4c2171c6d4e44e187a2b73b6b71e39ebe0f36d203bf092b2622e925a47f5fa76645960c808cfef7141a2c7
6
+ metadata.gz: 942baa545e3901d83bc6a2c1eda98c936325f5ea5a0ce2eae33e81eebfe1dcbf43320d56e2c423c74dbe8b315e79cdfd2564a5c8c86aafbb5c02639d221cb224
7
+ data.tar.gz: e4e0ad795fd4676e7035f04a7ca4644a1f83c1ae3f81f89170063c927cf957b0a5bbaf23e7f4b1553f7c0f45a02b940b2fba0457403fe61302c19fa09977cc06
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 Michael Sievers
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -1,3 +1,3 @@
1
1
  class MightyStruct
2
- VERSION = "0.1.4"
2
+ VERSION = "0.1.5"
3
3
  end
@@ -7,8 +7,9 @@ Gem::Specification.new do |spec|
7
7
  spec.name = "mighty_struct"
8
8
  spec.version = MightyStruct::VERSION
9
9
  spec.authors = ["Michael Sievers"]
10
- spec.summary = %q{A mighty struct which combines OpenStruct like method access with reasonable performance.}
10
+ spec.summary = %q{A mighty struct which wraps objects in order to provide deep method access to its properties.}
11
11
  spec.homepage = "https://github.com/msievers/mighty_struct"
12
+ spec.licenses = ["MIT"]
12
13
 
13
14
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
14
15
  spec.bindir = "exe"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mighty_struct
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Sievers
@@ -111,6 +111,7 @@ files:
111
111
  - ".rspec"
112
112
  - ".travis.yml"
113
113
  - Gemfile
114
+ - LICENSE.txt
114
115
  - README.md
115
116
  - Rakefile
116
117
  - benchmark/mighty_struct.rb
@@ -121,7 +122,8 @@ files:
121
122
  - lib/mighty_struct/version.rb
122
123
  - mighty_struct.gemspec
123
124
  homepage: https://github.com/msievers/mighty_struct
124
- licenses: []
125
+ licenses:
126
+ - MIT
125
127
  metadata: {}
126
128
  post_install_message:
127
129
  rdoc_options: []
@@ -142,6 +144,6 @@ rubyforge_project:
142
144
  rubygems_version: 2.4.7
143
145
  signing_key:
144
146
  specification_version: 4
145
- summary: A mighty struct which combines OpenStruct like method access with reasonable
146
- performance.
147
+ summary: A mighty struct which wraps objects in order to provide deep method access
148
+ to its properties.
147
149
  test_files: []