siteinfo_parser 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 565249530980e7467d605cf9fc3a601d14a66130
4
- data.tar.gz: 6547b4e7e428b4f88bbae7649aa2278cb91f24bb
3
+ metadata.gz: 7509f811ee189defa5405d43cef9be5ffbcd1dfc
4
+ data.tar.gz: 1bc9bd23fbdad6cfa91ddc239c9d6f1065522d94
5
5
  SHA512:
6
- metadata.gz: 792b9f9f78186c8468265651a2a086693834bd0ad056212bd874a4cbd02b84566a8f18bbb5d84691f89290692ef0e2e8bd1c5a0af4295234fae044230fa7498d
7
- data.tar.gz: b7d217af640ab286ac6965a34dec187c65be5bf1f9e95da4b283bb486b5af395f0e6e646bf50ffb461388acad70dee8597cefa7e17e4ff5fd91cc1d61e025731
6
+ metadata.gz: 0d5a3a475b53aa4c601c4e5678b5301361c4362c22d5c13dc2fbfe0f1b59c186a0fc4786f90d4122d74e8486e1ebc655e2883b9c7a697c0646c784ddbb71ada0
7
+ data.tar.gz: 3cbc8cffee6fa65ff4ac8b4a8b2c5adce8ee528042d3be0c5b9bd516c8c1249d775fb6361771b7441e6a4eac273c11943e060a2d626d601bd601388121b16967
data/README.md CHANGED
@@ -22,20 +22,24 @@ Or install it yourself as:
22
22
 
23
23
  ## Usage
24
24
 
25
- TODO: Write usage instructions here
26
-
27
- ## Development
28
-
29
- After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
-
31
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
-
33
- ## Contributing
34
-
35
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/siteinfo_parser. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
25
+ ```ruby
26
+ response = SiteinfoParser.fetch('https://github.com')
27
+ #response
28
+ {
29
+ "title"=>"The world's leading software development platform GitHub",
30
+ "og_image"=>"https://assets-cdn.github.com/images/modules/open_graph/github-logo.png",
31
+ "og_title"=>"Build software better, together",
32
+ "og_url"=>"https://github.com",
33
+ "og_sitename"=>"GitHub",
34
+ "twitter_card"=>"",
35
+ "twitter_site"=>"",
36
+ "twitter_domain"=>"",
37
+ "description"=>"",
38
+ "favicon"=>"https://www.google.com/s2/favicons?domain=github.com"
39
+ }
40
+ ```
36
41
 
37
42
 
38
43
  ## License
39
44
 
40
45
  The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
41
-
@@ -1,3 +1,3 @@
1
1
  module SiteinfoParser
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
@@ -6,12 +6,12 @@ require 'siteinfo_parser/version'
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "siteinfo_parser"
8
8
  spec.version = SiteinfoParser::VERSION
9
- spec.authors = ["koma"]
9
+ spec.authors = ["masayuki_komatsu"]
10
10
  spec.email = ["koma.5713@gmail.com"]
11
11
 
12
12
  spec.summary = %q{parse to webpage}
13
13
  spec.description = %q{parse to webpage gem}
14
- spec.homepage = "http://notsleeeping.com"
14
+ spec.homepage = "https://github.com/komayuki/siteinfo_paresr"
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'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: siteinfo_parser
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
- - koma
7
+ - masayuki_komatsu
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-03-05 00:00:00.000000000 Z
11
+ date: 2017-03-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -56,7 +56,7 @@ files:
56
56
  - lib/siteinfo_parser.rb
57
57
  - lib/siteinfo_parser/version.rb
58
58
  - siteinfo_parser.gemspec
59
- homepage: http://notsleeeping.com
59
+ homepage: https://github.com/komayuki/siteinfo_paresr
60
60
  licenses:
61
61
  - MIT
62
62
  metadata: {}