hyperdata 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/HISTORY.md +4 -0
- data/Manifest.txt +6 -0
- data/README.md +26 -0
- data/Rakefile +26 -0
- data/lib/hyperdata.rb +17 -0
- data/lib/hyperdata/version.rb +22 -0
- metadata +84 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: ce92ec3be1db5fdf4c98cc082e6245ffb3d53cbf
|
4
|
+
data.tar.gz: a0dbda343fdb084cf2a38d6fda7f2bfa2324b2a2
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 3293f871f7b4f3193652d500ebf9be21219a6fb45d87dae20760e8da50bef221404af18d9c15cdd20c1d8070c7ec5f7b45162c9c900a1dec56c5f96db0665501
|
7
|
+
data.tar.gz: 920f4f613383648a53ef34c0ce6174e87bada1b6e408de6597a7060e789044e8f18b7efb37e0f56b3fa84c29b458d71e6e7665ac93bc7c2e8d9c691f78341a18
|
data/HISTORY.md
ADDED
data/Manifest.txt
ADDED
data/README.md
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
# hyperdata gem - turn hypertext web pages into structured data (supports Feed.HTML n friends)
|
2
|
+
|
3
|
+
|
4
|
+
* home :: [github.com/feedhtml/hyperdata](https://github.com/feedhtml/hyperdata)
|
5
|
+
* bugs :: [github.com/feedhtml/hyperdata/issues](https://github.com/feedhtml/hyperdata/issues)
|
6
|
+
* gem :: [rubygems.org/gems/hyperdata](https://rubygems.org/gems/hyperdata)
|
7
|
+
* rdoc :: [rubydoc.info/gems/hyperdata](http://rubydoc.info/gems/hyperdata)
|
8
|
+
* forum :: [groups.google.com/group/wwwmake](http://groups.google.com/group/wwwmake)
|
9
|
+
|
10
|
+
|
11
|
+
## Usage
|
12
|
+
|
13
|
+
To be done.
|
14
|
+
|
15
|
+
|
16
|
+
## License
|
17
|
+
|
18
|
+
![](https://publicdomainworks.github.io/buttons/zero88x31.png)
|
19
|
+
|
20
|
+
The `hyperdata` scripts are dedicated to the public domain.
|
21
|
+
Use it as you please with no restrictions whatsoever.
|
22
|
+
|
23
|
+
## Questions? Comments?
|
24
|
+
|
25
|
+
Send them along to the [wwwmake Forum/Mailing List](http://groups.google.com/group/wwwmake).
|
26
|
+
Thanks!
|
data/Rakefile
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
require 'hoe'
|
2
|
+
require './lib/hyperdata/version.rb'
|
3
|
+
|
4
|
+
Hoe.spec 'hyperdata' do
|
5
|
+
|
6
|
+
self.version = Hyperdata::VERSION
|
7
|
+
|
8
|
+
self.summary = "hyperdata - turn hypertext web pages into structured data (supports Feed.HTML n friends)"
|
9
|
+
self.description = summary
|
10
|
+
|
11
|
+
self.urls = ['https://github.com/feedhtml/hyperdata']
|
12
|
+
|
13
|
+
self.author = 'Gerald Bauer'
|
14
|
+
self.email = 'wwwmake@googlegroups.com'
|
15
|
+
|
16
|
+
# switch extension to .markdown for gihub formatting
|
17
|
+
self.readme_file = 'README.md'
|
18
|
+
self.history_file = 'HISTORY.md'
|
19
|
+
|
20
|
+
self.licenses = ['Public Domain']
|
21
|
+
|
22
|
+
self.spec_extras = {
|
23
|
+
required_ruby_version: '>= 1.9.2'
|
24
|
+
}
|
25
|
+
|
26
|
+
end
|
data/lib/hyperdata.rb
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
|
4
|
+
# core and stdlibs
|
5
|
+
|
6
|
+
|
7
|
+
# 3rd party gems/libs
|
8
|
+
|
9
|
+
|
10
|
+
|
11
|
+
# our own code
|
12
|
+
|
13
|
+
require 'hyperdata/version' # let it always go first
|
14
|
+
|
15
|
+
|
16
|
+
# say hello
|
17
|
+
puts Hyperdata.banner if $DEBUG || (defined?($RUBYLIBS_DEBUG) && $RUBYLIBS_DEBUG)
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
module Hyperdata
|
4
|
+
|
5
|
+
MAJOR = 0
|
6
|
+
MINOR = 0
|
7
|
+
PATCH = 1
|
8
|
+
VERSION = [MAJOR,MINOR,PATCH].join('.')
|
9
|
+
|
10
|
+
def self.version
|
11
|
+
VERSION
|
12
|
+
end
|
13
|
+
|
14
|
+
def self.banner
|
15
|
+
"hyperdata/#{VERSION} on Ruby #{RUBY_VERSION} (#{RUBY_RELEASE_DATE}) [#{RUBY_PLATFORM}]"
|
16
|
+
end
|
17
|
+
|
18
|
+
def self.root
|
19
|
+
"#{File.expand_path( File.dirname(File.dirname(File.dirname(__FILE__))) )}"
|
20
|
+
end
|
21
|
+
|
22
|
+
end # module Hyperdata
|
metadata
ADDED
@@ -0,0 +1,84 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: hyperdata
|
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: 2017-06-11 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
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '4.0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: hoe
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '3.15'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '3.15'
|
41
|
+
description: hyperdata - turn hypertext web pages into structured data (supports Feed.HTML
|
42
|
+
n friends)
|
43
|
+
email: wwwmake@googlegroups.com
|
44
|
+
executables: []
|
45
|
+
extensions: []
|
46
|
+
extra_rdoc_files:
|
47
|
+
- HISTORY.md
|
48
|
+
- Manifest.txt
|
49
|
+
- README.md
|
50
|
+
files:
|
51
|
+
- HISTORY.md
|
52
|
+
- Manifest.txt
|
53
|
+
- README.md
|
54
|
+
- Rakefile
|
55
|
+
- lib/hyperdata.rb
|
56
|
+
- lib/hyperdata/version.rb
|
57
|
+
homepage: https://github.com/feedhtml/hyperdata
|
58
|
+
licenses:
|
59
|
+
- Public Domain
|
60
|
+
metadata: {}
|
61
|
+
post_install_message:
|
62
|
+
rdoc_options:
|
63
|
+
- "--main"
|
64
|
+
- README.md
|
65
|
+
require_paths:
|
66
|
+
- lib
|
67
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
68
|
+
requirements:
|
69
|
+
- - ">="
|
70
|
+
- !ruby/object:Gem::Version
|
71
|
+
version: 1.9.2
|
72
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
73
|
+
requirements:
|
74
|
+
- - ">="
|
75
|
+
- !ruby/object:Gem::Version
|
76
|
+
version: '0'
|
77
|
+
requirements: []
|
78
|
+
rubyforge_project:
|
79
|
+
rubygems_version: 2.6.7
|
80
|
+
signing_key:
|
81
|
+
specification_version: 4
|
82
|
+
summary: hyperdata - turn hypertext web pages into structured data (supports Feed.HTML
|
83
|
+
n friends)
|
84
|
+
test_files: []
|