immutable-struct 2.1.0 → 2.1.1
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 +4 -4
- data/immutable-struct.gemspec +2 -2
- data/lib/immutable-struct.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: af44014a283429f556ddd83301f23cf85b8ce988
|
|
4
|
+
data.tar.gz: f749729fb930b33ed6a6a48014e982a0253f9958
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a23377a3878c39a98af6bb91a5f46964344119732b6c7ba8df3eab2c20490a0ee3ed49caf2dda55194f073b48b8fd3dbf54823c6e085b01085bace42ced5ec5a
|
|
7
|
+
data.tar.gz: 130d852c29953497d09d9fe5a6248bdd11d56cdafe13a266417ad8e76d435b775a39e466bfcc2880f6a7952aeccf592c39eb5a1b1e60aab235955efb24c0b7a0
|
data/immutable-struct.gemspec
CHANGED
|
@@ -7,10 +7,10 @@ Gem::Specification.new do |spec|
|
|
|
7
7
|
spec.name = "immutable-struct"
|
|
8
8
|
spec.version = ImmutableStruct::VERSION
|
|
9
9
|
spec.authors = ["Stitch Fix Engineering"]
|
|
10
|
-
spec.email = ["
|
|
10
|
+
spec.email = ["opensource@stitchfix.com"]
|
|
11
11
|
spec.description = %q{Easily create value objects without the pain of Ruby's Struct (or its setters)}
|
|
12
12
|
spec.summary = %q{Easily create value objects without the pain of Ruby's Struct (or its setters)}
|
|
13
|
-
spec.homepage = "
|
|
13
|
+
spec.homepage = "https://github.com/stitchfix/immutable-struct"
|
|
14
14
|
spec.license = "MIT"
|
|
15
15
|
|
|
16
16
|
spec.files = `git ls-files`.split($/)
|
data/lib/immutable-struct.rb
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
# will be evaluated as if it were inside a class definition, allowing you
|
|
7
7
|
# to add methods, include or extend modules, or do whatever else you want.
|
|
8
8
|
class ImmutableStruct
|
|
9
|
-
VERSION='2.1.
|
|
9
|
+
VERSION='2.1.1' #:nodoc:
|
|
10
10
|
# Create a new class with the given read-only attributes.
|
|
11
11
|
#
|
|
12
12
|
# attributes:: list of symbols or strings that can be used to create attributes.
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: immutable-struct
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.1.
|
|
4
|
+
version: 2.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Stitch Fix Engineering
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-05-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -55,7 +55,7 @@ dependencies:
|
|
|
55
55
|
description: Easily create value objects without the pain of Ruby's Struct (or its
|
|
56
56
|
setters)
|
|
57
57
|
email:
|
|
58
|
-
-
|
|
58
|
+
- opensource@stitchfix.com
|
|
59
59
|
executables: []
|
|
60
60
|
extensions: []
|
|
61
61
|
extra_rdoc_files: []
|
|
@@ -72,7 +72,7 @@ files:
|
|
|
72
72
|
- lib/immutable-struct.rb
|
|
73
73
|
- spec/immutable_struct_spec.rb
|
|
74
74
|
- spec/spec_helper.rb
|
|
75
|
-
homepage:
|
|
75
|
+
homepage: https://github.com/stitchfix/immutable-struct
|
|
76
76
|
licenses:
|
|
77
77
|
- MIT
|
|
78
78
|
metadata: {}
|
|
@@ -92,7 +92,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
92
92
|
version: '0'
|
|
93
93
|
requirements: []
|
|
94
94
|
rubyforge_project:
|
|
95
|
-
rubygems_version: 2.4.
|
|
95
|
+
rubygems_version: 2.4.1
|
|
96
96
|
signing_key:
|
|
97
97
|
specification_version: 4
|
|
98
98
|
summary: Easily create value objects without the pain of Ruby's Struct (or its setters)
|