flumtter 5.6.0 → 5.6.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 217e1cbdb790213ab36c4df6a07947e38cd3faad
4
- data.tar.gz: f4409392f36fc38708a5fb639e8ecfe9b335dc19
3
+ metadata.gz: 0dc11e675be866e697598135fe48e5d03d6b85d7
4
+ data.tar.gz: e2b088696ad5a4e7badfd3fa89c1654aca12c303
5
5
  SHA512:
6
- metadata.gz: 39612d6048deb36ba9f3444b948275ecd413b35a5b7a876714426b6cd6494259619a18c640ab6c7cc67c52a2d309a158cfbbff2ac42c4ffff1d4afbf1c183000
7
- data.tar.gz: 115c0227be401e4562886a78f9b399958f289bb9450617a8c6fb017432ab91cd4aa69c3d5b6a93dd115eed159f98d4f5c535a6a3652b83f58e1bf04cb119fbee
6
+ metadata.gz: b558afaf60b576c68bde75a4e4521cb85d208b8f6fb61831600a171a0e8e26a65f811f8947b8b3ba6a9ad9e60cf77c3d9471f4928f2b164aa86580793079cdb8
7
+ data.tar.gz: 1c951c6885c2a8dd0e64e36d334c74eb4d8929a8e9a4776bf6ad03ef527ffa08372bd84392dd56911a31d6cb128dea8e957ef29b24dad7866ae0f4fecb614c5b
data/README.md CHANGED
@@ -1,13 +1,22 @@
1
1
  # Flumtter
2
2
 
3
3
  Flumtter is CLI Twitter client.
4
- This client is supported multiple account and plugin.
4
+ This client is supported multiple account, multicolumn and plugin.
5
5
 
6
- ![](https://github.com/flum1025/flumtter/wiki/images/main.png)
6
+ ![](https://github.com/flum1025/flumtter/wiki/images/main.gif)
7
+
8
+ ## Dependencies
9
+ If you use tmux mode, you have to install `tmux`.
7
10
 
8
11
  ## Installation
9
12
  $ gem install flumtter
10
13
 
14
+ - On Ubuntu
15
+ $ apt install ruby ruby-dev build-essential libncurses5-dev tmux
16
+
17
+ - On MacOSX
18
+ $ brew install ruby tmux
19
+
11
20
  ## Usage
12
21
  $ flumtter
13
22
  and help
@@ -19,9 +28,15 @@ and help
19
28
  -s, --non_stream without stream
20
29
  -d, --debug debug mode
21
30
  --args VALUE
31
+ --tweet VALUES new tweet
32
+ --tweet_with_image=V,V new tweet with image
33
+ --tpry pry with twitter instance
34
+ -l, --list user list
22
35
  --timeline_load VALUE load timeline num
23
36
  --[no-]timeline_load? load timeline on init
24
37
  --pry console mode
38
+ --tmux enable tmux mode
39
+ --names=V,V,... set account names with tmux
25
40
 
26
41
  Detailed usage: [How To Use](https://github.com/flum1025/flumtter/wiki/How-To-Use)
27
42
 
data/flumtter.gemspec CHANGED
@@ -28,4 +28,5 @@ Gem::Specification.new do |spec|
28
28
  spec.add_dependency 'dispel', '~> 0.0.8'
29
29
  spec.add_dependency 'terminal-notifier', '~> 1.7.1'
30
30
  spec.add_dependency 'twitter', '~> 6.1.0'
31
+ spec.add_dependency 'tmuxinator'
31
32
  end
@@ -1,4 +1,4 @@
1
- require_relative 'Initializer'
1
+ require_relative 'initializer'
2
2
 
3
3
  module Flumtter
4
4
  module Plugins
@@ -1,3 +1,3 @@
1
1
  module Flumtter
2
- VERSION = "5.6.0"
2
+ VERSION = "5.6.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flumtter
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.6.0
4
+ version: 5.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - flum1025
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-03-18 00:00:00.000000000 Z
11
+ date: 2017-04-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -108,6 +108,20 @@ dependencies:
108
108
  - - "~>"
109
109
  - !ruby/object:Gem::Version
110
110
  version: 6.1.0
111
+ - !ruby/object:Gem::Dependency
112
+ name: tmuxinator
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :runtime
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
111
125
  description: Twitter Client on Terminal
112
126
  email:
113
127
  - flum.1025@gmail.com