simple_http_service 0.1.0 → 0.1.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 +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 → simple_http_service}/client.rb +1 -1
- data/lib/simple_http_service/version.rb +3 -0
- data/lib/simple_http_service.rb +7 -0
- data/{simple_http.gemspec → simple_http_service.gemspec} +7 -7
- metadata +11 -11
- data/lib/simple_http/version.rb +0 -3
- data/lib/simple_http.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: dcdc528d7a1fd55e7bf234d0c7c656c10a3c8fc26b8ecf0ad8ba311f0fcdb66f
|
4
|
+
data.tar.gz: 12fde94dbe6c1739fc8bd8761d8cdf0e11657cbe7d59c2160716d2824bf4ebb0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9d3298c0b9667d62642c579bb36e03fa5754e678b29848cddd26f4a11733a69229ebddda355a14c703a7ad3cc744f1f75b2df1fc965bf737bfe91b7dcab7cfd9
|
7
|
+
data.tar.gz: bab3877ff4b7d731716d2630893ced996ec986695978ce24dd62bb8351d2b88af6d43c288a1a8ff819cd532d6faea82c42621bf10620dad48046d4d3b8f74680
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
|
4
|
+
simple_http_service (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_service!
|
37
37
|
|
38
38
|
BUNDLED WITH
|
39
39
|
1.17.3
|
data/README.md
CHANGED
data/bin/console
CHANGED
@@ -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_service/version"
|
5
5
|
|
6
6
|
Gem::Specification.new do |spec|
|
7
7
|
spec.name = "simple_http_service"
|
8
|
-
spec.version =
|
8
|
+
spec.version = SimpleHttpService::VERSION
|
9
9
|
spec.authors = ["Gokul"]
|
10
10
|
spec.email = ["pgokulmca@gmail.com"]
|
11
11
|
|
12
|
-
spec.summary =
|
13
|
-
spec.description = '
|
14
|
-
spec.homepage = "https://github.com/gklsan/
|
12
|
+
spec.summary = 'Welcome to SimpleHttpService gem'
|
13
|
+
spec.description = 'Welcome to SimpleHttpService gem'
|
14
|
+
spec.homepage = "https://github.com/gklsan/simple_http_service"
|
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_service"
|
24
|
+
spec.metadata["changelog_uri"] = "https://github.com/gklsan/simple_http_service"
|
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.1.
|
4
|
+
version: 0.1.1
|
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:
|
69
|
+
description: Welcome to SimpleHttpService 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_service.rb
|
88
|
+
- lib/simple_http_service/client.rb
|
89
|
+
- lib/simple_http_service/version.rb
|
90
|
+
- simple_http_service.gemspec
|
91
|
+
homepage: https://github.com/gklsan/simple_http_service
|
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_service
|
96
|
+
source_code_uri: https://github.com/gklsan/simple_http_service
|
97
|
+
changelog_uri: https://github.com/gklsan/simple_http_service
|
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 SimpleHttpService gem
|
117
117
|
test_files: []
|
data/lib/simple_http/version.rb
DELETED