http_autorec 0.0.1
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.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +34 -0
- data/Rakefile +1 -0
- data/http_autorec.gemspec +26 -0
- data/lib/http_autorec.rb +29 -0
- data/lib/http_autorec/version.rb +3 -0
- metadata +110 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: db7ba205cfb418eaa4cc9bb075418d73443446a0
|
4
|
+
data.tar.gz: 8e7a1eeb214fa3f8db548ac03d57797e42f4ea21
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 40c88e893f18cf96063336c563b5f214e47b395608751f4f3e8f15f79240b80a59b55d065c1ee02e5c41b26a8d7f8b21851c8560f3a5170cb1860a8653e2952a
|
7
|
+
data.tar.gz: 19267de50d1fa5d50d1ef517e5f87d0bb0a38f362e33d3a3be4997f48c3cca6e02069ccb5eb667ef991e7a766d6c647220a9341dbd631677a4a0af293750edc4
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2014 vzvu3k6k
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,34 @@
|
|
1
|
+
# HTTPAutorec
|
2
|
+
|
3
|
+
HTTPAutorec is a handy tool to add transparent disk caching of HTTP response to your script. All you have to do is adding `require 'http_autorec'`.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
HTTPAutorec is yet to be released on rubygems.org.
|
8
|
+
|
9
|
+
`git clone https://github.com/vzvu3k6k/http_autorec/ && cd http_autorec && bundle && bundle exec rake install`
|
10
|
+
|
11
|
+
## Usage
|
12
|
+
|
13
|
+
Add `require 'http_autorec'`, or `ruby -r http_autorec yourscript.rb`.
|
14
|
+
|
15
|
+
Cache is put on `./http_autorec_cache` by default. You can set the place of cache by `HTTP_AUTOREC_DIR=http_cache ruby -r http_autorec yourscript`.
|
16
|
+
|
17
|
+
## How it works
|
18
|
+
|
19
|
+
HTTPAutorec uses [VCR](https://github.com/vcr/vcr) and [WebMock](https://github.com/bblimke/webmock). VCR records and replays HTTP responses, which are intercepted by WebMock.
|
20
|
+
|
21
|
+
WebMock supports a lot of HTTP libraries ([check out webmock's readme](https://github.com/bblimke/webmock#readme)), and so does HTTPAutorec.
|
22
|
+
|
23
|
+
## Contributing
|
24
|
+
|
25
|
+
1. Fork it ( https://github.com/vzvu3k6k/http_autorec/fork )
|
26
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
27
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
28
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
29
|
+
5. Create a new Pull Request
|
30
|
+
|
31
|
+
## Related rubygems
|
32
|
+
|
33
|
+
* [open-uri-cached](https://rubygems.org/gems/open-uri-cached) - <q cite="https://rubygems.org/gems/open-uri-cached">OpenURI with transparent disk caching</q> for each process; ([README](https://github.com/tigris/open-uri-cached#readme))
|
34
|
+
* [http-dump](https://rubygems.org/gems/http-dump) - Dump http request by WebMock; ([README](https://github.com/hotchpotch/http-dump#readme))
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
@@ -0,0 +1,26 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'http_autorec/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "http_autorec"
|
8
|
+
spec.version = HTTPAutorec::VERSION
|
9
|
+
spec.authors = ["vzvu3k6k"]
|
10
|
+
spec.email = ["vzvu3k6k@gmail.com"]
|
11
|
+
spec.summary = %q{Just `require` me, then your HTTP requests will be cached.}
|
12
|
+
spec.description = %q{When required, HTTPAutorec enables VCR (with WebMock) and all HTTP requests are cached in ./http_autorec_cache by default. You can temporarily enable it without modifying your code, like this: `ruby -rhttp_autorec your_script.rb`.}
|
13
|
+
spec.homepage = ""
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split("\x0")
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_development_dependency "bundler", "~> 1.6"
|
22
|
+
spec.add_development_dependency "rake"
|
23
|
+
|
24
|
+
spec.add_dependency "vcr", "~> 2.9"
|
25
|
+
spec.add_dependency "webmock", "~> 1.17"
|
26
|
+
end
|
data/lib/http_autorec.rb
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
require "http_autorec/version"
|
2
|
+
|
3
|
+
module HTTPAutorec
|
4
|
+
module_function
|
5
|
+
|
6
|
+
[:turn_on!, :turn_off!, :turned_off, :turned_on?].each do |name|
|
7
|
+
define_method :name do |*args, &block|
|
8
|
+
VCR.send(name, *args, &block)
|
9
|
+
end
|
10
|
+
end
|
11
|
+
|
12
|
+
def start
|
13
|
+
require 'vcr'
|
14
|
+
|
15
|
+
VCR.configure do |c|
|
16
|
+
c.cassette_library_dir = ENV['HTTP_AUTOREC_DIR'] || 'http_autorec_cache'
|
17
|
+
c.hook_into :webmock
|
18
|
+
end
|
19
|
+
|
20
|
+
VCR.insert_cassette('autorec', :record => :new_episodes)
|
21
|
+
VCR.turn_on!
|
22
|
+
|
23
|
+
at_exit do
|
24
|
+
VCR.eject_cassette
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
HTTPAutorec.start
|
metadata
ADDED
@@ -0,0 +1,110 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: http_autorec
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- vzvu3k6k
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-05-04 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.6'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.6'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: vcr
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '2.9'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '2.9'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: webmock
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '1.17'
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '1.17'
|
69
|
+
description: 'When required, HTTPAutorec enables VCR (with WebMock) and all HTTP requests
|
70
|
+
are cached in ./http_autorec_cache by default. You can temporarily enable it without
|
71
|
+
modifying your code, like this: `ruby -rhttp_autorec your_script.rb`.'
|
72
|
+
email:
|
73
|
+
- vzvu3k6k@gmail.com
|
74
|
+
executables: []
|
75
|
+
extensions: []
|
76
|
+
extra_rdoc_files: []
|
77
|
+
files:
|
78
|
+
- ".gitignore"
|
79
|
+
- Gemfile
|
80
|
+
- LICENSE.txt
|
81
|
+
- README.md
|
82
|
+
- Rakefile
|
83
|
+
- http_autorec.gemspec
|
84
|
+
- lib/http_autorec.rb
|
85
|
+
- lib/http_autorec/version.rb
|
86
|
+
homepage: ''
|
87
|
+
licenses:
|
88
|
+
- MIT
|
89
|
+
metadata: {}
|
90
|
+
post_install_message:
|
91
|
+
rdoc_options: []
|
92
|
+
require_paths:
|
93
|
+
- lib
|
94
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
95
|
+
requirements:
|
96
|
+
- - ">="
|
97
|
+
- !ruby/object:Gem::Version
|
98
|
+
version: '0'
|
99
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0'
|
104
|
+
requirements: []
|
105
|
+
rubyforge_project:
|
106
|
+
rubygems_version: 2.2.2
|
107
|
+
signing_key:
|
108
|
+
specification_version: 4
|
109
|
+
summary: Just `require` me, then your HTTP requests will be cached.
|
110
|
+
test_files: []
|