mitten 0.0.1 → 0.0.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/README.rdoc CHANGED
@@ -30,29 +30,29 @@ Mitten is A Ruby IRC Bot Pluggable Framework.
30
30
 
31
31
  1. Usage
32
32
 
33
- ./script/server -h
34
- ./script/daemon run -- -h
33
+ ./bin/server -h
34
+ ./bin/daemon run -- -h
35
35
 
36
36
  2. Start
37
37
 
38
- ./script/daemon start
38
+ ./bin/daemon start
39
39
 
40
40
  3. Restart
41
41
 
42
- ./script/daemon restart
42
+ ./bin/daemon restart
43
43
 
44
44
  4. Stop
45
45
 
46
- ./script/daemon stop
46
+ ./bin/daemon stop
47
47
 
48
48
  5. Changed config file
49
49
 
50
- ./script/daemon start -- -c lib/environment.yaml
50
+ ./bin/daemon start -- -c lib/environment.yaml
51
51
 
52
52
  6. Run on the top(not daemonize)
53
53
 
54
- ./script/server
55
- ./script/daemon run
54
+ ./bin/server
55
+ ./bin/daemon run
56
56
 
57
57
 
58
58
  == Rake tasks
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.1
1
+ 0.0.2
@@ -1,12 +1,12 @@
1
1
  ---
2
2
  production:
3
- host: tiarra.example.com
3
+ host: chat.freenode.net
4
4
  port: 6667
5
5
  user: Mitten
6
6
  nick: Mitten
7
- real: Mitten bot via Tiarra
7
+ real: Mitten is IRC Bot Framework
8
8
  pass:
9
- channel: '#Mitten@example'
9
+ channel: '#Mitten'
10
10
  plugin_dir: example # normal => plugins
11
11
  charset:
12
12
  default: utf-8
@@ -25,4 +25,4 @@ development:
25
25
 
26
26
  plugins:
27
27
  Sample:
28
- channel: '#Mitten@example'
28
+ channel: '#Mitten'
data/mitten.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{mitten}
8
- s.version = "0.0.1"
8
+ s.version = "0.0.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Tomohiro, TAIRA"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mitten
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tomohiro, TAIRA