ruboty-scorekeeper 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 94050753d44261f488b0b70403b3c9a0145d23d2
4
+ data.tar.gz: a343d20bb8a9f1d0edf6be74888bfbbd0f6789af
5
+ SHA512:
6
+ metadata.gz: b54b81e7d80ac6d1225d9e10d475c9368f7b77e0e90542de7463c277c73446568f63e8d985afe05c3e98ed195cc9b0289d8550f434ac86dcaa8298e1031237b6
7
+ data.tar.gz: e6f720c28c3fb1f67087f0fe9c935986b1c2d19cf401780ea6cd8282224acbaa393a4fa51e5f4b4ea11e3b2732c1494ec037c9f19a1d48119854edb60ca81578
data/.gitignore ADDED
@@ -0,0 +1,22 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+ *.bundle
19
+ *.so
20
+ *.o
21
+ *.a
22
+ mkmf.log
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in ruboty-scorekeeper.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Yoshiori SHOJI
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,37 @@
1
+ # Ruboty::Scorekeeper
2
+
3
+ ruboty handler.
4
+ increment decrement scorekeeper
5
+
6
+ ```
7
+ > r7kamura++
8
+ incremented r7kamura (1 pt)
9
+ > @r7kamura:++
10
+ incremented r7kamura (2 pt)
11
+ > r7kamura:++
12
+ incremented r7kamura (3 pt)
13
+ > con_mame++
14
+ incremented con_mame (1 pt)
15
+ > yoshiori--
16
+ decremented yoshiori (-1 pt)
17
+ > ruboty show scoreboard
18
+ 1 : r7kamura (3 pt)
19
+ 2 : con_mame (1 pt)
20
+ 3 : yoshiori (-1 pt)
21
+ ```
22
+ ## Usage
23
+
24
+ * {name}++ - Increment {name}'s point
25
+ * {name}-- - Decrement {name}'s point
26
+ * scorekeeper - Show scoreboard
27
+ * show scoreboard - Show scoreboard
28
+ * scorekeeper {name} - Show current point of {name}
29
+ * what's the score of {name} - Show current point of {name}
30
+
31
+ ## Contributing
32
+
33
+ 1. Fork it ( https://github.com/yoshiori/ruboty-scorekeeper/fork )
34
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
35
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
36
+ 4. Push to the branch (`git push origin my-new-feature`)
37
+ 5. Create a new Pull Request
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,71 @@
1
+ module Ruboty
2
+ module Handlers
3
+ class Scorekeeper < Base
4
+ NAMESPACE = "scorekeeper"
5
+
6
+ on( /(?<name>.+)\+\+$/,
7
+ name: "increment",
8
+ description: "Increment <name>'s point",
9
+ all: true,
10
+ )
11
+ on( /(?<name>.+)\-\-$/,
12
+ name: "decrement",
13
+ description: "Decrement <name>'s point",
14
+ all: true,
15
+ )
16
+
17
+ on( /scorekeeper$|show(?: me)?(?: the)? (?:scorekeeper|scoreboard)$/i,
18
+ name: "scoreboard",
19
+ description: "Show current point of {name}",
20
+ )
21
+
22
+ on( /scorekeeper (?<name>.+)$|what(?:'s| is)(?: the)? score of (?<name>.+)\??$/i,
23
+ name: "score",
24
+ description: "Show current point of {name}",
25
+ )
26
+ private
27
+
28
+ def increment(message)
29
+ name = normalize_name(message[:name])
30
+ point = scores[name].to_i + 1
31
+ scores[name] = point
32
+ message.reply("incremented #{name} (#{point} pt)")
33
+ end
34
+
35
+ def decrement(message)
36
+ name = normalize_name(message[:name])
37
+ point = scores[name].to_i - 1
38
+ scores[name] = point
39
+ message.reply("decremented #{name} (#{point} pt)")
40
+ end
41
+
42
+ def score(message)
43
+ name = normalize_name(message[:name])
44
+ point = scores[name]
45
+ message.reply("#{name} has #{point} points")
46
+ end
47
+
48
+ def scoreboard(message)
49
+ message.reply(
50
+ scores.sort_by{|key, value|
51
+ -value
52
+ }.map.with_index(1){|data, index|
53
+ "#{index} : #{data.first} (#{data.last} pt)"
54
+ }.join("\n")
55
+ )
56
+ end
57
+
58
+ def scores
59
+ robot.brain.data[NAMESPACE] ||= {}
60
+ end
61
+
62
+ def normalize_name(name)
63
+ name.strip.gsub(ignore_name_matcher,"")
64
+ end
65
+
66
+ def ignore_name_matcher
67
+ /^@|:$/ # IRC, Hipchat, Slack
68
+ end
69
+ end
70
+ end
71
+ end
@@ -0,0 +1,5 @@
1
+ module Ruboty
2
+ module Scorekeeper
3
+ VERSION = "0.0.1"
4
+ end
5
+ end
@@ -0,0 +1,3 @@
1
+ require "ruboty"
2
+ require "ruboty/scorekeeper/version"
3
+ require "ruboty/handlers/scorekeeper"
@@ -0,0 +1,25 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'ruboty/scorekeeper/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "ruboty-scorekeeper"
8
+ spec.version = Ruboty::Scorekeeper::VERSION
9
+ spec.authors = ["Yoshiori SHOJI"]
10
+ spec.email = ["yoshiori@gmail.com"]
11
+ spec.summary = %q{ruboty handler. increment decrement scorekeeper}
12
+ spec.description = %q{ruboty handler. increment decrement scorekeeper}
13
+ spec.homepage = "https://github.com/yoshiori/ruboty-scorekeeper"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_dependency "ruboty"
22
+
23
+ spec.add_development_dependency "bundler", "~> 1.6"
24
+ spec.add_development_dependency "rake"
25
+ end
metadata ADDED
@@ -0,0 +1,95 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ruboty-scorekeeper
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Yoshiori SHOJI
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-07-10 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: ruboty
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.6'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.6'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ description: ruboty handler. increment decrement scorekeeper
56
+ email:
57
+ - yoshiori@gmail.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - ".gitignore"
63
+ - Gemfile
64
+ - LICENSE.txt
65
+ - README.md
66
+ - Rakefile
67
+ - lib/ruboty/handlers/scorekeeper.rb
68
+ - lib/ruboty/scorekeeper.rb
69
+ - lib/ruboty/scorekeeper/version.rb
70
+ - ruboty-scorekeeper.gemspec
71
+ homepage: https://github.com/yoshiori/ruboty-scorekeeper
72
+ licenses:
73
+ - MIT
74
+ metadata: {}
75
+ post_install_message:
76
+ rdoc_options: []
77
+ require_paths:
78
+ - lib
79
+ required_ruby_version: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - ">="
82
+ - !ruby/object:Gem::Version
83
+ version: '0'
84
+ required_rubygems_version: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - ">="
87
+ - !ruby/object:Gem::Version
88
+ version: '0'
89
+ requirements: []
90
+ rubyforge_project:
91
+ rubygems_version: 2.2.2
92
+ signing_key:
93
+ specification_version: 4
94
+ summary: ruboty handler. increment decrement scorekeeper
95
+ test_files: []