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 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
@@ -16,13 +16,8 @@ end
16
16
 
17
17
  module Kyanite #:nodoc
18
18
 
19
- VERSION = '0.5.16'
20
-
21
- class << self
22
- attr_accessor :projectname
23
- attr_accessor :github_username
24
- end
25
-
19
+ VERSION = '0.5.17'
20
+
26
21
  end
27
22
 
28
23
 
@@ -0,0 +1,2 @@
1
+ # ruby encoding: utf-8
2
+ require 'kyanite/operation/hoe'
@@ -0,0 +1,12 @@
1
+ # ruby encoding: utf-8
2
+
3
+ require 'hoe'
4
+
5
+ module Kyanite #:nodoc
6
+
7
+ class << self
8
+ attr_accessor :projectname
9
+ attr_accessor :github_username
10
+ end
11
+
12
+ end
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.16
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