flumtter 5.6.0 → 5.6.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/README.md +17 -2
- data/flumtter.gemspec +1 -0
- data/lib/flumtter/app/core/plugins.rb +1 -1
- data/lib/flumtter/version.rb +1 -1
- metadata +16 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0dc11e675be866e697598135fe48e5d03d6b85d7
|
|
4
|
+
data.tar.gz: e2b088696ad5a4e7badfd3fa89c1654aca12c303
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
-

|
|
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
data/lib/flumtter/version.rb
CHANGED
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.
|
|
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-
|
|
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
|