simple_http_service 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 208b4b37bdff1550d24d708855354809d397b5eb26de709a60f163957def2132
4
- data.tar.gz: 5a212d318cfefb8f291751c185d6260f108dda3f18508f097c55a053ecbe757e
3
+ metadata.gz: dcdc528d7a1fd55e7bf234d0c7c656c10a3c8fc26b8ecf0ad8ba311f0fcdb66f
4
+ data.tar.gz: 12fde94dbe6c1739fc8bd8761d8cdf0e11657cbe7d59c2160716d2824bf4ebb0
5
5
  SHA512:
6
- metadata.gz: 3ead4015cd47260fa6166a3fd66d455371c5be60ced43e0e047dec1f0efd789c46cd1e1bd9ac2b17f57e16930332c9cf60d08710554cdc6efc63abc513bb002e
7
- data.tar.gz: 258c04992d591e900dc69cfab8d1be86db6603812312063ed76a0023dd4f8c4c4b58b56356fe81528013693b8ec824e4b66548f8c3422170b59664d613fe5dcc
6
+ metadata.gz: 9d3298c0b9667d62642c579bb36e03fa5754e678b29848cddd26f4a11733a69229ebddda355a14c703a7ad3cc744f1f75b2df1fc965bf737bfe91b7dcab7cfd9
7
+ data.tar.gz: bab3877ff4b7d731716d2630893ced996ec986695978ce24dd62bb8351d2b88af6d43c288a1a8ff819cd532d6faea82c42621bf10620dad48046d4d3b8f74680
data/Gemfile CHANGED
@@ -2,5 +2,5 @@ source "https://rubygems.org"
2
2
 
3
3
  git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
4
 
5
- # Specify your gem's dependencies in simple_http.gemspec
5
+ # Specify your gem's dependencies in simple_http_service.gemspec
6
6
  gemspec
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- simple_http (0.1.0)
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
- simple_http!
36
+ simple_http_service!
37
37
 
38
38
  BUNDLED WITH
39
39
  1.17.3
data/README.md CHANGED
@@ -9,7 +9,7 @@ TODO: Delete this and the text above, and describe your gem
9
9
  Add this line to your application's Gemfile:
10
10
 
11
11
  ```ruby
12
- gem 'simple_http'
12
+ gem 'simple_http_service'
13
13
  ```
14
14
 
15
15
  And then execute:
data/bin/console CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
3
  require "bundler/setup"
4
- require "simple_http"
4
+ require "simple_http_service"
5
5
 
6
6
  # You can add fixtures and/or initialization code here to make experimenting
7
7
  # with your gem easier. You can also use a different console, if you like.
@@ -1,5 +1,5 @@
1
1
  require 'net/http'
2
- module SimpleHttp
2
+ module SimpleHttpService
3
3
  class Client
4
4
  attr_accessor :uri, :headers, :http_method, :query
5
5
 
@@ -0,0 +1,3 @@
1
+ module SimpleHttpService
2
+ VERSION = "0.1.1"
3
+ end
@@ -0,0 +1,7 @@
1
+ require 'simple_http_service/version'
2
+ require 'simple_http_service/client'
3
+
4
+ module SimpleHttpService
5
+ class Error < StandardError; end
6
+ # Your code goes here...
7
+ end
@@ -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 "simple_http/version"
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 = SimpleHttp::VERSION
8
+ spec.version = SimpleHttpService::VERSION
9
9
  spec.authors = ["Gokul"]
10
10
  spec.email = ["pgokulmca@gmail.com"]
11
11
 
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"
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/simple_http_client"
24
- spec.metadata["changelog_uri"] = "https://github.com/gklsan/simple_http_client"
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.0
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: "%q{Welcome to SimpleHttp gem}"
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/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
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/simple_http_client
96
- source_code_uri: https://github.com/gklsan/simple_http_client
97
- changelog_uri: https://github.com/gklsan/simple_http_client
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 SimpleHttp gem
116
+ summary: Welcome to SimpleHttpService gem
117
117
  test_files: []
@@ -1,3 +0,0 @@
1
- module SimpleHttp
2
- VERSION = "0.1.0"
3
- end
data/lib/simple_http.rb DELETED
@@ -1,7 +0,0 @@
1
- require "simple_http/version"
2
- require 'simple_http/client'
3
-
4
- module SimpleHttp
5
- class Error < StandardError; end
6
- # Your code goes here...
7
- end