simple_http_service 0.0.1 → 0.1.0
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 +4 -4
- data/Gemfile +1 -1
- data/Gemfile.lock +2 -2
- data/README.md +1 -1
- data/bin/console +1 -1
- data/lib/{simple_http_service → simple_http}/client.rb +1 -1
- data/lib/simple_http/version.rb +3 -0
- data/lib/simple_http.rb +7 -0
- data/{simple_http_service.gemspec → simple_http.gemspec} +7 -7
- metadata +11 -11
- data/lib/simple_http_service/version.rb +0 -3
- data/lib/simple_http_service.rb +0 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 208b4b37bdff1550d24d708855354809d397b5eb26de709a60f163957def2132
|
4
|
+
data.tar.gz: 5a212d318cfefb8f291751c185d6260f108dda3f18508f097c55a053ecbe757e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3ead4015cd47260fa6166a3fd66d455371c5be60ced43e0e047dec1f0efd789c46cd1e1bd9ac2b17f57e16930332c9cf60d08710554cdc6efc63abc513bb002e
|
7
|
+
data.tar.gz: 258c04992d591e900dc69cfab8d1be86db6603812312063ed76a0023dd4f8c4c4b58b56356fe81528013693b8ec824e4b66548f8c3422170b59664d613fe5dcc
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
|
4
|
+
simple_http (0.1.0)
|
5
5
|
net-http (~> 0.3.2)
|
6
6
|
|
7
7
|
GEM
|
@@ -33,7 +33,7 @@ DEPENDENCIES
|
|
33
33
|
bundler (~> 1.17)
|
34
34
|
rake (~> 10.0)
|
35
35
|
rspec (~> 3.0)
|
36
|
-
|
36
|
+
simple_http!
|
37
37
|
|
38
38
|
BUNDLED WITH
|
39
39
|
1.17.3
|
data/README.md
CHANGED
data/bin/console
CHANGED
data/lib/simple_http.rb
ADDED
@@ -1,17 +1,17 @@
|
|
1
1
|
|
2
2
|
lib = File.expand_path("../lib", __FILE__)
|
3
3
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
-
require "
|
4
|
+
require "simple_http/version"
|
5
5
|
|
6
6
|
Gem::Specification.new do |spec|
|
7
7
|
spec.name = "simple_http_service"
|
8
|
-
spec.version =
|
8
|
+
spec.version = SimpleHttp::VERSION
|
9
9
|
spec.authors = ["Gokul"]
|
10
10
|
spec.email = ["pgokulmca@gmail.com"]
|
11
11
|
|
12
|
-
spec.summary =
|
13
|
-
spec.description = 'Welcome to
|
14
|
-
spec.homepage = "https://github.com/gklsan/
|
12
|
+
spec.summary = %q{Welcome to SimpleHttp gem}
|
13
|
+
spec.description = '%q{Welcome to SimpleHttp gem}'
|
14
|
+
spec.homepage = "https://github.com/gklsan/simple_http_client"
|
15
15
|
spec.license = "MIT"
|
16
16
|
|
17
17
|
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
@@ -20,8 +20,8 @@ Gem::Specification.new do |spec|
|
|
20
20
|
# spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
|
21
21
|
|
22
22
|
spec.metadata["homepage_uri"] = spec.homepage
|
23
|
-
spec.metadata["source_code_uri"] = "https://github.com/gklsan/
|
24
|
-
spec.metadata["changelog_uri"] = "https://github.com/gklsan/
|
23
|
+
spec.metadata["source_code_uri"] = "https://github.com/gklsan/simple_http_client"
|
24
|
+
spec.metadata["changelog_uri"] = "https://github.com/gklsan/simple_http_client"
|
25
25
|
else
|
26
26
|
raise "RubyGems 2.0 or newer is required to protect against " \
|
27
27
|
"public gem pushes."
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: simple_http_service
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gokul
|
@@ -66,7 +66,7 @@ dependencies:
|
|
66
66
|
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '3.0'
|
69
|
-
description: Welcome to
|
69
|
+
description: "%q{Welcome to SimpleHttp gem}"
|
70
70
|
email:
|
71
71
|
- pgokulmca@gmail.com
|
72
72
|
executables: []
|
@@ -84,17 +84,17 @@ files:
|
|
84
84
|
- Rakefile
|
85
85
|
- bin/console
|
86
86
|
- bin/setup
|
87
|
-
- lib/
|
88
|
-
- lib/
|
89
|
-
- lib/
|
90
|
-
-
|
91
|
-
homepage: https://github.com/gklsan/
|
87
|
+
- lib/simple_http.rb
|
88
|
+
- lib/simple_http/client.rb
|
89
|
+
- lib/simple_http/version.rb
|
90
|
+
- simple_http.gemspec
|
91
|
+
homepage: https://github.com/gklsan/simple_http_client
|
92
92
|
licenses:
|
93
93
|
- MIT
|
94
94
|
metadata:
|
95
|
-
homepage_uri: https://github.com/gklsan/
|
96
|
-
source_code_uri: https://github.com/gklsan/
|
97
|
-
changelog_uri: https://github.com/gklsan/
|
95
|
+
homepage_uri: https://github.com/gklsan/simple_http_client
|
96
|
+
source_code_uri: https://github.com/gklsan/simple_http_client
|
97
|
+
changelog_uri: https://github.com/gklsan/simple_http_client
|
98
98
|
post_install_message:
|
99
99
|
rdoc_options: []
|
100
100
|
require_paths:
|
@@ -113,5 +113,5 @@ requirements: []
|
|
113
113
|
rubygems_version: 3.0.9
|
114
114
|
signing_key:
|
115
115
|
specification_version: 4
|
116
|
-
summary: Welcome to
|
116
|
+
summary: Welcome to SimpleHttp gem
|
117
117
|
test_files: []
|