drumherum 0.1.6 → 0.1.7

Sign up to get free protection for your applications and to get access to all the features.
data/Manifest.txt CHANGED
@@ -12,5 +12,5 @@ lib/drumherum/rake.rb
12
12
  lib/drumherum/regexp.rb
13
13
  lib/drumherum/smart_init.rb
14
14
  lib/drumherum/unit_test.rb
15
- test/_start_all.rb
15
+
16
16
 
@@ -48,9 +48,9 @@ module Drumherum
48
48
  end
49
49
 
50
50
  # The main directory (as array).
51
- # main_dir = File.join(patharray)
52
- # lib_dir = File.join(patharray, 'lib')
53
- # test_dir = File.join(patharray, 'test')
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
@@ -1,7 +1,7 @@
1
1
 
2
2
  module Drumherum
3
3
 
4
- VERSION = '0.1.6' # Drumherum-Version
4
+ VERSION = '0.1.7' # Drumherum-Version
5
5
 
6
6
 
7
7
  # puts "VERSION=#{VERSION}"
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.6
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
-