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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 269f4b0dccab414a5a30f1ccf6c88468960fe556539dd271d105a6562dab2bb0
4
- data.tar.gz: 40f815856975a75659d2220360c8cd4ed542a550cffaaa86cb72e2cf389c9e04
3
+ metadata.gz: 208b4b37bdff1550d24d708855354809d397b5eb26de709a60f163957def2132
4
+ data.tar.gz: 5a212d318cfefb8f291751c185d6260f108dda3f18508f097c55a053ecbe757e
5
5
  SHA512:
6
- metadata.gz: bfc6481478c84a5159a045a5782de86ed7152904f7717da3fbab550f309d0c9e57e4fef31127c85088b6391af6e6e82e624c371084ee5b5f5e83d009c77c2372
7
- data.tar.gz: 7828963a873296f11a4726538f01744b9e368158b15e6b6ceade9823b863771c60a4d4cc8f953aa4545f81dda91bdce2bd721bdc2d05596e6f4d6cd0b186dd05
6
+ metadata.gz: 3ead4015cd47260fa6166a3fd66d455371c5be60ced43e0e047dec1f0efd789c46cd1e1bd9ac2b17f57e16930332c9cf60d08710554cdc6efc63abc513bb002e
7
+ data.tar.gz: 258c04992d591e900dc69cfab8d1be86db6603812312063ed76a0023dd4f8c4c4b58b56356fe81528013693b8ec824e4b66548f8c3422170b59664d613fe5dcc
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_service.gemspec
5
+ # Specify your gem's dependencies in simple_http.gemspec
6
6
  gemspec
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- simple_http_service (0.1.0)
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
- simple_http_service!
36
+ simple_http!
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_service'
12
+ gem 'simple_http'
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_service"
4
+ require "simple_http"
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 SimpleHttpService
2
+ module SimpleHttp
3
3
  class Client
4
4
  attr_accessor :uri, :headers, :http_method, :query
5
5
 
@@ -0,0 +1,3 @@
1
+ module SimpleHttp
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1,7 @@
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
@@ -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_service/version"
4
+ require "simple_http/version"
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "simple_http_service"
8
- spec.version = SimpleHttpService::VERSION
8
+ spec.version = SimpleHttp::VERSION
9
9
  spec.authors = ["Gokul"]
10
10
  spec.email = ["pgokulmca@gmail.com"]
11
11
 
12
- spec.summary = 'Welcome to SimpleHttpService gem'
13
- spec.description = 'Welcome to SimpleHttpService gem'
14
- spec.homepage = "https://github.com/gklsan/simple_http_service"
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/simple_http_service"
24
- spec.metadata["changelog_uri"] = "https://github.com/gklsan/simple_http_service"
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.1
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 SimpleHttpService gem
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/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
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/simple_http_service
96
- source_code_uri: https://github.com/gklsan/simple_http_service
97
- changelog_uri: https://github.com/gklsan/simple_http_service
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 SimpleHttpService gem
116
+ summary: Welcome to SimpleHttp gem
117
117
  test_files: []
@@ -1,3 +0,0 @@
1
- module SimpleHttpService
2
- VERSION = "0.0.1"
3
- end
@@ -1,7 +0,0 @@
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