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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 42f703a80c147c107b897b8d43ac3313305d570c
4
- data.tar.gz: d20778c215de81b325fb960a4a9a23cc7eb9b264
3
+ metadata.gz: f06a0d5ec4a5203f0eca405fef9254036be858a6
4
+ data.tar.gz: f33b6df2ca7fdf9b0dc3b4d2625dfb4b1f1ba102
5
5
  SHA512:
6
- metadata.gz: 20322988d05d4053cebf5a11085e4db00b4f8ae2cec1766ac7c79272b0b477f4948256744930df065da0c2cfc404735feef32ac250843d2c1a0e078f420bf000
7
- data.tar.gz: 5d36dcc2a4e9379175a77e95f4e64c5167f427d9ffb6fbd52b5e5f7338ad202952e986fc4816b3d39df54856d4107d35f8da12ce3a404dc55ccde910b272df4a
6
+ metadata.gz: c3a0d0f66eddd16056caea8f499b6ab89a437bdb97592736124dab726e1af749cc990f2df4f4a1144ec2ac434c7e40940a3f1d0e56b4f9f0f71c10a9db7c424c
7
+ data.tar.gz: b3df996777793eb459e04857c24a6837e1f10b4526e31fbd673bab30aac7d063fb940385d49b38b4ad3763d19aabd59f9e8847fc102195324b5d42044820f844
data/.env ADDED
File without changes
data/.gitignore CHANGED
@@ -1,3 +1,5 @@
1
1
  /.bundle/
2
2
  /Gemfile.lock
3
+ /vendor/
4
+ /pkg/
3
5
  *.bundle
data/README.md CHANGED
@@ -1,13 +1,16 @@
1
1
  # Ruboty::Tweets
2
2
 
3
- Ruboty handler to follow a user on twitter.
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' :github => 'haccht/ruboty-tweets'
13
+ gem 'ruboty-tweets'
11
14
  ```
12
15
 
13
16
  And then execute:
@@ -1,5 +1,5 @@
1
1
  module Ruboty
2
2
  module Tweets
3
- VERSION = '0.1.0'
3
+ VERSION = '0.1.1'
4
4
  end
5
5
  end
@@ -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.0
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-10-26 00:00:00.000000000 Z
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.8
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: []