class_attribute 0.1.2 → 0.1.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8efc6f82448709188aabdf1c078f6914b21e8228
4
- data.tar.gz: 956f08cf4709a471d1e9121d200535d9857b9221
3
+ metadata.gz: 32cb6cedf26550592353164f0d128e393205891a
4
+ data.tar.gz: 8f20bdc950fe5ddaa0b63b57269110e45a77a6b1
5
5
  SHA512:
6
- metadata.gz: a42098a1f0b90a395653455af83bd9d29f8304e36db07bbeb41bf508ead048b8c77187f94dc1907b71bd877f47c69f3501fed447b41754ae41e8de7d6bde7b8c
7
- data.tar.gz: 03826a06c7bbf14c45df1db72b9d8244cd92c7c580ad77ce332dc79d4678854e022343104ae0962a7be1bb689ad01eac67a305b836a06288e524df3bbb203721
6
+ metadata.gz: 443d51e999ceaa91a7f83800a645458aa3bcdf1681a6ebded15d4dc2ba2cd61fd7063d7e94d5acf68b4563c086169addf0e05c9a3659ebb4b69a3c67602e39f1
7
+ data.tar.gz: 52bc8b39c746a250995647066477e41122f0fcaa1970a5488ab078e4d9cbbb29bdbd2677bf3bdeff6f3f4c4e5f2ed7e8f2237997d4b05fa4687d45414f00d4ab
@@ -1,3 +1,3 @@
1
1
  module ClassAttribute
2
- VERSION = '0.1.2'.freeze
2
+ VERSION = '0.1.3'.freeze
3
3
  end
@@ -1,3 +1,5 @@
1
+ require 'set'
2
+
1
3
  require_relative 'class_attribute/version'
2
4
 
3
5
  # Inheritable class level variable accessors.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: class_attribute
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tobias Sandelius
@@ -98,7 +98,6 @@ files:
98
98
  - lib/class_attribute.rb
99
99
  - lib/class_attribute/version.rb
100
100
  - test/test_helper.rb
101
- - test/unit/class_attribute/version_test.rb
102
101
  - test/unit/class_attribute_test.rb
103
102
  homepage: https://github.com/sandelius/class_attribute
104
103
  licenses:
@@ -126,5 +125,4 @@ specification_version: 4
126
125
  summary: Inheritable class level variable accessors
127
126
  test_files:
128
127
  - test/test_helper.rb
129
- - test/unit/class_attribute/version_test.rb
130
128
  - test/unit/class_attribute_test.rb
@@ -1,9 +0,0 @@
1
- require 'test_helper'
2
-
3
- describe ClassAttribute do
4
- describe 'VERSION' do
5
- it 'returns the version number' do
6
- ClassAttribute::VERSION.must_equal '0.1.1'
7
- end
8
- end
9
- end