http_resque 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
data/README.markdown CHANGED
@@ -77,6 +77,10 @@ Contribute
77
77
  ----------
78
78
  http_resque is pretty small and limited as is. If you need more CLI options or a different set of REST APIs, file an issue or send a pull request.
79
79
 
80
+ When editing this gem, to test your changes, you can load your local copy of the gem in your project by using this in your Gemfile:
81
+
82
+ gem "http_resque", :path => "~/path/to/http_resque"
83
+
80
84
  Related
81
85
  -------
82
86
  [remote_http_testing](https://github.com/ooyala/remote_http_testing) - a small library for making remote HTTP requests and response assertions in tests.
data/bin/http_resque CHANGED
@@ -26,7 +26,7 @@ require "trollop"
26
26
  class HttpResqueServer < Sinatra::Base
27
27
  cli_options = Trollop::options do
28
28
  opt :rakefile, "The location of your Rakefile which loads your Resque workers.", :default => "./Rakefile"
29
- opt :port, "The port this server should listen on."
29
+ opt :port, "The port this server should listen on.", :type => :int
30
30
  end
31
31
 
32
32
  unless ENV["QUEUE"]
@@ -1,3 +1,3 @@
1
1
  module HttpResque
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: http_resque
3
3
  version: !ruby/object:Gem::Version
4
- hash: 25
4
+ hash: 23
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 3
10
- version: 0.0.3
9
+ - 4
10
+ version: 0.0.4
11
11
  platform: ruby
12
12
  authors:
13
13
  - Phil Crosby