english 0.7.0 → 0.7.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/English.gemspec +3 -4
- data/LICENSE.txt +22 -0
- metadata +11 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8b25123b56a0be48df65ddb54ce410a0d6a53a4a467f67d5f6a24e2b97067f63
|
4
|
+
data.tar.gz: 24e671e12aae901bb83c92bffea3d3e8b38578bd44a0e12ff05ced9d4ccf7951
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 017e64129f69496a945fdbc32445b9babf543956c8908d562fc67d874ba4412a9c82957b11989c60d3410b00338ea83a6dd93263695c32ecbe2172a9818ee354
|
7
|
+
data.tar.gz: 0461c83f11f2362bc1a4cf39976a26beb919b890059bc266264e2b560f68fb1a259e61e63eb3b59ff2db934625606305a1b127f823e7688512f32f09bb77ef91
|
data/English.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |spec|
|
2
2
|
spec.name = "english"
|
3
|
-
spec.version = "0.7.
|
3
|
+
spec.version = "0.7.2"
|
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,9 +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
|
-
spec.bindir = "exe"
|
21
|
-
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
22
21
|
spec.require_paths = ["lib"]
|
23
22
|
end
|
data/LICENSE.txt
ADDED
@@ -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.
|
4
|
+
version: 0.7.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Yukihiro Matsumoto
|
8
|
-
autorequire:
|
9
|
-
bindir:
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-12-14 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.
|
51
|
-
signing_key:
|
53
|
+
rubygems_version: 3.4.0.dev
|
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: []
|