testme 0.4.65 → 0.4.75
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/.testme +1 -1
- data/bin/testme +3 -3
- metadata +3 -4
- data/test/app.test.rb +0 -0
data/.testme
CHANGED
data/bin/testme
CHANGED
@@ -4,13 +4,13 @@ if ARGV[0] == 'setup'
|
|
4
4
|
|
5
5
|
puts 'Creating bootstrap "/.testme"'
|
6
6
|
|
7
|
-
File.open(
|
7
|
+
File.open("./.testme", "w") {|f| f.write(
|
8
8
|
%q[require "testme"
|
9
9
|
|
10
10
|
TESTME_DIR = '/test/'
|
11
11
|
TESTME_FORMAT = :console
|
12
12
|
TESTME_COLORS = :default]
|
13
|
-
)}
|
13
|
+
)} unless File.exists?("./.testme")
|
14
14
|
|
15
15
|
puts 'Creating test folder "/test"'
|
16
16
|
|
@@ -20,7 +20,7 @@ TESTME_COLORS = :default]
|
|
20
20
|
|
21
21
|
File.open('./test/app.test.rb', 'w') {|f| f.write(
|
22
22
|
""
|
23
|
-
)}
|
23
|
+
)} unless File.exists?("./.test/app.test.rb")
|
24
24
|
|
25
25
|
puts 'Setup complete'
|
26
26
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: testme
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.75
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -70,7 +70,6 @@ files:
|
|
70
70
|
- spec/double_spec.rb
|
71
71
|
- spec/spec_helper.rb
|
72
72
|
- spec/testme_spec.rb
|
73
|
-
- test/app.test.rb
|
74
73
|
- testme.gemspec
|
75
74
|
homepage: http://github.com/danielshuey/testme
|
76
75
|
licenses: []
|
@@ -86,7 +85,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
86
85
|
version: '0'
|
87
86
|
segments:
|
88
87
|
- 0
|
89
|
-
hash:
|
88
|
+
hash: -477021267
|
90
89
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
91
90
|
none: false
|
92
91
|
requirements:
|
@@ -95,7 +94,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
95
94
|
version: '0'
|
96
95
|
segments:
|
97
96
|
- 0
|
98
|
-
hash:
|
97
|
+
hash: -477021267
|
99
98
|
requirements: []
|
100
99
|
rubyforge_project:
|
101
100
|
rubygems_version: 1.8.24
|
data/test/app.test.rb
DELETED
File without changes
|