helper_classes 0.2.1 → 0.3.0
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/helper_classes.gemspec +1 -1
- data/lib/helper_classes.rb +7 -0
- data/lib/{helperclasses → helper_classes}/arraysym.rb +0 -0
- data/lib/{helperclasses → helper_classes}/dputs.rb +0 -0
- data/lib/{helperclasses → helper_classes}/hashaccessor.rb +0 -0
- data/lib/{helperclasses → helper_classes}/readconfig.rb +0 -0
- data/lib/{helperclasses → helper_classes}/service.rb +0 -0
- data/lib/{helperclasses → helper_classes}/system.rb +0 -0
- data/lib/{helperclasses → helper_classes}/timing.rb +0 -0
- data/test/test.rb +1 -1
- data/test/test_arraysym.rb +2 -2
- data/test/test_dputs.rb +5 -3
- data/test/test_hashaccessor.rb +1 -1
- data/test/test_readconfig.rb +1 -2
- data/test/test_system.rb +1 -3
- metadata +9 -9
- data/lib/helperclasses.rb +0 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b11ad595e3d4a3850c21d3ef3c29e8604b5c24b1
|
4
|
+
data.tar.gz: 79c63ec77b17bef460842261cef66e04f31db163
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 274840444e7c41610ba045041ab97c7ccd91ac1b772b78e6e338d521e9723f8fc5bb0e712c5d9c323f0b171cc7bec0a462bd1dc687c74fda5e32accf2edd3006
|
7
|
+
data.tar.gz: 5610cb8da1b6c4e41543737c00a69ad7de34485b8275f6865bd7f4f9a19ea6d30791b15aa9628a0cf26b04d868bdcb2e4031b139116c977e0ca983052d68bde0
|
data/helper_classes.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = 'helper_classes'
|
3
|
-
s.version = '0.
|
3
|
+
s.version = '0.3.0'
|
4
4
|
s.date = '2015-05-12'
|
5
5
|
s.summary = 'Hash._accessor Array.to_sym and DPuts'
|
6
6
|
s.description = 'Added accessors to Hash, to_sym to Array and a nice debugging-interface called DPuts'
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/test/test.rb
CHANGED
data/test/test_arraysym.rb
CHANGED
data/test/test_dputs.rb
CHANGED
@@ -1,12 +1,14 @@
|
|
1
|
-
require
|
1
|
+
require 'helper_classes/dputs'
|
2
2
|
|
3
3
|
DEBUG_LVL = 5
|
4
4
|
|
5
5
|
include HelperClasses
|
6
6
|
|
7
|
-
DPuts.dputs(5){
|
7
|
+
DPuts.dputs(5){ 'Hello'
|
8
|
+
}
|
8
9
|
|
9
10
|
include DPuts
|
10
11
|
|
11
|
-
dputs( 5 ){
|
12
|
+
dputs( 5 ){ 'Hello there'
|
13
|
+
}
|
12
14
|
|
data/test/test_hashaccessor.rb
CHANGED
data/test/test_readconfig.rb
CHANGED
data/test/test_system.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: helper_classes
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Linus Gasser
|
@@ -21,14 +21,14 @@ files:
|
|
21
21
|
- LICENSE
|
22
22
|
- README.md
|
23
23
|
- helper_classes.gemspec
|
24
|
-
- lib/
|
25
|
-
- lib/
|
26
|
-
- lib/
|
27
|
-
- lib/
|
28
|
-
- lib/
|
29
|
-
- lib/
|
30
|
-
- lib/
|
31
|
-
- lib/
|
24
|
+
- lib/helper_classes.rb
|
25
|
+
- lib/helper_classes/arraysym.rb
|
26
|
+
- lib/helper_classes/dputs.rb
|
27
|
+
- lib/helper_classes/hashaccessor.rb
|
28
|
+
- lib/helper_classes/readconfig.rb
|
29
|
+
- lib/helper_classes/service.rb
|
30
|
+
- lib/helper_classes/system.rb
|
31
|
+
- lib/helper_classes/timing.rb
|
32
32
|
- test/hc_service.rb
|
33
33
|
- test/test.rb
|
34
34
|
- test/test_arraysym.rb
|
data/lib/helperclasses.rb
DELETED