drumherum 0.1.6 → 0.1.7
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 +1 -1
- data/lib/drumherum/smart_init.rb +3 -3
- data/version.rb +1 -1
- metadata +1 -3
- data/.gemtest +0 -0
- data/test/_start_all.rb +0 -19
data/Manifest.txt
CHANGED
data/lib/drumherum/smart_init.rb
CHANGED
@@ -48,9 +48,9 @@ module Drumherum
|
|
48
48
|
end
|
49
49
|
|
50
50
|
# The main directory (as array).
|
51
|
-
# main_dir = File.join(
|
52
|
-
# lib_dir = File.join(
|
53
|
-
# test_dir = File.join(
|
51
|
+
# main_dir = File.join(Drumherum::directory_main)
|
52
|
+
# lib_dir = File.join(Drumherum::directory_main, 'lib')
|
53
|
+
# test_dir = File.join(Drumherum::directory_main, 'test')
|
54
54
|
#
|
55
55
|
def directory_main
|
56
56
|
@directory_main || []
|
data/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: drumherum
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.7
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -68,8 +68,6 @@ files:
|
|
68
68
|
- lib/drumherum/regexp.rb
|
69
69
|
- lib/drumherum/smart_init.rb
|
70
70
|
- lib/drumherum/unit_test.rb
|
71
|
-
- test/_start_all.rb
|
72
|
-
- .gemtest
|
73
71
|
homepage: http://bklippstein.github.com/drumherum/
|
74
72
|
licenses: []
|
75
73
|
post_install_message:
|
data/.gemtest
DELETED
File without changes
|
data/test/_start_all.rb
DELETED
@@ -1,19 +0,0 @@
|
|
1
|
-
# ruby encoding: utf-8
|
2
|
-
#!/usr/bin/env ruby
|
3
|
-
#
|
4
|
-
# Führt alle Tests aus
|
5
|
-
#
|
6
|
-
|
7
|
-
if $0 == __FILE__
|
8
|
-
require 'drumherum'
|
9
|
-
smart_init
|
10
|
-
end
|
11
|
-
|
12
|
-
|
13
|
-
# Test-Verzeichnis der Applikation
|
14
|
-
test_verzeichnis = File.expand_path(File.dirname(__FILE__) )
|
15
|
-
|
16
|
-
Dir["#{test_verzeichnis}/test_*.rb"].sort.each { |t| require t }
|
17
|
-
|
18
|
-
|
19
|
-
|