webclient 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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 7eb2ccdb7293580bdd84f47296a6aeeea732c059
4
+ data.tar.gz: 3f1a98beed96051f2b5c2e9425be0606e4d5db27
5
+ SHA512:
6
+ metadata.gz: 5719ef6944bc547b68ad245bbe54e42b456d873f03bf036b25d03b1cb63d00153e063274229938d32be2bdbc549ebd8b26a5c29ef601fcecde2efaf767cd6358
7
+ data.tar.gz: a3c8bb313bb5d2fc56e99e6e8c7a039872ac6e8fdc53464e9b155680773ad0a603095037242d82f6ca2bf302659f33b437a293d763e078ff2e86b17ff62b46e0
@@ -0,0 +1,4 @@
1
+ ### 0.0.1 / 2020-10-03
2
+
3
+ * Everything is new. First release.
4
+
@@ -0,0 +1,6 @@
1
+ CHANGELOG.md
2
+ Manifest.txt
3
+ README.md
4
+ Rakefile
5
+ lib/webclient.rb
6
+ lib/webclient/version.rb
@@ -0,0 +1,19 @@
1
+ # webclient
2
+
3
+ webclient gem - yet (another) network client for world wide web (www) requests via HTTP
4
+
5
+ * home :: [github.com/rubylibs/fotos](https://github.com/rubylibs/fotos)
6
+ * bugs :: [github.com/rubylibs/fotos/issues](https://github.com/rubylibs/fotos/issues)
7
+ * gem :: [rubygems.org/gems/fotos](https://rubygems.org/gems/fotos)
8
+ * rdoc :: [rubydoc.info/gems/fotos](http://rubydoc.info/gems/fotos)
9
+
10
+
11
+ ## Usage
12
+
13
+ TBD
14
+
15
+
16
+ ## License
17
+
18
+ The `webclient` scripts are dedicated to the public domain.
19
+ Use it as you please with no restrictions whatsoever.
@@ -0,0 +1,28 @@
1
+ require 'hoe'
2
+ require './lib/webclient/version.rb'
3
+
4
+ Hoe.spec 'webclient' do
5
+
6
+ self.version = Webclient::VERSION
7
+
8
+ self.summary = 'webclient gem - yet (another) network client for world wide web (www) requests '
9
+ self.description = summary
10
+
11
+ self.urls = { home: 'https://github.com/rubylibs/fotos' }
12
+
13
+ self.author = 'Gerald Bauer'
14
+ self.email = 'ruby-talk@ruby-lang.org'
15
+
16
+ # switch extension to .markdown for gihub formatting
17
+ self.readme_file = 'README.md'
18
+ self.history_file = 'CHANGELOG.md'
19
+
20
+ self.extra_deps = []
21
+
22
+ self.licenses = ['Public Domain']
23
+
24
+ self.spec_extras = {
25
+ required_ruby_version: '>= 1.9.2'
26
+ }
27
+
28
+ end
@@ -0,0 +1,7 @@
1
+
2
+ # our own code
3
+ require 'webclient/version' # note: let version always go first
4
+
5
+
6
+ # say hello
7
+ puts Webclient.banner if defined?( $RUBYLIBS_DEBUG )
@@ -0,0 +1,20 @@
1
+
2
+ class Webclient
3
+ MAJOR = 0 ## todo: namespace inside version or something - why? why not??
4
+ MINOR = 0
5
+ PATCH = 1
6
+ VERSION = [MAJOR,MINOR,PATCH].join('.')
7
+
8
+ def self.version
9
+ VERSION
10
+ end
11
+
12
+ def self.banner
13
+ "webclient/#{VERSION} on Ruby #{RUBY_VERSION} (#{RUBY_RELEASE_DATE}) [#{RUBY_PLATFORM}]"
14
+ end
15
+
16
+ def self.root
17
+ "#{File.expand_path( File.dirname(File.dirname(File.dirname(__FILE__))) )}"
18
+ end
19
+ end # module Webclient
20
+
metadata ADDED
@@ -0,0 +1,89 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: webclient
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Gerald Bauer
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2020-10-06 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rdoc
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '4.0'
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: '7'
23
+ type: :development
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: '4.0'
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: '7'
33
+ - !ruby/object:Gem::Dependency
34
+ name: hoe
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: '3.22'
40
+ type: :development
41
+ prerelease: false
42
+ version_requirements: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - "~>"
45
+ - !ruby/object:Gem::Version
46
+ version: '3.22'
47
+ description: 'webclient gem - yet (another) network client for world wide web (www)
48
+ requests '
49
+ email: ruby-talk@ruby-lang.org
50
+ executables: []
51
+ extensions: []
52
+ extra_rdoc_files:
53
+ - CHANGELOG.md
54
+ - Manifest.txt
55
+ - README.md
56
+ files:
57
+ - CHANGELOG.md
58
+ - Manifest.txt
59
+ - README.md
60
+ - Rakefile
61
+ - lib/webclient.rb
62
+ - lib/webclient/version.rb
63
+ homepage: https://github.com/rubylibs/fotos
64
+ licenses:
65
+ - Public Domain
66
+ metadata: {}
67
+ post_install_message:
68
+ rdoc_options:
69
+ - "--main"
70
+ - README.md
71
+ require_paths:
72
+ - lib
73
+ required_ruby_version: !ruby/object:Gem::Requirement
74
+ requirements:
75
+ - - ">="
76
+ - !ruby/object:Gem::Version
77
+ version: 1.9.2
78
+ required_rubygems_version: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ requirements: []
84
+ rubyforge_project:
85
+ rubygems_version: 2.5.2
86
+ signing_key:
87
+ specification_version: 4
88
+ summary: webclient gem - yet (another) network client for world wide web (www) requests
89
+ test_files: []