knife-twitter 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/README.md +27 -0
- data/lib/chef/knife/twitter_post.rb +2 -1
- data/lib/chef/knife/twitter_timeline.rb +2 -1
- data/lib/knife-twitter.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
YzVlM2RlNjcwOWI3OTBhNzNiNjc3ZTBkNWU3ZDRmOGU5ZTA3NzA0ZQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
ODU0YWE2ZTE0ZGEyYzk2OTEyNTJlMmJiYTc1N2EyM2UzNzNmM2E1ZA==
|
7
7
|
!binary "U0hBNTEy":
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
ZTBlMzY2ZjZhOTdhNDI0MDY3NTA1NThlMjM3NjhlNDI0MDU4Y2IyNzUzNjY4
|
10
|
+
N2JhYWI3ZjQ1YWI4ZGFkZGNiOWZmYTU2N2VjOGJmMTRlODdmNzI2ZWQyYzc4
|
11
|
+
ZWRiODUxMDdmZDVkM2I4OTUwZjM0NDk1MDg4NTJjMzk1YWY4ZDI=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
M2NjOWNlZmExYjBkMDdhMTM5YThkYmRlMjZjNGI1ZWRhOTk5OTBiMzkxMjRj
|
14
|
+
MTc4ZGJhOGI0MDQ1NzY5MzY3MTcwZTZmNmZkOTRiMmJjZTcxNGY5OTMwN2Zm
|
15
|
+
MmJjNzUxYmZhNDVlYmI3NjczZGVkYjcyM2EzMjliNjFhZjkzNzc=
|
data/README.md
CHANGED
@@ -59,6 +59,33 @@ Or use common command line option.
|
|
59
59
|
--twitter_oauth_token_secret
|
60
60
|
```
|
61
61
|
|
62
|
+
## Create your token by shared applicaton. (Optional)
|
63
|
+
|
64
|
+
You can use shared application token that provided by me.
|
65
|
+
|
66
|
+
- My Shared Token: `dQ8DiBEAXgJi50AnkfiKw`
|
67
|
+
- My Shared Secret: `gl3rzCxYs7uYltQLC5JaV6IDr0yeGHPDpodbwJ5Skok`
|
68
|
+
|
69
|
+
A client name is `knife-plugin`.
|
70
|
+
|
71
|
+
```
|
72
|
+
$ gem install get-twitter-oauth-token --no-ri --no-rdoc
|
73
|
+
Fetching: oauth-0.4.7.gem (100%)
|
74
|
+
Successfully installed oauth-0.4.7
|
75
|
+
Fetching: get-twitter-oauth-token-1.0.1.gem (100%)
|
76
|
+
Successfully installed get-twitter-oauth-token-1.0.1
|
77
|
+
2 gems installed
|
78
|
+
|
79
|
+
$ get-twitter-oauth-token
|
80
|
+
Consumer Key: dQ8DiBEAXgJi50AnkfiKw
|
81
|
+
Consumer Secret: gl3rzCxYs7uYltQLC5JaV6IDr0yeGHPDpodbwJ5Skok
|
82
|
+
PIN: {INPUT PIN}
|
83
|
+
|
84
|
+
Token: {your token here.}
|
85
|
+
Secret: {your token_secret here.}
|
86
|
+
|
87
|
+
```
|
88
|
+
|
62
89
|
## SubCommands
|
63
90
|
|
64
91
|
** TWITTER COMMANDS **
|
data/lib/knife-twitter.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: knife-twitter
|
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
|
- sawanoboly
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-05-
|
11
|
+
date: 2013-05-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: chef
|