blogbot 0.0.3.beta → 0.0.3
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 +4 -4
- data/README.md +17 -2
- data/blogbot.gemspec +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: eee7e441945dc7412d84ef0ac4644f11f23bd4cf
|
4
|
+
data.tar.gz: 05261181ab37af09ec5d000056f2c4cdcc7970c7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 394f961f9935fadcd99d1309d22443a22e06d1ee1f00d948229daed66b37dbe761c026d86eb3e4f8d6e595ffd47ec5ccdef2218a29a96507ab655c2bf81f1c4f
|
7
|
+
data.tar.gz: 984cd11d228ea31fdffa8504ef7a330b7f00995803929a83f2b92054e65a6a7d390b93b3fdf683a468f47dbba3a7f9e9f12d632812c98651f2edfa961005adb8
|
data/README.md
CHANGED
@@ -8,8 +8,23 @@ The internet is full of noise. Only read the best.
|
|
8
8
|
|
9
9
|
## DISCLAIMER
|
10
10
|
|
11
|
-
This is a working project and may have
|
12
|
-
|
11
|
+
This is a working project and may have issues.
|
12
|
+
|
13
|
+
## INSTALLATION
|
14
|
+
|
15
|
+
gem install blogbot
|
16
|
+
|
17
|
+
## EXAMPLE
|
18
|
+
```ruby
|
19
|
+
require 'blogbot'
|
20
|
+
|
21
|
+
# Make a new blogbot!
|
22
|
+
bot = Blogbot.new
|
23
|
+
|
24
|
+
# Extract most popular links from a website
|
25
|
+
# (Only works if website has most popular section)
|
26
|
+
bot.extract 'http://yourfavoriteblog'
|
27
|
+
```
|
13
28
|
## MIT LICENSE
|
14
29
|
|
15
30
|
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:
|
data/blogbot.gemspec
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: blogbot
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.3
|
4
|
+
version: 0.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- John Mason
|
@@ -52,9 +52,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
52
52
|
version: '1.8'
|
53
53
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
54
54
|
requirements:
|
55
|
-
- - "
|
55
|
+
- - ">="
|
56
56
|
- !ruby/object:Gem::Version
|
57
|
-
version:
|
57
|
+
version: '0'
|
58
58
|
requirements: []
|
59
59
|
rubyforge_project:
|
60
60
|
rubygems_version: 2.4.6
|