standardrb 1.0.0 → 1.0.1
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/Gemfile +1 -1
- data/Gemfile.lock +28 -21
- data/LICENSE.txt +20 -0
- data/README.md +5 -2
- data/Rakefile +3 -1
- data/standardrb.gemspec +12 -12
- metadata +18 -18
- data/bin/console +0 -14
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3e5a6abe4254f50809fa38733e04369ef3cb963ffd80b1b71f936c8fab1d8783
|
|
4
|
+
data.tar.gz: e945e79efd942e3b2beabc254563ef3fa24aba9f1f35ffc5187246c67742cf44
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c3e15c8c7eaf76e714279a70876aaf369ffab6614cc316f68a2c78a329bafaea2b6634c7a60fd940c92e35d1c7134314d1396800083bba530daab00ee1cbd557
|
|
7
|
+
data.tar.gz: ab6043ec0b5cfd159113cf941cde7b18ea6dc832da5cc93101d2e25589d34159ee966a2b9112ee6b898c76c6564d300552e9d08428459cea11afd2ecfdfd8d92
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,40 +1,47 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
standardrb (1.0.
|
|
4
|
+
standardrb (1.0.1)
|
|
5
5
|
standard
|
|
6
6
|
|
|
7
7
|
GEM
|
|
8
8
|
remote: https://rubygems.org/
|
|
9
9
|
specs:
|
|
10
|
-
ast (2.4.
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
rubocop (
|
|
19
|
-
jaro_winkler (~> 1.5.1)
|
|
10
|
+
ast (2.4.2)
|
|
11
|
+
parallel (1.21.0)
|
|
12
|
+
parser (3.1.0.0)
|
|
13
|
+
ast (~> 2.4.1)
|
|
14
|
+
rainbow (3.1.1)
|
|
15
|
+
rake (13.0.6)
|
|
16
|
+
regexp_parser (2.2.0)
|
|
17
|
+
rexml (3.2.5)
|
|
18
|
+
rubocop (1.25.0)
|
|
20
19
|
parallel (~> 1.10)
|
|
21
|
-
parser (>=
|
|
22
|
-
powerpack (~> 0.1)
|
|
20
|
+
parser (>= 3.1.0.0)
|
|
23
21
|
rainbow (>= 2.2.2, < 4.0)
|
|
22
|
+
regexp_parser (>= 1.8, < 3.0)
|
|
23
|
+
rexml
|
|
24
|
+
rubocop-ast (>= 1.15.1, < 2.0)
|
|
24
25
|
ruby-progressbar (~> 1.7)
|
|
25
|
-
unicode-display_width (
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
26
|
+
unicode-display_width (>= 1.4.0, < 3.0)
|
|
27
|
+
rubocop-ast (1.15.1)
|
|
28
|
+
parser (>= 3.0.1.1)
|
|
29
|
+
rubocop-performance (1.13.2)
|
|
30
|
+
rubocop (>= 1.7.0, < 2.0)
|
|
31
|
+
rubocop-ast (>= 0.4.0)
|
|
32
|
+
ruby-progressbar (1.11.0)
|
|
33
|
+
standard (1.7.0)
|
|
34
|
+
rubocop (= 1.25.0)
|
|
35
|
+
rubocop-performance (= 1.13.2)
|
|
36
|
+
unicode-display_width (2.1.0)
|
|
30
37
|
|
|
31
38
|
PLATFORMS
|
|
32
39
|
ruby
|
|
33
40
|
|
|
34
41
|
DEPENDENCIES
|
|
35
|
-
bundler
|
|
36
|
-
rake
|
|
42
|
+
bundler
|
|
43
|
+
rake
|
|
37
44
|
standardrb!
|
|
38
45
|
|
|
39
46
|
BUNDLED WITH
|
|
40
|
-
|
|
47
|
+
2.3.6
|
data/LICENSE.txt
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Copyright (c) 2019-2022 Test Double, Inc
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
4
|
+
a copy of this software and associated documentation files (the
|
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
9
|
+
the following conditions:
|
|
10
|
+
|
|
11
|
+
The above copyright notice and this permission notice shall be
|
|
12
|
+
included in all copies or substantial portions of the Software.
|
|
13
|
+
|
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
# standardrb
|
|
2
2
|
|
|
3
3
|
You're probably looking for the
|
|
4
|
-
[
|
|
4
|
+
[Standard Ruby](https://github.com/testdouble/standard) repo.
|
|
5
5
|
|
|
6
6
|
This gem is effectively an alias of the gem
|
|
7
|
-
"[standard](https://
|
|
7
|
+
"[standard](https://rubygems.org/gems/standard)", whose binary is named
|
|
8
8
|
`standardrb` to avoid PATH collisions with [StandardJS](https://standardjs.org).
|
|
9
|
+
Anyone who runs `gem install standardrb` as a result, will have the `standard`
|
|
10
|
+
gem installed as an unpinned transitive dependency and—with it—the actual
|
|
11
|
+
`standardrb` executable.
|
data/Rakefile
CHANGED
data/standardrb.gemspec
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
|
|
2
1
|
lib = File.expand_path("../lib", __FILE__)
|
|
3
2
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
3
|
|
|
5
4
|
Gem::Specification.new do |spec|
|
|
6
|
-
spec.name
|
|
7
|
-
spec.version
|
|
8
|
-
spec.authors
|
|
9
|
-
spec.email
|
|
5
|
+
spec.name = "standardrb"
|
|
6
|
+
spec.version = "1.0.1"
|
|
7
|
+
spec.authors = ["Justin Searls"]
|
|
8
|
+
spec.email = ["searls@gmail.com"]
|
|
10
9
|
|
|
11
|
-
spec.summary
|
|
12
|
-
spec.homepage
|
|
10
|
+
spec.summary = "Alias for the standard gem, which has a standardrb binary"
|
|
11
|
+
spec.homepage = "https://github.com/testdouble/standardrb"
|
|
12
|
+
spec.license = "MIT"
|
|
13
13
|
|
|
14
|
-
spec.files
|
|
14
|
+
spec.files = Dir.chdir(File.expand_path("..", __FILE__)) do
|
|
15
15
|
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
16
16
|
end
|
|
17
|
-
spec.bindir
|
|
18
|
-
spec.executables
|
|
17
|
+
spec.bindir = "exe"
|
|
18
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
19
19
|
spec.require_paths = ["lib"]
|
|
20
20
|
|
|
21
21
|
spec.add_dependency "standard"
|
|
22
|
-
spec.add_development_dependency "bundler"
|
|
23
|
-
spec.add_development_dependency "rake"
|
|
22
|
+
spec.add_development_dependency "bundler"
|
|
23
|
+
spec.add_development_dependency "rake"
|
|
24
24
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: standardrb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Justin Searls
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2022-01-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: standard
|
|
@@ -28,31 +28,31 @@ dependencies:
|
|
|
28
28
|
name: bundler
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
|
-
- - "
|
|
31
|
+
- - ">="
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: '
|
|
33
|
+
version: '0'
|
|
34
34
|
type: :development
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
|
-
- - "
|
|
38
|
+
- - ">="
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: '
|
|
40
|
+
version: '0'
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: rake
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
44
44
|
requirements:
|
|
45
|
-
- - "
|
|
45
|
+
- - ">="
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
|
-
version: '
|
|
47
|
+
version: '0'
|
|
48
48
|
type: :development
|
|
49
49
|
prerelease: false
|
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
51
|
requirements:
|
|
52
|
-
- - "
|
|
52
|
+
- - ">="
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
|
-
version: '
|
|
55
|
-
description:
|
|
54
|
+
version: '0'
|
|
55
|
+
description:
|
|
56
56
|
email:
|
|
57
57
|
- searls@gmail.com
|
|
58
58
|
executables: []
|
|
@@ -62,16 +62,17 @@ files:
|
|
|
62
62
|
- ".gitignore"
|
|
63
63
|
- Gemfile
|
|
64
64
|
- Gemfile.lock
|
|
65
|
+
- LICENSE.txt
|
|
65
66
|
- README.md
|
|
66
67
|
- Rakefile
|
|
67
|
-
- bin/console
|
|
68
68
|
- bin/setup
|
|
69
69
|
- lib/standardrb.rb
|
|
70
70
|
- standardrb.gemspec
|
|
71
71
|
homepage: https://github.com/testdouble/standardrb
|
|
72
|
-
licenses:
|
|
72
|
+
licenses:
|
|
73
|
+
- MIT
|
|
73
74
|
metadata: {}
|
|
74
|
-
post_install_message:
|
|
75
|
+
post_install_message:
|
|
75
76
|
rdoc_options: []
|
|
76
77
|
require_paths:
|
|
77
78
|
- lib
|
|
@@ -86,9 +87,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
86
87
|
- !ruby/object:Gem::Version
|
|
87
88
|
version: '0'
|
|
88
89
|
requirements: []
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
signing_key:
|
|
90
|
+
rubygems_version: 3.3.6
|
|
91
|
+
signing_key:
|
|
92
92
|
specification_version: 4
|
|
93
93
|
summary: Alias for the standard gem, which has a standardrb binary
|
|
94
94
|
test_files: []
|
data/bin/console
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env ruby
|
|
2
|
-
|
|
3
|
-
require "bundler/setup"
|
|
4
|
-
require "standardrb"
|
|
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(__FILE__)
|