meimei 0.3.0 → 0.3.1
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile +2 -0
- data/Gemfile.lock +1 -0
- data/VERSION +1 -1
- data/lib/meimei.rb +5 -0
- data/meimei.gemspec +97 -0
- metadata +3 -2
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.3.
|
1
|
+
0.3.1
|
data/lib/meimei.rb
CHANGED
data/meimei.gemspec
ADDED
@@ -0,0 +1,97 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = "meimei"
|
8
|
+
s.version = "0.3.1"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["r888888888"]
|
12
|
+
s.date = "2014-03-10"
|
13
|
+
s.description = "If all you need is a simple infobot and don't need a full RFC1459 implementation."
|
14
|
+
s.email = "r888888888@gmail.com"
|
15
|
+
s.extra_rdoc_files = [
|
16
|
+
"LICENSE.txt",
|
17
|
+
"README.rdoc"
|
18
|
+
]
|
19
|
+
s.files = [
|
20
|
+
".document",
|
21
|
+
"Gemfile",
|
22
|
+
"Gemfile.lock",
|
23
|
+
"LICENSE.txt",
|
24
|
+
"README.rdoc",
|
25
|
+
"Rakefile",
|
26
|
+
"VERSION",
|
27
|
+
"cron.sh",
|
28
|
+
"lib/meimei.rb",
|
29
|
+
"lib/meimei/array_extensions.rb",
|
30
|
+
"lib/meimei/client.rb",
|
31
|
+
"lib/meimei/exception_dump.rb",
|
32
|
+
"lib/meimei/persistent_hash.rb",
|
33
|
+
"lib/meimei/server.rb",
|
34
|
+
"meimei.gemspec",
|
35
|
+
"plugins/an2.rb",
|
36
|
+
"plugins/ann.rb",
|
37
|
+
"plugins/autoping.rb",
|
38
|
+
"plugins/cco.rb",
|
39
|
+
"plugins/choose.rb",
|
40
|
+
"plugins/courage.rb",
|
41
|
+
"plugins/dan.rb",
|
42
|
+
"plugins/dg.rb",
|
43
|
+
"plugins/dwiki.rb",
|
44
|
+
"plugins/eta.rb",
|
45
|
+
"plugins/g.rb",
|
46
|
+
"plugins/gc.rb",
|
47
|
+
"plugins/godfinger.rb",
|
48
|
+
"plugins/hammerhell.rb",
|
49
|
+
"plugins/hanase.rb",
|
50
|
+
"plugins/hellheaven.rb",
|
51
|
+
"plugins/help.rb",
|
52
|
+
"plugins/jtime.rb",
|
53
|
+
"plugins/nai_ja_nai.rb",
|
54
|
+
"plugins/note.rb",
|
55
|
+
"plugins/ranking.rb",
|
56
|
+
"plugins/reload.rb",
|
57
|
+
"plugins/retard.rb",
|
58
|
+
"plugins/rs.rb",
|
59
|
+
"plugins/shiningfinger.rb",
|
60
|
+
"plugins/shuffle.rb",
|
61
|
+
"plugins/sugei_inaka.rb",
|
62
|
+
"plugins/suki_dakara.rb",
|
63
|
+
"plugins/ts.rb",
|
64
|
+
"plugins/tsundere.rb",
|
65
|
+
"plugins/tt.rb",
|
66
|
+
"plugins/ttt.rb",
|
67
|
+
"plugins/uptime.rb",
|
68
|
+
"plugins/wawawa.rb",
|
69
|
+
"plugins/weather.rb",
|
70
|
+
"test/helper.rb",
|
71
|
+
"test/test_meimei.rb"
|
72
|
+
]
|
73
|
+
s.homepage = "http://github.com/r888888888/meimei"
|
74
|
+
s.licenses = ["MIT"]
|
75
|
+
s.require_paths = ["lib"]
|
76
|
+
s.rubygems_version = "1.8.23"
|
77
|
+
s.summary = "Minimalistic IRC bot framework"
|
78
|
+
|
79
|
+
if s.respond_to? :specification_version then
|
80
|
+
s.specification_version = 3
|
81
|
+
|
82
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
83
|
+
s.add_runtime_dependency(%q<jeweler>, [">= 0"])
|
84
|
+
s.add_runtime_dependency(%q<rake>, [">= 0"])
|
85
|
+
s.add_runtime_dependency(%q<rdoc>, [">= 0"])
|
86
|
+
else
|
87
|
+
s.add_dependency(%q<jeweler>, [">= 0"])
|
88
|
+
s.add_dependency(%q<rake>, [">= 0"])
|
89
|
+
s.add_dependency(%q<rdoc>, [">= 0"])
|
90
|
+
end
|
91
|
+
else
|
92
|
+
s.add_dependency(%q<jeweler>, [">= 0"])
|
93
|
+
s.add_dependency(%q<rake>, [">= 0"])
|
94
|
+
s.add_dependency(%q<rdoc>, [">= 0"])
|
95
|
+
end
|
96
|
+
end
|
97
|
+
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: meimei
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -81,6 +81,7 @@ files:
|
|
81
81
|
- lib/meimei/exception_dump.rb
|
82
82
|
- lib/meimei/persistent_hash.rb
|
83
83
|
- lib/meimei/server.rb
|
84
|
+
- meimei.gemspec
|
84
85
|
- plugins/an2.rb
|
85
86
|
- plugins/ann.rb
|
86
87
|
- plugins/autoping.rb
|
@@ -133,7 +134,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
133
134
|
version: '0'
|
134
135
|
segments:
|
135
136
|
- 0
|
136
|
-
hash:
|
137
|
+
hash: 2634099626359637905
|
137
138
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
138
139
|
none: false
|
139
140
|
requirements:
|