ruboty-tweets 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 +4 -4
- data/.env +0 -0
- data/.gitignore +2 -0
- data/README.md +5 -2
- data/lib/ruboty/tweets/version.rb +1 -1
- data/ruboty-tweets.gemspec +7 -1
- metadata +10 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f06a0d5ec4a5203f0eca405fef9254036be858a6
|
|
4
|
+
data.tar.gz: f33b6df2ca7fdf9b0dc3b4d2625dfb4b1f1ba102
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c3a0d0f66eddd16056caea8f499b6ab89a437bdb97592736124dab726e1af749cc990f2df4f4a1144ec2ac434c7e40940a3f1d0e56b4f9f0f71c10a9db7c424c
|
|
7
|
+
data.tar.gz: b3df996777793eb459e04857c24a6837e1f10b4526e31fbd673bab30aac7d063fb940385d49b38b4ad3763d19aabd59f9e8847fc102195324b5d42044820f844
|
data/.env
ADDED
|
File without changes
|
data/.gitignore
CHANGED
data/README.md
CHANGED
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
# Ruboty::Tweets
|
|
2
2
|
|
|
3
|
-
Ruboty handler to follow
|
|
3
|
+
Ruboty handler to follow one's tweets.
|
|
4
|
+
|
|
5
|
+
[DEPRECATION] This gem has been renamed to `ruboty-twitter_tl` and will no longer be supported.
|
|
6
|
+
Please switch to `ruboty-twitter_tl` as soon as possible.
|
|
4
7
|
|
|
5
8
|
## Installation
|
|
6
9
|
|
|
7
10
|
Add this line to your application's Gemfile:
|
|
8
11
|
|
|
9
12
|
```ruby
|
|
10
|
-
gem 'ruboty-tweets'
|
|
13
|
+
gem 'ruboty-tweets'
|
|
11
14
|
```
|
|
12
15
|
|
|
13
16
|
And then execute:
|
data/ruboty-tweets.gemspec
CHANGED
|
@@ -7,11 +7,17 @@ Gem::Specification.new do |spec|
|
|
|
7
7
|
spec.version = Ruboty::Tweets::VERSION
|
|
8
8
|
spec.authors = ['haccht']
|
|
9
9
|
spec.email = ['haccht00@gmail.com']
|
|
10
|
-
spec.summary = "Ruboty handler to follow a user on twitter."
|
|
10
|
+
spec.summary = "[deprecated] Ruboty handler to follow a user on twitter."
|
|
11
11
|
spec.description = spec.summary
|
|
12
12
|
spec.homepage = 'https://github.com/haccht/ruboty-tweets'
|
|
13
13
|
spec.license = 'MIT'
|
|
14
14
|
|
|
15
|
+
spec.post_install_message = <<-MESSAGE
|
|
16
|
+
! The 'ruboty-tweets' gem has been deprecated and has been replaced by 'ruboty-twitter_tl'.
|
|
17
|
+
! See: https://rubygems.org/gems/ruboty-twitter_tl
|
|
18
|
+
! And: https://github.com/haccht/ruboty-twitter_tl
|
|
19
|
+
MESSAGE
|
|
20
|
+
|
|
15
21
|
spec.files = `git ls-files -z`.split("\x0")
|
|
16
22
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
|
17
23
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ruboty-tweets
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- haccht
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-12-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: ruboty
|
|
@@ -66,13 +66,14 @@ dependencies:
|
|
|
66
66
|
- - ">="
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
68
|
version: '0'
|
|
69
|
-
description: Ruboty handler to follow a user on twitter.
|
|
69
|
+
description: "[deprecated] Ruboty handler to follow a user on twitter."
|
|
70
70
|
email:
|
|
71
71
|
- haccht00@gmail.com
|
|
72
72
|
executables: []
|
|
73
73
|
extensions: []
|
|
74
74
|
extra_rdoc_files: []
|
|
75
75
|
files:
|
|
76
|
+
- ".env"
|
|
76
77
|
- ".gitignore"
|
|
77
78
|
- Gemfile
|
|
78
79
|
- LICENSE
|
|
@@ -87,7 +88,10 @@ homepage: https://github.com/haccht/ruboty-tweets
|
|
|
87
88
|
licenses:
|
|
88
89
|
- MIT
|
|
89
90
|
metadata: {}
|
|
90
|
-
post_install_message:
|
|
91
|
+
post_install_message: |2
|
|
92
|
+
! The 'ruboty-tweets' gem has been deprecated and has been replaced by 'ruboty-twitter_tl'.
|
|
93
|
+
! See: https://rubygems.org/gems/ruboty-twitter_tl
|
|
94
|
+
! And: https://github.com/haccht/ruboty-twitter_tl
|
|
91
95
|
rdoc_options: []
|
|
92
96
|
require_paths:
|
|
93
97
|
- lib
|
|
@@ -103,8 +107,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
103
107
|
version: '0'
|
|
104
108
|
requirements: []
|
|
105
109
|
rubyforge_project:
|
|
106
|
-
rubygems_version: 2.4.
|
|
110
|
+
rubygems_version: 2.4.5
|
|
107
111
|
signing_key:
|
|
108
112
|
specification_version: 4
|
|
109
|
-
summary: Ruboty handler to follow a user on twitter.
|
|
113
|
+
summary: "[deprecated] Ruboty handler to follow a user on twitter."
|
|
110
114
|
test_files: []
|