check_http 0.0.2 → 0.0.3

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/README.md CHANGED
@@ -28,7 +28,7 @@ $ check_http http://www.github.com
28
28
  You can also stream urls into it:
29
29
 
30
30
  ```bash
31
- $ cat list_or_urls.txt | check_http
31
+ $ cat list_of_urls.txt | check_http
32
32
  ```
33
33
 
34
34
  ### Via the lib:
data/check_http.gemspec CHANGED
@@ -8,7 +8,7 @@ Gem::Specification.new do |gem|
8
8
  gem.version = CheckHTTP::VERSION
9
9
  gem.authors = ["Michael Gorsuch"]
10
10
  gem.email = ["michael.gorsuch@gmail.com"]
11
- gem.description = %q{a simple interface to gather curl stats on an HTTP resource}
11
+ gem.description = %q{a simple interface to gather curl stats against an HTTP resource}
12
12
  gem.summary = gem.description
13
13
  gem.homepage = "https://github.com/gorsuch/check_http"
14
14
 
@@ -1,3 +1,5 @@
1
+ $stdout.sync = true
2
+
1
3
  module CheckHTTP
2
4
  class CLI
3
5
  def perform(url)
@@ -1,3 +1,3 @@
1
1
  module CheckHTTP
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: check_http
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -43,7 +43,7 @@ dependencies:
43
43
  - - ! '>='
44
44
  - !ruby/object:Gem::Version
45
45
  version: '0'
46
- description: a simple interface to gather curl stats on an HTTP resource
46
+ description: a simple interface to gather curl stats against an HTTP resource
47
47
  email:
48
48
  - michael.gorsuch@gmail.com
49
49
  executables:
@@ -85,5 +85,5 @@ rubyforge_project:
85
85
  rubygems_version: 1.8.23
86
86
  signing_key:
87
87
  specification_version: 3
88
- summary: a simple interface to gather curl stats on an HTTP resource
88
+ summary: a simple interface to gather curl stats against an HTTP resource
89
89
  test_files: []