jugyo-termtter 1.1.1 → 1.1.2
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.
- data/Rakefile +1 -1
- data/lib/termtter/config_template.erb +18 -0
- data/lib/termtter/version.rb +1 -1
- metadata +2 -1
data/Rakefile
CHANGED
|
@@ -16,7 +16,7 @@ Gem::Specification.new do |s|
|
|
|
16
16
|
s.version = '#{Termtter::VERSION}'
|
|
17
17
|
s.summary = "Terminal based Twitter client"
|
|
18
18
|
s.description = "Termtter is a terminal based Twitter client"
|
|
19
|
-
s.files = %w( #{Dir['lib/**/*.rb'].join(' ')}
|
|
19
|
+
s.files = %w( #{Dir['lib/**/*.rb', 'lib/**/*.erb'].join(' ')}
|
|
20
20
|
#{Dir['spec/**/*.rb'].join(' ')}
|
|
21
21
|
#{Dir['test/**/*.rb', 'test/**/*.json'].join(' ')}
|
|
22
22
|
README.rdoc
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
|
|
3
|
+
config.user_name = '<%= user_name %>'
|
|
4
|
+
config.password = '<%= password %>'
|
|
5
|
+
#config.update_interval = 120
|
|
6
|
+
#config.proxy.host = 'proxy host'
|
|
7
|
+
#config.proxy.port = '8080'
|
|
8
|
+
#config.proxy.user_name = 'proxy user'
|
|
9
|
+
#config.proxy.password = 'proxy password'
|
|
10
|
+
|
|
11
|
+
Termtter::Client.init do |t|
|
|
12
|
+
<%- standard_plugins.each do |plugin| -%>
|
|
13
|
+
t.plug '<%= plugin %>'
|
|
14
|
+
<%- end -%>
|
|
15
|
+
<%- (plugins - standard_plugins).each do |plugin| -%>
|
|
16
|
+
# t.plug '<%= plugin %>'
|
|
17
|
+
<%- end -%>
|
|
18
|
+
end
|
data/lib/termtter/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jugyo-termtter
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- jugyo
|
|
@@ -160,6 +160,7 @@ files:
|
|
|
160
160
|
- lib/termtter/task_manager.rb
|
|
161
161
|
- lib/termtter/version.rb
|
|
162
162
|
- lib/termtter.rb
|
|
163
|
+
- lib/termtter/config_template.erb
|
|
163
164
|
- spec/plugins/cool_spec.rb
|
|
164
165
|
- spec/plugins/english_spec.rb
|
|
165
166
|
- spec/plugins/fib_spec.rb
|