ruboty-no_more_bocchi 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: a688840bebfe9abcb7fd1826a57c91ab191d67c9
4
+ data.tar.gz: e821d52594da207a6ce978e41fe197d945652bc5
5
+ SHA512:
6
+ metadata.gz: d7e1edc3739268b9136d5214e90e0913f107955a6a9293e1fec662847f391d9d0ff1b3134f1e0f00d49947ead2ee1f4c4edd9bae2b6f918b9c11009c8b21991a
7
+ data.tar.gz: d9436683b80137e9650da42e89839f1e25e4782d016598f254671c0f0662e6c817377c6285da12435df02c8329825857a106184164d5417bf7178051825d623f
@@ -0,0 +1,10 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ /vendor\/bundle
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.2.1
4
+ before_install: gem install bundler -v 1.10.6
@@ -0,0 +1,13 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
4
+
5
+ We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, or religion.
6
+
7
+ Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
8
+
9
+ Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
10
+
11
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
12
+
13
+ This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in ruboty-no_more_bocchi.gemspec
4
+ gemspec
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 akira.takahashi
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,54 @@
1
+ # Ruboty::NoMoreBocchi
2
+
3
+ a very simple grouping tool
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'ruboty-no_more_bocchi'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install ruboty-no_more_bocchi
20
+
21
+ ## Usage
22
+
23
+ ```
24
+ @ruboty no more bocchi 4 groups hoge, huga, piyo, pico, mem, women
25
+ 以下のようなチーム分けになりました。
26
+ Aチーム
27
+ * women
28
+ * hoge
29
+
30
+ Bチーム
31
+ * mem
32
+ * pico
33
+
34
+ Cチーム
35
+ * huga
36
+
37
+ Dチーム
38
+ * piyo
39
+ ```
40
+
41
+ ## Development
42
+
43
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
44
+
45
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
46
+
47
+ ## Contributing
48
+
49
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/ruboty-no_more_bocchi. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](contributor-covenant.org) code of conduct.
50
+
51
+
52
+ ## License
53
+
54
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "ruboty/no_more_bocchi"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
6
+
7
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,13 @@
1
+ require "ruboty/no_more_bocchi/actions/no_more_bocchi"
2
+
3
+ module Ruboty
4
+ module Handlers
5
+ class NoMoreBocchi < Base
6
+ on /no more bocchi ?(?<group_count>.+)? groups ?(?<people>.+)?/, name: 'no_more_bocchi', description: 'TODO: write your description'
7
+
8
+ def no_more_bocchi(message)
9
+ Ruboty::NoMoreBocchi::Actions::NoMoreBocchi.new(message).call
10
+ end
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,8 @@
1
+ require "ruboty/no_more_bocchi/version"
2
+ require "ruboty/handlers/no_more_bocchi"
3
+
4
+ module Ruboty
5
+ module NoMoreBocchi
6
+ # Your code goes here...
7
+ end
8
+ end
@@ -0,0 +1,63 @@
1
+ module Ruboty
2
+ module NoMoreBocchi
3
+ module Actions
4
+ class NoMoreBocchi < Ruboty::Actions::Base
5
+
6
+ def call
7
+ groups, bocchi_candidates = grouping_member(people,[])
8
+ groups.reduce(bocchi_candidates) do |candidates, group|
9
+ choice = candidates.sample
10
+ group.push choice unless choice.nil?
11
+ candidates - [choice]
12
+ end
13
+ message.reply(result_message(groups))
14
+ end
15
+
16
+ private
17
+
18
+ def grouping_member(remaining_member, groups)
19
+ new_group = remaining_member.sample(assign_member)
20
+ groups.push(new_group)
21
+ if groups.length < necessary_group_count
22
+ grouping_member(remaining_member - new_group, groups)
23
+ else
24
+ return groups, remaining_member - new_group
25
+ end
26
+ end
27
+
28
+ def result_message(groups)
29
+ result_messages = []
30
+ groups.zip(group_names.first(groups.length)).map do |group_name_and_member|
31
+ members = group_name_and_member.first
32
+ group_name = group_name_and_member.last
33
+ result_messages.push <<-"MES"
34
+ #{group_name}チーム
35
+ #{members.map { |member| " * #{member}" }.join("\n") }
36
+ MES
37
+ end
38
+
39
+ <<-"EOS"
40
+ 以下のようなチーム分けになりました。
41
+ #{result_messages.join("\n")}
42
+ EOS
43
+ end
44
+
45
+ def assign_member
46
+ (people.length / necessary_group_count)
47
+ end
48
+
49
+ def people
50
+ message[:people].split(/,/)
51
+ end
52
+
53
+ def necessary_group_count
54
+ message[:group_count].to_i || 2
55
+ end
56
+
57
+ def group_names
58
+ ("A".."Z")
59
+ end
60
+ end
61
+ end
62
+ end
63
+ end
@@ -0,0 +1,5 @@
1
+ module Ruboty
2
+ module NoMoreBocchi
3
+ VERSION = "0.1.1"
4
+ end
5
+ end
@@ -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/no_more_bocchi/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "ruboty-no_more_bocchi"
8
+ spec.version = Ruboty::NoMoreBocchi::VERSION
9
+ spec.authors = ["akira.takahashi"]
10
+ spec.email = ["rike422@gmail.com"]
11
+ spec.summary = %q{very simple grouping tool}
12
+ spec.description = %q{very simple grouping tool}
13
+ spec.homepage = "https://github.com/rike422/ruboty-no_more_bocchi"
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_runtime_dependency "ruboty"
22
+ spec.add_development_dependency "bundler", "~> 1.10"
23
+ spec.add_development_dependency "rake", "~> 10.0"
24
+ spec.add_development_dependency "rspec"
25
+ end
@@ -0,0 +1,11 @@
1
+ require 'spec_helper'
2
+
3
+ describe Ruboty::NoMoreBocchi do
4
+ it 'has a version number' do
5
+ expect(Ruboty::NoMoreBocchi::VERSION).not_to be nil
6
+ end
7
+
8
+ it 'does something useful' do
9
+ expect(false).to eq(true)
10
+ end
11
+ end
@@ -0,0 +1,2 @@
1
+ $LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
2
+ require 'ruboty/no_more_bocchi'
metadata ADDED
@@ -0,0 +1,121 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ruboty-no_more_bocchi
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ platform: ruby
6
+ authors:
7
+ - akira.takahashi
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-10-12 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.10'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.10'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '10.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '10.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rspec
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ description: very simple grouping tool
70
+ email:
71
+ - rike422@gmail.com
72
+ executables:
73
+ - console
74
+ - setup
75
+ extensions: []
76
+ extra_rdoc_files: []
77
+ files:
78
+ - ".gitignore"
79
+ - ".rspec"
80
+ - ".travis.yml"
81
+ - CODE_OF_CONDUCT.md
82
+ - Gemfile
83
+ - LICENSE.txt
84
+ - README.md
85
+ - Rakefile
86
+ - bin/console
87
+ - bin/setup
88
+ - lib/ruboty/handlers/no_more_bocchi.rb
89
+ - lib/ruboty/no_more_bocchi.rb
90
+ - lib/ruboty/no_more_bocchi/actions/no_more_bocchi.rb
91
+ - lib/ruboty/no_more_bocchi/version.rb
92
+ - ruboty-no_more_bocchi.gemspec
93
+ - spec/ruboty/no_more_bocchi_spec.rb
94
+ - spec/spec_helper.rb
95
+ homepage: https://github.com/rike422/ruboty-no_more_bocchi
96
+ licenses:
97
+ - MIT
98
+ metadata: {}
99
+ post_install_message:
100
+ rdoc_options: []
101
+ require_paths:
102
+ - lib
103
+ required_ruby_version: !ruby/object:Gem::Requirement
104
+ requirements:
105
+ - - ">="
106
+ - !ruby/object:Gem::Version
107
+ version: '0'
108
+ required_rubygems_version: !ruby/object:Gem::Requirement
109
+ requirements:
110
+ - - ">="
111
+ - !ruby/object:Gem::Version
112
+ version: '0'
113
+ requirements: []
114
+ rubyforge_project:
115
+ rubygems_version: 2.4.8
116
+ signing_key:
117
+ specification_version: 4
118
+ summary: very simple grouping tool
119
+ test_files:
120
+ - spec/ruboty/no_more_bocchi_spec.rb
121
+ - spec/spec_helper.rb