knife-twitter 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,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- ZjBmZDQ1OGI1MTRmZGM4NjVlYTNkNGQ0OGJlMGU2Y2U4ZTA1M2YxYw==
4
+ YzVlM2RlNjcwOWI3OTBhNzNiNjc3ZTBkNWU3ZDRmOGU5ZTA3NzA0ZQ==
5
5
  data.tar.gz: !binary |-
6
- NGI2NzhlYzc5ZWE1NzZiYmVjMTA5YjBkZjZkMTJmNmExNTJkM2NkZQ==
6
+ ODU0YWE2ZTE0ZGEyYzk2OTEyNTJlMmJiYTc1N2EyM2UzNzNmM2E1ZA==
7
7
  !binary "U0hBNTEy":
8
8
  metadata.gz: !binary |-
9
- ZmE3MDk5ZTc4Mzg2MDY3M2VhODdhODg5ZGE4ZmUwY2M1MmU2ZWFlZTE4NzI2
10
- YTE2MGQyMGUyNjdmMzYyMWFiOGYwMTQyNGJjODIyZDhiNTQyMGUzYjdmMTE2
11
- ZDAzNWQyNmJhM2RjOWY2MmI0MmQ0MjU3MmU4ZTQ2MDkwZTNlNzQ=
9
+ ZTBlMzY2ZjZhOTdhNDI0MDY3NTA1NThlMjM3NjhlNDI0MDU4Y2IyNzUzNjY4
10
+ N2JhYWI3ZjQ1YWI4ZGFkZGNiOWZmYTU2N2VjOGJmMTRlODdmNzI2ZWQyYzc4
11
+ ZWRiODUxMDdmZDVkM2I4OTUwZjM0NDk1MDg4NTJjMzk1YWY4ZDI=
12
12
  data.tar.gz: !binary |-
13
- N2YzYTNmMDViOTc3MDhlMjU2MzcxOTRlNjM3YTNiMmVkOGZlYzllODc0MzQz
14
- NDBkYWUyMjU4MDk3YTlmZDE0Njc0ZjlmYjFhMWQ4NDEzOWE0MzY4NTNiYTlh
15
- NTUyM2U4ZjE4NzMzMjExOGE0OGFkYmQ3MDM5ODgxMzM1ZmJlYTk=
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 **
@@ -1,4 +1,5 @@
1
- require "knife-twitter"
1
+ #require "knife-twitter"
2
+ require 'chef/knife/twitter'
2
3
  require 'chef/knife'
3
4
 
4
5
  class Chef
@@ -1,4 +1,5 @@
1
- require "knife-twitter"
1
+ #require "knife-twitter"
2
+ require 'chef/knife/twitter'
2
3
  require 'chef/knife'
3
4
 
4
5
  class Chef
data/lib/knife-twitter.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  module Knife
2
2
  module Twitter
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.1"
4
4
  end
5
5
  end
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.0
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-13 00:00:00.000000000 Z
11
+ date: 2013-05-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: chef