attr_immutable 1.0.0 → 1.0.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.
@@ -7,9 +7,9 @@ Gem::Specification.new do |s|
7
7
  s.version = AttrImmutable::VERSION
8
8
  s.authors = ["Mark Menard"]
9
9
  s.email = ["mark@mjm.net"]
10
- s.homepage = ""
10
+ s.homepage = "https://github.com/MarkMenard/attr_immutable"
11
11
  s.summary = %q{Add attr_immutable to create immutable protected attributes on your Ruby classes.}
12
- s.description = %q{AttrImmutable add the attr_immutable class method to create immutable properties on Ruby classes. The attribute are only accessible using the accessor/mutator pair by hiding the attribute value using a closure. (ie. the immutable attribute is not stored in an instance variable and therefore can't accessed in any other way.)}
12
+ s.description = %q{AttrImmutable add the attr_immutable class method to create immutable properties on Ruby classes. The attribute are only accessible using the accessor/mutator pair by hiding the attribute value using a closure. (ie. the immutable attribute is not stored in an instance variable and therefore can't be accessed in any other way. No developer end runs.)}
13
13
 
14
14
  s.rubyforge_project = "attr_immutable"
15
15
 
@@ -1,3 +1,3 @@
1
1
  module AttrImmutable
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: attr_immutable
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -13,7 +13,7 @@ date: 2011-09-06 00:00:00.000000000Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rspec
16
- requirement: &2161552580 !ruby/object:Gem::Requirement
16
+ requirement: &2153295800 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ~>
@@ -21,12 +21,12 @@ dependencies:
21
21
  version: '2.6'
22
22
  type: :development
23
23
  prerelease: false
24
- version_requirements: *2161552580
24
+ version_requirements: *2153295800
25
25
  description: AttrImmutable add the attr_immutable class method to create immutable
26
26
  properties on Ruby classes. The attribute are only accessible using the accessor/mutator
27
27
  pair by hiding the attribute value using a closure. (ie. the immutable attribute
28
- is not stored in an instance variable and therefore can't accessed in any other
29
- way.)
28
+ is not stored in an instance variable and therefore can't be accessed in any other
29
+ way. No developer end runs.)
30
30
  email:
31
31
  - mark@mjm.net
32
32
  executables: []
@@ -41,7 +41,7 @@ files:
41
41
  - lib/attr_immutable.rb
42
42
  - lib/attr_immutable/version.rb
43
43
  - spec/attr_immuable_spec.rb
44
- homepage: ''
44
+ homepage: https://github.com/MarkMenard/attr_immutable
45
45
  licenses: []
46
46
  post_install_message:
47
47
  rdoc_options: []