afurmanov-clicase 0.1.7 → 0.1.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. data/README.rdoc +4 -3
  2. data/Rakefile +1 -1
  3. data/VERSION.yml +1 -1
  4. data/clicase.gemspec +2 -2
  5. metadata +2 -2
data/README.rdoc CHANGED
@@ -1,4 +1,4 @@
1
- = CliCase - Gem extending Shoulda or Test::Unit with macros for command line apps testing
1
+ = CliCase - Gem extending Shoulda or Test::Unit with macros for testing command line apps
2
2
 
3
3
  = Basic Usage
4
4
 
@@ -20,7 +20,8 @@ Assuming you decided to write a new command line utility CliApp and you know tha
20
20
  end
21
21
 
22
22
  = Shortcumings
23
+ Only tested on the 1.8.7 Ruby implementations with Shoulda 2.10.1
23
24
 
24
- * Only tested on the 1.8.7 Ruby implementations with Shoulda 2.10.1
25
-
25
+ = License
26
+ CliCase is released under the MIT license.
26
27
 
data/Rakefile CHANGED
@@ -13,7 +13,7 @@ begin
13
13
  gemspec = Gem::Specification.new do |s|
14
14
 
15
15
  s.name = "clicase"
16
- s.summary = "Macros for testing Ruby command line apps with Shoulda or Test::Unit."
16
+ s.summary = "Gem extending Shoulda or Test::Unit with macros for testing command line apps."
17
17
  s.email = "afurmanov@rushpost.com"
18
18
  s.homepage = "http://github.com/afurmanov/clicase"
19
19
  s.description = <<END
data/VERSION.yml CHANGED
@@ -1,4 +1,4 @@
1
1
  ---
2
2
  :minor: 1
3
- :patch: 7
3
+ :patch: 8
4
4
  :major: 0
data/clicase.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{clicase}
5
- s.version = "0.1.7"
5
+ s.version = "0.1.8"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Aleksandr Furmanov"]
@@ -33,7 +33,7 @@ to specify command line entry point, run command line and assert execution resul
33
33
  s.rdoc_options = ["--charset=UTF-8"]
34
34
  s.require_paths = ["lib"]
35
35
  s.rubygems_version = %q{1.3.2}
36
- s.summary = %q{Macros for testing Ruby command line apps with Shoulda or Test::Unit.}
36
+ s.summary = %q{Gem extending Shoulda or Test::Unit with macros for testing command line apps.}
37
37
  s.test_files = [
38
38
  "test/shoulda/cli_test.rb",
39
39
  "test/unit/cli_test.rb"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: afurmanov-clicase
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.7
4
+ version: 0.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aleksandr Furmanov
@@ -60,7 +60,7 @@ rubyforge_project:
60
60
  rubygems_version: 1.3.5
61
61
  signing_key:
62
62
  specification_version: 3
63
- summary: Macros for testing Ruby command line apps with Shoulda or Test::Unit.
63
+ summary: Gem extending Shoulda or Test::Unit with macros for testing command line apps.
64
64
  test_files:
65
65
  - test/shoulda/cli_test.rb
66
66
  - test/unit/cli_test.rb