http_resque 0.0.3 → 0.0.4
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.markdown +4 -0
- data/bin/http_resque +1 -1
- data/lib/http_resque/version.rb +1 -1
- metadata +3 -3
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"]
|
data/lib/http_resque/version.rb
CHANGED
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:
|
|
4
|
+
hash: 23
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 0.0.
|
|
9
|
+
- 4
|
|
10
|
+
version: 0.0.4
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Phil Crosby
|