get_pocket_send 0.0.2 → 0.1.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 +8 -13
- data/bin/get_pocket_send +2 -1
- data/lib/get_pocket_send/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 58819321977d9efa6433d086653891c66fa0c1d6
|
|
4
|
+
data.tar.gz: 34dc337bbf3712ea39ce108f42563df3dc64f75b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 36523e956bc74fe9f8d29e7694955e056cb341d116eb9f9320263ac571c99b8e0d072adfb78e385ade4e2f60731747b99e193ab0143f9df087c594d1cf9b7cf6
|
|
7
|
+
data.tar.gz: 04791897515c20c8654632dfd6db0c84ef5240c345f0ff37ad7aab1556d4002c6eb744b4378d392fb5c043b658b358501fbad3bd8a44b7bb16298549f56ab8a0
|
data/README.md
CHANGED
|
@@ -1,30 +1,25 @@
|
|
|
1
1
|
# GetPocketSend
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
rubygems: https://rubygems.org/gems/get_pocket_send
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
Add this line to your application's Gemfile:
|
|
8
|
-
|
|
9
|
-
```ruby
|
|
10
|
-
gem 'get_pocket_send'
|
|
11
|
-
```
|
|
5
|
+
This is simple gem for scrapping articles from http://itc.ua/ to your Pocket app.
|
|
12
6
|
|
|
13
|
-
And then execute:
|
|
14
7
|
|
|
15
|
-
|
|
8
|
+
## Installation
|
|
16
9
|
|
|
17
|
-
|
|
10
|
+
Install it yourself as:
|
|
18
11
|
|
|
19
12
|
$ gem install get_pocket_send
|
|
20
13
|
|
|
21
14
|
## Usage
|
|
22
15
|
|
|
23
|
-
|
|
16
|
+
simple run next command:
|
|
17
|
+
|
|
18
|
+
$ get_pocket_sent 'your_email' 'your_password'
|
|
24
19
|
|
|
25
20
|
## Contributing
|
|
26
21
|
|
|
27
|
-
1. Fork it
|
|
22
|
+
1. Fork it
|
|
28
23
|
2. Create your feature branch (`git checkout -b my-new-feature`)
|
|
29
24
|
3. Commit your changes (`git commit -am 'Add some feature'`)
|
|
30
25
|
4. Push to the branch (`git push origin my-new-feature`)
|
data/bin/get_pocket_send
CHANGED