Skip to content

Commit df5b280

Browse files
Merge pull request #3 from stitchfix/update-gemspec
Update gemspec :shipit:
2 parents 68ebb1e + 5a11dc6 commit df5b280

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

immutable-struct.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ Gem::Specification.new do |spec|
77
spec.name = "immutable-struct"
88
spec.version = ImmutableStruct::VERSION
99
spec.authors = ["Stitch Fix Engineering"]
10-
spec.email = ["jobs@stitchfix.com"]
10+
spec.email = ["opensource@stitchfix.com"]
1111
spec.description = %q{Easily create value objects without the pain of Ruby's Struct (or its setters)}
1212
spec.summary = %q{Easily create value objects without the pain of Ruby's Struct (or its setters)}
13-
spec.homepage = "http://technology.stitchfix.com"
13+
spec.homepage = "https://github.com/stitchfix/immutable-struct"
1414
spec.license = "MIT"
1515

1616
spec.files = `git ls-files`.split($/)

lib/immutable-struct.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# will be evaluated as if it were inside a class definition, allowing you
77
# to add methods, include or extend modules, or do whatever else you want.
88
class ImmutableStruct
9-
VERSION='2.1.0' #:nodoc:
9+
VERSION='2.1.1' #:nodoc:
1010
# Create a new class with the given read-only attributes.
1111
#
1212
# attributes:: list of symbols or strings that can be used to create attributes.

0 commit comments

Comments
 (0)