cmd_line_test 0.1.4 → 0.1.5
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/VERSION.yml +1 -1
- metadata +3 -4
- data/cmd_line_test.gemspec +0 -49
data/VERSION.yml
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cmd_line_test
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Fedor Kocherga
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2009-10-
|
|
12
|
+
date: 2009-10-09 00:00:00 +04:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies: []
|
|
15
15
|
|
|
@@ -29,7 +29,6 @@ files:
|
|
|
29
29
|
- README.rdoc
|
|
30
30
|
- Rakefile
|
|
31
31
|
- VERSION.yml
|
|
32
|
-
- cmd_line_test.gemspec
|
|
33
32
|
- lib/cmd_line_test.rb
|
|
34
33
|
- test/cli_app.rb
|
|
35
34
|
- test/shoulda/cli_test.rb
|
|
@@ -37,7 +36,7 @@ files:
|
|
|
37
36
|
- test/test_helper.rb
|
|
38
37
|
- test/unit/cli_test.rb
|
|
39
38
|
has_rdoc: true
|
|
40
|
-
homepage: http://github.com/fkocherga/
|
|
39
|
+
homepage: http://github.com/fkocherga/cmd_line_test
|
|
41
40
|
licenses: []
|
|
42
41
|
|
|
43
42
|
post_install_message:
|
data/cmd_line_test.gemspec
DELETED
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
|
2
|
-
|
|
3
|
-
Gem::Specification.new do |s|
|
|
4
|
-
s.name = %q{cmd_line_test}
|
|
5
|
-
s.version = "0.1.4"
|
|
6
|
-
|
|
7
|
-
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
8
|
-
s.authors = ["Fedor Kocherga"]
|
|
9
|
-
s.date = %q{2009-10-03}
|
|
10
|
-
s.description = %q{Macros specific to command line Ruby apps testing. Works with Test::Unit or Shoulda.
|
|
11
|
-
}
|
|
12
|
-
s.email = %q{fkocherga@gmail.com}
|
|
13
|
-
s.extra_rdoc_files = [
|
|
14
|
-
"README.rdoc"
|
|
15
|
-
]
|
|
16
|
-
s.files = [
|
|
17
|
-
".gitignore",
|
|
18
|
-
"MIT-LICENSE",
|
|
19
|
-
"README.rdoc",
|
|
20
|
-
"Rakefile",
|
|
21
|
-
"VERSION.yml",
|
|
22
|
-
"cmd_line_test.gemspec",
|
|
23
|
-
"lib/cmd_line_test.rb",
|
|
24
|
-
"test/cli_app.rb",
|
|
25
|
-
"test/shoulda/cli_test.rb",
|
|
26
|
-
"test/test.rb",
|
|
27
|
-
"test/test_helper.rb",
|
|
28
|
-
"test/unit/cli_test.rb"
|
|
29
|
-
]
|
|
30
|
-
s.homepage = %q{http://github.com/fkocherga/cml_line_test}
|
|
31
|
-
s.rdoc_options = ["--charset=UTF-8"]
|
|
32
|
-
s.require_paths = ["lib"]
|
|
33
|
-
s.rubygems_version = %q{1.3.5}
|
|
34
|
-
s.summary = %q{Extends Shoulda or Test::Unit with macros for testing command line apps.}
|
|
35
|
-
s.test_files = [
|
|
36
|
-
"test/shoulda/cli_test.rb",
|
|
37
|
-
"test/unit/cli_test.rb"
|
|
38
|
-
]
|
|
39
|
-
|
|
40
|
-
if s.respond_to? :specification_version then
|
|
41
|
-
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
42
|
-
s.specification_version = 3
|
|
43
|
-
|
|
44
|
-
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
45
|
-
else
|
|
46
|
-
end
|
|
47
|
-
else
|
|
48
|
-
end
|
|
49
|
-
end
|