english 0.7.0 → 0.7.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/English.gemspec +3 -2
  3. data/LICENSE.txt +22 -0
  4. metadata +10 -7
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9d377452da7d72cc144fdb11dd2040f481280094e424f9c8a50a6430c135e4ff
4
- data.tar.gz: 12c628e6adc8d173282a30eb4a54e7e9aabe5be080f67b9305a8991e32031f7d
3
+ metadata.gz: '0685b573ee7fa8d76de98281fadc320192ed1f57813f51878f8a379bd3923d12'
4
+ data.tar.gz: 8c4ce5cc848dcf6856cc7be4f423d83bc68f12d80a0c748e59a8baf0a48e39ac
5
5
  SHA512:
6
- metadata.gz: 4feb7f2cf93c802218839e8fa925adc36cc007172e8443fd0f4a0efc33d9029b39f02fd349148a852be6fd2e8659fcdc03e4e8c7bc3c7719752a541dae46007e
7
- data.tar.gz: 8bbf34ab65acdbe7e6ea4e4888de3a8ebded76d3b705421892aaa213b345c6fb725b1269b4a4befed2b2c231a4205497209bd3063464e6aa1c8171d53e6bbeb0
6
+ metadata.gz: a22585d167d57cbcad6de769db9238f20fd1552ce4543d46f4749d5553d39817b6c9e461ae9b1e6c7a9042a67951117c74562fb3ff50c81c549d26cbe498dd85
7
+ data.tar.gz: 319545b13dd3d3d64846df39f9db23e5491b0927afa52feee1f753525019a66d6ff13a27aed7bb915b9e7f256679c7079354e4fc38cf65d6ec2caf7f32736199
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |spec|
2
2
  spec.name = "english"
3
- spec.version = "0.7.0"
3
+ spec.version = "0.7.1"
4
4
  spec.authors = ["Yukihiro Matsumoto"]
5
5
  spec.email = ["matz@ruby-lang.org"]
6
6
 
@@ -8,6 +8,7 @@ Gem::Specification.new do |spec|
8
8
  spec.description = %q{Require 'English.rb' to reference global variables with less cryptic names.}
9
9
  spec.homepage = "https://github.com/ruby/English"
10
10
  spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
11
+ spec.licenses = ["Ruby", "BSD-2-Clause"]
11
12
 
12
13
  spec.metadata["homepage_uri"] = spec.homepage
13
14
  spec.metadata["source_code_uri"] = spec.homepage
@@ -15,7 +16,7 @@ Gem::Specification.new do |spec|
15
16
  # Specify which files should be added to the gem when it is released.
16
17
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
17
18
  spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
18
- `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
19
+ `git ls-files -z 2>/dev/null`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
19
20
  end
20
21
  spec.bindir = "exe"
21
22
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
@@ -0,0 +1,22 @@
1
+ Copyright (C) 1993-2013 Yukihiro Matsumoto. All rights reserved.
2
+
3
+ Redistribution and use in source and binary forms, with or without
4
+ modification, are permitted provided that the following conditions
5
+ are met:
6
+ 1. Redistributions of source code must retain the above copyright
7
+ notice, this list of conditions and the following disclaimer.
8
+ 2. Redistributions in binary form must reproduce the above copyright
9
+ notice, this list of conditions and the following disclaimer in the
10
+ documentation and/or other materials provided with the distribution.
11
+
12
+ THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
13
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
14
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
15
+ ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
16
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
17
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
18
+ OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
19
+ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
20
+ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
21
+ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
22
+ SUCH DAMAGE.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: english
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yukihiro Matsumoto
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-04-07 00:00:00.000000000 Z
11
+ date: 2020-12-22 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Require 'English.rb' to reference global variables with less cryptic
14
14
  names.
@@ -22,17 +22,20 @@ files:
22
22
  - English.gemspec
23
23
  - Gemfile
24
24
  - Gemfile.lock
25
+ - LICENSE.txt
25
26
  - README.md
26
27
  - Rakefile
27
28
  - bin/console
28
29
  - bin/setup
29
30
  - lib/English.rb
30
31
  homepage: https://github.com/ruby/English
31
- licenses: []
32
+ licenses:
33
+ - Ruby
34
+ - BSD-2-Clause
32
35
  metadata:
33
36
  homepage_uri: https://github.com/ruby/English
34
37
  source_code_uri: https://github.com/ruby/English
35
- post_install_message:
38
+ post_install_message:
36
39
  rdoc_options: []
37
40
  require_paths:
38
41
  - lib
@@ -47,8 +50,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
47
50
  - !ruby/object:Gem::Version
48
51
  version: '0'
49
52
  requirements: []
50
- rubygems_version: 3.2.0.pre1
51
- signing_key:
53
+ rubygems_version: 3.2.2
54
+ signing_key:
52
55
  specification_version: 4
53
56
  summary: Require 'English.rb' to reference global variables with less cryptic names.
54
57
  test_files: []