blogbot 0.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +19 -0
  3. data/blogbot.gemspec +21 -0
  4. data/lib/blogbot.rb +7 -0
  5. metadata +60 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: fc9f053b3a4225f4ce588d59d4e9850df086599d
4
+ data.tar.gz: 6df54929666312bb160366e24719d80f59726d2e
5
+ SHA512:
6
+ metadata.gz: dbe91b12f4edd95ef9fba8d6f5d04f029bc03fb194419e2d542389bda09a922f4761ccad57b928f8ebce218e556739cfaa5092cf8113dcc9e260a94968ee6fb1
7
+ data.tar.gz: 92c202b4633b24e13616491dffa717c2b2f0d2aa4d21255694859a65a4e0a1fde7dc0993b2e34fb89d73b585edf9d7ecc5df1c90101c3536b018ee91d813fd5e
data/README.md ADDED
@@ -0,0 +1,19 @@
1
+ # blogbot
2
+
3
+ Bot that crawls the most popular articles from websites.
4
+
5
+ ## DESCRIPTION
6
+
7
+ The internet is full of noise. Only read the best
8
+
9
+ ## DISCLAIMER
10
+
11
+ This is a working project and may have multiple bugs/issues.
12
+
13
+ ## MIT LICENSE
14
+
15
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
16
+
17
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
18
+
19
+ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/blogbot.gemspec ADDED
@@ -0,0 +1,21 @@
1
+
2
+
3
+ Gem::Specification.new do |gem|
4
+ gem.name = 'blogbot'
5
+ gem.version = '0.0.0'
6
+ gem.date = '2015-09-22'
7
+ gem.platform = Gem::Platform::RUBY
8
+ gem.required_ruby_version = '>= 1.8'
9
+
10
+ gem.files = `git ls-files`.split("\n")
11
+ gem.test_files = `git ls-files -- test/*`.split("\n")
12
+
13
+ gem.summary = 'Bot that crawls the most popular articles from websites. '
14
+ gem.description = 'The internet is full of noise. Only read the best.'
15
+ gem.authors = ['John Mason']
16
+ gem.email = 'mace2345@gmail.com'
17
+ gem.homepage = 'https://github.com/m8ss/amazon-search'
18
+ gem.license = 'MIT'
19
+
20
+ gem.add_runtime_dependency('mechanize', '~> 2.7')
21
+ end
data/lib/blogbot.rb ADDED
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'mechanize'
4
+
5
+ # Blogbot module
6
+ module Blogbot
7
+ end
metadata ADDED
@@ -0,0 +1,60 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: blogbot
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ platform: ruby
6
+ authors:
7
+ - John Mason
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-09-22 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: mechanize
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '2.7'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '2.7'
27
+ description: The internet is full of noise. Only read the best.
28
+ email: mace2345@gmail.com
29
+ executables: []
30
+ extensions: []
31
+ extra_rdoc_files: []
32
+ files:
33
+ - README.md
34
+ - blogbot.gemspec
35
+ - lib/blogbot.rb
36
+ homepage: https://github.com/m8ss/amazon-search
37
+ licenses:
38
+ - MIT
39
+ metadata: {}
40
+ post_install_message:
41
+ rdoc_options: []
42
+ require_paths:
43
+ - lib
44
+ required_ruby_version: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - ">="
47
+ - !ruby/object:Gem::Version
48
+ version: '1.8'
49
+ required_rubygems_version: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ requirements: []
55
+ rubyforge_project:
56
+ rubygems_version: 2.4.6
57
+ signing_key:
58
+ specification_version: 4
59
+ summary: Bot that crawls the most popular articles from websites.
60
+ test_files: []