Skip to content

Commit

Permalink
Merge pull request #3 from stitchfix/update-gemspec
Browse files Browse the repository at this point in the history
Update gemspec :shipit:
  • Loading branch information
simeonwillbanks committed May 21, 2015
2 parents 68ebb1e + 5a11dc6 commit df5b280
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions immutable-struct.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ Gem::Specification.new do |spec|
spec.name = "immutable-struct"
spec.version = ImmutableStruct::VERSION
spec.authors = ["Stitch Fix Engineering"]
spec.email = ["jobs@stitchfix.com"]
spec.email = ["opensource@stitchfix.com"]
spec.description = %q{Easily create value objects without the pain of Ruby's Struct (or its setters)}
spec.summary = %q{Easily create value objects without the pain of Ruby's Struct (or its setters)}
spec.homepage = "http://technology.stitchfix.com"
spec.homepage = "https://github.com/stitchfix/immutable-struct"
spec.license = "MIT"

spec.files = `git ls-files`.split($/)
Expand Down
2 changes: 1 addition & 1 deletion lib/immutable-struct.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# will be evaluated as if it were inside a class definition, allowing you
# to add methods, include or extend modules, or do whatever else you want.
class ImmutableStruct
VERSION='2.1.0' #:nodoc:
VERSION='2.1.1' #:nodoc:
# Create a new class with the given read-only attributes.
#
# attributes:: list of symbols or strings that can be used to create attributes.
Expand Down

0 comments on commit df5b280

Please sign in to comment.