azuma 0.0.2 → 0.0.3
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.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/azuma.gemspec +2 -4
- data/lib/azuma.rb +5 -5
- data/lib/azuma/{core.rb → designator.rb} +1 -1
- data/lib/azuma/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1c743310cbf3fb586bb517f437179ebdbca6048f
|
|
4
|
+
data.tar.gz: ddc7b2497436f0f50abed7517f0b8d8a83140997
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5778d2fa3bf1e7517617bb83a317247c900e6dd43ae398304b58f0162d43f3eea161c78d46dea903c9b41d69dd109cabe5de27d854ab19a789867ad799833db7
|
|
7
|
+
data.tar.gz: edd4b099d557a9090b2cc74b656077eac909b2ddd6683952e5c8601f0e162203fa64fbc955ef2f7095588044d29b61915129f1cc5189146c6ab78c3ba0f969d1
|
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# azuma (雷) [](https://travis-ci.org/koic/azuma) [](http://badge.fury.io/rb/azuma)
|
|
2
2
|
|
|
3
|
-
Decide the order of Lightning
|
|
3
|
+
Decide the order of Lightning Talkers.
|
|
4
4
|
|
|
5
5
|
## INSTALL
|
|
6
6
|
|
data/azuma.gemspec
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
# encoding: utf-8
|
|
2
|
-
|
|
3
1
|
$:.push File.expand_path('../lib', __FILE__)
|
|
4
2
|
|
|
5
3
|
require 'azuma/version'
|
|
@@ -7,8 +5,8 @@ require 'azuma/version'
|
|
|
7
5
|
Gem::Specification.new do |s|
|
|
8
6
|
s.platform = Gem::Platform::RUBY
|
|
9
7
|
s.name = 'azuma'
|
|
10
|
-
s.summary = 'Decide the order of Lightning
|
|
11
|
-
s.description = 'Decide the order of Lightning
|
|
8
|
+
s.summary = 'Decide the order of Lightning Talkers.'
|
|
9
|
+
s.description = 'Decide the order of Lightning Talkers.'
|
|
12
10
|
|
|
13
11
|
s.version = Azuma::VERSION
|
|
14
12
|
|
data/lib/azuma.rb
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
require 'azuma/announcement'
|
|
2
|
-
require 'azuma/
|
|
2
|
+
require 'azuma/designator'
|
|
3
3
|
|
|
4
|
-
Azuma::
|
|
4
|
+
Azuma::Designator.prepend Azuma::Announcement
|
|
5
5
|
|
|
6
6
|
module Azuma
|
|
7
7
|
def entry(talkers, language)
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
8
|
+
designator = Azuma::Designator.new(talkers)
|
|
9
|
+
designator.language = language
|
|
10
|
+
designator
|
|
11
11
|
end
|
|
12
12
|
|
|
13
13
|
module_function :entry
|
data/lib/azuma/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: azuma
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Koichi ITO
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-07-
|
|
11
|
+
date: 2015-07-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rspec
|
|
@@ -24,7 +24,7 @@ dependencies:
|
|
|
24
24
|
- - ">="
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: 3.0.0
|
|
27
|
-
description: Decide the order of Lightning
|
|
27
|
+
description: Decide the order of Lightning Talkers.
|
|
28
28
|
email: koic.ito@gmail.com
|
|
29
29
|
executables:
|
|
30
30
|
- azuma
|
|
@@ -38,7 +38,7 @@ files:
|
|
|
38
38
|
- lib/azuma.rb
|
|
39
39
|
- lib/azuma/announcement.rb
|
|
40
40
|
- lib/azuma/cli.rb
|
|
41
|
-
- lib/azuma/
|
|
41
|
+
- lib/azuma/designator.rb
|
|
42
42
|
- lib/azuma/drb.rb
|
|
43
43
|
- lib/azuma/version.rb
|
|
44
44
|
homepage: http://github.com/koic/azuma
|
|
@@ -64,5 +64,5 @@ rubyforge_project:
|
|
|
64
64
|
rubygems_version: 2.4.8
|
|
65
65
|
signing_key:
|
|
66
66
|
specification_version: 4
|
|
67
|
-
summary: Decide the order of Lightning
|
|
67
|
+
summary: Decide the order of Lightning Talkers.
|
|
68
68
|
test_files: []
|