requestly 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.
- data/.gitignore +4 -0
- data/.rspec +1 -0
- data/CHANGELOG +3 -0
- data/Gemfile +4 -0
- data/README.md +24 -0
- data/Rakefile +5 -0
- data/lib/requestly.rb +5 -0
- data/lib/requestly/version.rb +3 -0
- data/requestly.gemspec +24 -0
- data/spec/spec_helper.rb +1 -0
- metadata +67 -0
data/.gitignore
ADDED
data/.rspec
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
--color
|
data/CHANGELOG
ADDED
data/Gemfile
ADDED
data/README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Requestly
|
|
2
|
+
|
|
3
|
+
Requestly is an elegant and simple HTTP library for Ruby.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
Add to your Gemfile and run the `bundle` command to install it.
|
|
8
|
+
|
|
9
|
+
```ruby
|
|
10
|
+
gem "requestly"
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
**Requires Ruby 1.9.2 or later.**
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
## Usage
|
|
17
|
+
|
|
18
|
+
[TODO] Add usage instructions here
|
|
19
|
+
|
|
20
|
+
## Development
|
|
21
|
+
|
|
22
|
+
Questions or problems? Please post them on the [issue tracker](https://github.com/lokimeyburg/requestly/issues). You can contribute changes by forking the project and submitting a pull request. You can ensure the tests passing by running `bundle` and `rake`.
|
|
23
|
+
|
|
24
|
+
This gem is created by Loki Meyburg and is under the MIT License.
|
data/Rakefile
ADDED
data/lib/requestly.rb
ADDED
data/requestly.gemspec
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
|
3
|
+
require "requestly/version"
|
|
4
|
+
|
|
5
|
+
Gem::Specification.new do |s|
|
|
6
|
+
s.name = "requestly"
|
|
7
|
+
s.version = Requestly::VERSION
|
|
8
|
+
s.authors = ["Loki Meyburg"]
|
|
9
|
+
s.email = ["loki@aristolabs.com"]
|
|
10
|
+
s.homepage = "https://github.com/lokimeyburg/requestly"
|
|
11
|
+
s.summary = %q{HTTP library, written in Ruby}
|
|
12
|
+
s.description = %q{Requestly is an elegant and simple HTTP library for Ruby}
|
|
13
|
+
|
|
14
|
+
s.rubyforge_project = "requestly"
|
|
15
|
+
|
|
16
|
+
s.files = `git ls-files`.split("\n")
|
|
17
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
18
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
19
|
+
s.require_paths = ["lib"]
|
|
20
|
+
|
|
21
|
+
# specify any dependencies here; for example:
|
|
22
|
+
s.add_development_dependency "rspec"
|
|
23
|
+
# s.add_runtime_dependency "rest-client"
|
|
24
|
+
end
|
data/spec/spec_helper.rb
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
require 'requestly'
|
metadata
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: requestly
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
prerelease:
|
|
6
|
+
platform: ruby
|
|
7
|
+
authors:
|
|
8
|
+
- Loki Meyburg
|
|
9
|
+
autorequire:
|
|
10
|
+
bindir: bin
|
|
11
|
+
cert_chain: []
|
|
12
|
+
date: 2012-02-22 00:00:00.000000000Z
|
|
13
|
+
dependencies:
|
|
14
|
+
- !ruby/object:Gem::Dependency
|
|
15
|
+
name: rspec
|
|
16
|
+
requirement: &2157465880 !ruby/object:Gem::Requirement
|
|
17
|
+
none: false
|
|
18
|
+
requirements:
|
|
19
|
+
- - ! '>='
|
|
20
|
+
- !ruby/object:Gem::Version
|
|
21
|
+
version: '0'
|
|
22
|
+
type: :development
|
|
23
|
+
prerelease: false
|
|
24
|
+
version_requirements: *2157465880
|
|
25
|
+
description: Requestly is an elegant and simple HTTP library for Ruby
|
|
26
|
+
email:
|
|
27
|
+
- loki@aristolabs.com
|
|
28
|
+
executables: []
|
|
29
|
+
extensions: []
|
|
30
|
+
extra_rdoc_files: []
|
|
31
|
+
files:
|
|
32
|
+
- .gitignore
|
|
33
|
+
- .rspec
|
|
34
|
+
- CHANGELOG
|
|
35
|
+
- Gemfile
|
|
36
|
+
- README.md
|
|
37
|
+
- Rakefile
|
|
38
|
+
- lib/requestly.rb
|
|
39
|
+
- lib/requestly/version.rb
|
|
40
|
+
- requestly.gemspec
|
|
41
|
+
- spec/spec_helper.rb
|
|
42
|
+
homepage: https://github.com/lokimeyburg/requestly
|
|
43
|
+
licenses: []
|
|
44
|
+
post_install_message:
|
|
45
|
+
rdoc_options: []
|
|
46
|
+
require_paths:
|
|
47
|
+
- lib
|
|
48
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
49
|
+
none: false
|
|
50
|
+
requirements:
|
|
51
|
+
- - ! '>='
|
|
52
|
+
- !ruby/object:Gem::Version
|
|
53
|
+
version: '0'
|
|
54
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
55
|
+
none: false
|
|
56
|
+
requirements:
|
|
57
|
+
- - ! '>='
|
|
58
|
+
- !ruby/object:Gem::Version
|
|
59
|
+
version: '0'
|
|
60
|
+
requirements: []
|
|
61
|
+
rubyforge_project: requestly
|
|
62
|
+
rubygems_version: 1.8.5
|
|
63
|
+
signing_key:
|
|
64
|
+
specification_version: 3
|
|
65
|
+
summary: HTTP library, written in Ruby
|
|
66
|
+
test_files:
|
|
67
|
+
- spec/spec_helper.rb
|