kyanite 0.5.16 → 0.5.17
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.
- data/Manifest.txt +2 -0
- data/Rakefile.rb +1 -1
- data/lib/kyanite.rb +2 -7
- data/lib/kyanite/hoe.rb +2 -0
- data/lib/kyanite/operation/hoe.rb +12 -0
- metadata +3 -1
data/Manifest.txt
CHANGED
@@ -29,6 +29,7 @@ lib/kyanite/general/object.rb
|
|
29
29
|
lib/kyanite/general/true_false.rb
|
30
30
|
lib/kyanite/general/undoable.rb
|
31
31
|
lib/kyanite/hash.rb
|
32
|
+
lib/kyanite/hoe.rb
|
32
33
|
lib/kyanite/matrix2.rb
|
33
34
|
lib/kyanite/nil.rb
|
34
35
|
lib/kyanite/numeric.rb
|
@@ -37,6 +38,7 @@ lib/kyanite/numeric/integer.rb
|
|
37
38
|
lib/kyanite/numeric/numeric.rb
|
38
39
|
lib/kyanite/operation.rb
|
39
40
|
lib/kyanite/operation/call_tracker.rb
|
41
|
+
lib/kyanite/operation/hoe.rb
|
40
42
|
lib/kyanite/operation/rake.rb
|
41
43
|
lib/kyanite/operation/regexp.rb
|
42
44
|
lib/kyanite/operation/unit_test.rb
|
data/Rakefile.rb
CHANGED
@@ -3,10 +3,10 @@
|
|
3
3
|
projectname = File.dirname(__FILE__).split("/")[-1].strip # Name des Projekt-Stammverzeichnisses
|
4
4
|
require File.dirname(__FILE__) + "/lib/#{projectname}" # Hauptdatei der Library
|
5
5
|
|
6
|
+
require 'kyanite/hoe'
|
6
7
|
Kyanite.projectname = projectname
|
7
8
|
Kyanite.github_username = 'bklippstein'
|
8
9
|
|
9
|
-
require 'hoe'
|
10
10
|
require 'rdoc/task'
|
11
11
|
require 'kyanite/rake'
|
12
12
|
|
data/lib/kyanite.rb
CHANGED
data/lib/kyanite/hoe.rb
ADDED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: kyanite
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.17
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -133,6 +133,7 @@ files:
|
|
133
133
|
- lib/kyanite/general/true_false.rb
|
134
134
|
- lib/kyanite/general/undoable.rb
|
135
135
|
- lib/kyanite/hash.rb
|
136
|
+
- lib/kyanite/hoe.rb
|
136
137
|
- lib/kyanite/matrix2.rb
|
137
138
|
- lib/kyanite/nil.rb
|
138
139
|
- lib/kyanite/numeric.rb
|
@@ -141,6 +142,7 @@ files:
|
|
141
142
|
- lib/kyanite/numeric/numeric.rb
|
142
143
|
- lib/kyanite/operation.rb
|
143
144
|
- lib/kyanite/operation/call_tracker.rb
|
145
|
+
- lib/kyanite/operation/hoe.rb
|
144
146
|
- lib/kyanite/operation/rake.rb
|
145
147
|
- lib/kyanite/operation/regexp.rb
|
146
148
|
- lib/kyanite/operation/unit_test.rb
|