cldr-plurals 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8f030dac2488f8587a8c08bb417020586fbf8fb1
4
- data.tar.gz: 6a8e9b73402a09d1d784639a369b6f22730d30e9
3
+ metadata.gz: cb65a6b7e4dd289a47d2b64683d67419180eea2d
4
+ data.tar.gz: a7a267d2a0c9c57820277d531cb4c99971506c22
5
5
  SHA512:
6
- metadata.gz: ac49b1952414dd79e8d5cef92aec0916e8815c29c2a3e354eaf807a26a022af32a09f35cdd12d816c131c3d0d488a07b22caedb9f2f74b452ebae058ac661247
7
- data.tar.gz: e97db6ef1351a1873aea7e0d1c893008e5f4131e1b84f922c6afa03d2563d8b065aab48846276b7f25d6378ae2c6e95836298efcd5691a8a9b30f981f57331fe
6
+ metadata.gz: e0e1bbab1aa3a23be422f860c241aca3bbb9713b9d1c3184b66771152a60d5422b7042023b0f377cdefce5a05e3f4b495fcbcd00b28d338f698b6935027cfcda
7
+ data.tar.gz: 305122106bc6fa9c6ebc27049dfef7e9b297061a06a000abbce702cc79c57efff0d5ba8e02e0d8719d90ac4323d350edb5f3e7381fe4849949dc7c88c92852ed
@@ -1,3 +1,7 @@
1
+ == 1.0.1
2
+
3
+ * Added MIT license.
4
+
1
5
  == 1.0.0
2
6
 
3
7
  * Birthday!
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 Cameron Dutro
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 all
13
+ 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 THE
21
+ SOFTWARE.
@@ -14,5 +14,5 @@ Gem::Specification.new do |s|
14
14
  s.has_rdoc = true
15
15
 
16
16
  s.require_path = 'lib'
17
- s.files = Dir["{lib,spec}/**/*", "Gemfile", "History.txt", "README.md", "Rakefile", "cldr-plurals.gemspec"]
17
+ s.files = Dir["{lib,spec}/**/*", "Gemfile", "History.txt", "LICENSE.txt", "README.md", "Rakefile", "cldr-plurals.gemspec"]
18
18
  end
@@ -1,5 +1,5 @@
1
1
  # encoding: UTF-8
2
2
 
3
3
  module CldrPlurals
4
- VERSION = '1.0.0'
4
+ VERSION = '1.0.1'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cldr-plurals
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cameron Dutro
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-09-30 00:00:00.000000000 Z
11
+ date: 2015-10-13 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Tokenizes and parses CLDR plural rules and provides a mechanism for emitting
14
14
  them as source code
@@ -18,24 +18,25 @@ executables: []
18
18
  extensions: []
19
19
  extra_rdoc_files: []
20
20
  files:
21
+ - Gemfile
22
+ - History.txt
23
+ - LICENSE.txt
24
+ - README.md
25
+ - Rakefile
26
+ - cldr-plurals.gemspec
27
+ - lib/cldr-plurals.rb
28
+ - lib/cldr-plurals/compiler.rb
21
29
  - lib/cldr-plurals/compiler/emitter.rb
22
30
  - lib/cldr-plurals/compiler/nodes.rb
23
31
  - lib/cldr-plurals/compiler/parser.rb
24
32
  - lib/cldr-plurals/compiler/tokenizer.rb
25
- - lib/cldr-plurals/compiler.rb
26
33
  - lib/cldr-plurals/javascript_emitter.rb
27
34
  - lib/cldr-plurals/ruby_emitter.rb
28
35
  - lib/cldr-plurals/version.rb
29
- - lib/cldr-plurals.rb
30
36
  - spec/javascript_sample_spec.rb
31
37
  - spec/ruby_sample_spec.rb
32
38
  - spec/samples.yml
33
39
  - spec/spec_helper.rb
34
- - Gemfile
35
- - History.txt
36
- - README.md
37
- - Rakefile
38
- - cldr-plurals.gemspec
39
40
  homepage: http://github.com/camertron
40
41
  licenses: []
41
42
  metadata: {}
@@ -45,17 +46,17 @@ require_paths:
45
46
  - lib
46
47
  required_ruby_version: !ruby/object:Gem::Requirement
47
48
  requirements:
48
- - - '>='
49
+ - - ">="
49
50
  - !ruby/object:Gem::Version
50
51
  version: '0'
51
52
  required_rubygems_version: !ruby/object:Gem::Requirement
52
53
  requirements:
53
- - - '>='
54
+ - - ">="
54
55
  - !ruby/object:Gem::Version
55
56
  version: '0'
56
57
  requirements: []
57
58
  rubyforge_project:
58
- rubygems_version: 2.0.14
59
+ rubygems_version: 2.4.8
59
60
  signing_key:
60
61
  specification_version: 4
61
62
  summary: Tokenizes and parses CLDR plural rules and provides a mechanism for emitting