rubocop_coffeeandcode 0.0.1.beta1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/.gitignore +9 -0
- data/.rubocop.yml +1 -0
- data/.travis.yml +17 -0
- data/CHANGELOG.md +15 -0
- data/Gemfile +8 -0
- data/LICENSE +7 -0
- data/README.md +68 -0
- data/Rakefile +29 -0
- data/bin/console +15 -0
- data/bin/setup +8 -0
- data/certs/coffeeandcode.pem +25 -0
- data/config/default.yml +53 -0
- data/config/rails.yml +18 -0
- data/lib/rubocop_coffeeandcode.rb +3 -0
- data/lib/rubocop_coffeeandcode/version.rb +19 -0
- data/rubocop_coffeeandcode.gemspec +39 -0
- metadata +142 -0
- metadata.gz.sig +0 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: '0238e42253a40a510728b70122509e8360ab86f4d0334d8a5d07cdd68557437a'
|
4
|
+
data.tar.gz: 511c1cc35c889650ee12c73744abc853c69c99ce8be596006e708549fc88b963
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: f8fc313dfd12b474cbe2df1e73940ce8c3eb1c439c29710b13dffc58125642fda32d0d0c3dec45d0d93c838314f8cd9ca5310e71beba80cbd15cf40ad5dfe6e9
|
7
|
+
data.tar.gz: b0265800a278482d4a9e307f2aaeb709dbeeec2f495d717399f32f12fdd11e42ead1ab27b89ac86bc0528e29b8adb1201738c380c9b5432cabfad2065fee8f02
|
checksums.yaml.gz.sig
ADDED
Binary file
|
data.tar.gz.sig
ADDED
Binary file
|
data/.gitignore
ADDED
data/.rubocop.yml
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
inherit_from: ./config/default.yml
|
data/.travis.yml
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
sudo: false
|
2
|
+
language: ruby
|
3
|
+
rvm:
|
4
|
+
- jruby-head
|
5
|
+
- 2.4.3
|
6
|
+
- 2.5.0
|
7
|
+
- ruby-head
|
8
|
+
matrix:
|
9
|
+
allow_failures:
|
10
|
+
- rvm: ruby-head
|
11
|
+
- rvm: jruby-head
|
12
|
+
fast_finish: true
|
13
|
+
before_install:
|
14
|
+
- gem update --system
|
15
|
+
- gem update --remote bundler
|
16
|
+
install:
|
17
|
+
- bundle install --retry=3
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
All notable changes to this project will be documented in this file.
|
2
|
+
|
3
|
+
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
4
|
+
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
5
|
+
|
6
|
+
## [unreleased]
|
7
|
+
|
8
|
+
## [0.1.0] - 2018-03-24
|
9
|
+
|
10
|
+
### Added
|
11
|
+
|
12
|
+
* Initial version of the gem.
|
13
|
+
|
14
|
+
[unreleased]: https://github.com/CoffeeAndCode/rubocop_coffeeandcode/compare/v0.1.0...HEAD
|
15
|
+
[0.1.0]: https://github.com/CoffeeAndCode/rubocop_coffeeandcode/releases/tag/v0.1.0
|
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
Copyright 2018 Jonathan Knapp
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
4
|
+
|
5
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
6
|
+
|
7
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,68 @@
|
|
1
|
+
# Rubocop Settings for Coffee and Code
|
2
|
+
|
3
|
+
This gem includes the base rubocop configuration preferences for [Coffee and Code][0].
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
`rubocop_coffeeandcode` is [cryptographically signed][1]. To be sure the gem you install
|
8
|
+
hasn't been tampered with:
|
9
|
+
|
10
|
+
```
|
11
|
+
# Add my public key (if you haven’t already) as a trusted certificate
|
12
|
+
gem cert --add <(curl -Ls https://raw.github.com/CoffeeAndCode/rubocop_coffeeandcode/master/certs/coffeeandcode.pem)
|
13
|
+
```
|
14
|
+
|
15
|
+
Then, add this line to your application's Gemfile:
|
16
|
+
|
17
|
+
```ruby
|
18
|
+
gem 'rubocop_coffeeandcode'
|
19
|
+
```
|
20
|
+
|
21
|
+
And then execute:
|
22
|
+
|
23
|
+
$ bundle --trust-policy MediumSecurity
|
24
|
+
|
25
|
+
Or install it yourself as:
|
26
|
+
|
27
|
+
$ gem install rubocop_coffeeandcode -P MediumSecurity
|
28
|
+
|
29
|
+
The MediumSecurity trust profile will verify signed gems, but allow the
|
30
|
+
installation of unsigned dependencies. This is necessary because not all of
|
31
|
+
this gem's dependencies are signed, so we cannot use HighSecurity.
|
32
|
+
|
33
|
+
Lastly, you'll need to explicitly require the extension in your Rubocop config
|
34
|
+
like so:
|
35
|
+
|
36
|
+
```yaml
|
37
|
+
inherit_gem:
|
38
|
+
rubocop_coffeeandcode:
|
39
|
+
- config/default.yml
|
40
|
+
- config/rails.yml
|
41
|
+
|
42
|
+
# the rest of your customized config...
|
43
|
+
```
|
44
|
+
|
45
|
+
## Development
|
46
|
+
|
47
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then,
|
48
|
+
run `rake test` to run the tests. You can also run `bin/console` for an interactive
|
49
|
+
prompt that will allow you to experiment.
|
50
|
+
|
51
|
+
To install this gem onto your local machine, run `bundle exec rake install`.
|
52
|
+
|
53
|
+
Make sure that the project has no errors when running `bundle exec rake` which
|
54
|
+
will run `rubocop` on the project source and `bundle exec rake test`.
|
55
|
+
|
56
|
+
To release a new version, update the version number in `lib/rubocop_coffeeandcode/version.rb` and run `bundle exec rake release`, which will create a git tag for the version, push
|
57
|
+
git commits and tags, and push the `.gem` file to [rubygems.org][2].
|
58
|
+
Afterwards, a new checksum will be generated for the gem which should
|
59
|
+
be added to the `master` branch.
|
60
|
+
|
61
|
+
## Contributing
|
62
|
+
|
63
|
+
While you can submit bug reports and pull requests on GitHub at https://github.com/CoffeeAndCode/rubocop_coffeeandcode, this gem is used for
|
64
|
+
a specific company's needs so not all issues or pull requests will be accepted.
|
65
|
+
|
66
|
+
[0]: https://www.coffeeandcode.com
|
67
|
+
[1]: http://guides.rubygems.org/security/
|
68
|
+
[2]: https://rubygems.org
|
data/Rakefile
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'bundler/gem_tasks'
|
4
|
+
require 'rake/testtask'
|
5
|
+
require 'rubocop/rake_task'
|
6
|
+
|
7
|
+
Rake::TestTask.new(:test) do |t|
|
8
|
+
t.libs << 'test'
|
9
|
+
t.libs << 'lib'
|
10
|
+
t.test_files = FileList['test/**/*_test.rb']
|
11
|
+
end
|
12
|
+
RuboCop::RakeTask.new
|
13
|
+
|
14
|
+
Rake::Task['release'].enhance do
|
15
|
+
require 'digest/sha2'
|
16
|
+
require_relative './lib/rubocop_coffeeandcode/version'
|
17
|
+
|
18
|
+
built_gem_path = "pkg/rubocop_coffeeandcode-#{RuboCopMethodOrder.gem_version}.gem"
|
19
|
+
|
20
|
+
checksum = Digest::SHA256.new.hexdigest(File.read(built_gem_path))
|
21
|
+
checksum_path = "checksums/rubocop_coffeeandcode-#{RuboCopMethodOrder.gem_version}.gem.sha256"
|
22
|
+
File.open(checksum_path, 'w') { |file| file.write(checksum) }
|
23
|
+
|
24
|
+
checksum = Digest::SHA512.new.hexdigest(File.read(built_gem_path))
|
25
|
+
checksum_path = "checksums/rubocop_coffeeandcode-#{RuboCopMethodOrder.gem_version}.gem.sha512"
|
26
|
+
File.open(checksum_path, 'w') { |file| file.write(checksum) }
|
27
|
+
end
|
28
|
+
|
29
|
+
task default: [:test, :rubocop]
|
data/bin/console
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
require 'bundler/setup'
|
5
|
+
require 'rubocop_coffeeandcode'
|
6
|
+
|
7
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
8
|
+
# with your gem easier. You can also use a different console, if you like.
|
9
|
+
|
10
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
11
|
+
# require "pry"
|
12
|
+
# Pry.start
|
13
|
+
|
14
|
+
require 'irb'
|
15
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
-----BEGIN CERTIFICATE-----
|
2
|
+
MIIERDCCAqygAwIBAgIBATANBgkqhkiG9w0BAQsFADAmMSQwIgYDVQQDDBtqb24v
|
3
|
+
REM9Y29mZmVlYW5kY29kZS9EQz1jb20wHhcNMTgwMzIwMTAzNTQyWhcNMTkwMzIw
|
4
|
+
MTAzNTQyWjAmMSQwIgYDVQQDDBtqb24vREM9Y29mZmVlYW5kY29kZS9EQz1jb20w
|
5
|
+
ggGiMA0GCSqGSIb3DQEBAQUAA4IBjwAwggGKAoIBgQCwhpj30UpL3zNnh+oC/QeA
|
6
|
+
oADSvODuNGaZO2THz4UVoXvtlVmOvrMOHqxdAvf4rfv8Rw4U8TUn+5c/E76NWttU
|
7
|
+
EYwPs9wB8HrQWxzutsbhGBBcCCyIClbrf5kLTjCIE0UIa4M1gTdUnneWJzyHCNoU
|
8
|
+
O/ihDlfNtuB3GGrZ7gglzlBYxGrw+idgJbJp1CAxa2UDkDQhvZ4YIJmKeQIkXrD9
|
9
|
+
CVlJXZP1epqixoA6Fq3ToKxFWu5NVHztr+wMKIQbotaruV+CO9a7KjdgP4by4hGL
|
10
|
+
0gxhx9lIDtduGhgCL6ZsEGV0Yxy7RI8ylILfM/MbdckJ4KVT9UT0yL3lVoQjjr3t
|
11
|
+
ZyIZnIRYj/eafol0sNrJo5MeJoCZaHWS25fE8pYrxJhv7beO9GMNpjGtUzgF11IW
|
12
|
+
3i5Ok/a1+R4SRFIs65+ap5br6fPiYKXxThWJBTweOUMoBpEK5q+kN9M74lvrjSw3
|
13
|
+
sZZevUtUprwu9WUeUtTxbkONP58PFdIm5az+qxuMYCMCAwEAAaN9MHswCQYDVR0T
|
14
|
+
BAIwADALBgNVHQ8EBAMCBLAwHQYDVR0OBBYEFAF+y9VjIuh5VVlw69vYwQNnkjoB
|
15
|
+
MCAGA1UdEQQZMBeBFWpvbkBjb2ZmZWVhbmRjb2RlLmNvbTAgBgNVHRIEGTAXgRVq
|
16
|
+
b25AY29mZmVlYW5kY29kZS5jb20wDQYJKoZIhvcNAQELBQADggGBAA58Mcdzf0TV
|
17
|
+
GzOFA2wmeQdIWZkGZ8zJysgaB11Web4iKIxrWZtxs8v3hF7en2+/LkzfDay3A4g6
|
18
|
+
5Um1OkylzfvAEXCaTrIVT4lQz4dyiAqB1zj9/vUHillbXc/sGBVbCjSU4JFued4T
|
19
|
+
vL9OCX+6XmJ1VG/tLmtj7xJaV2heRh/LvAtvcRvRWw4cPffk1ljWWMRNM7LAlReg
|
20
|
+
X1oEnF2j/U6e069ChoLQH0PmRQMfVQv33l+5rs+0yrChU7mpwcWVG7Qrbzr0mMUY
|
21
|
+
BsLPoAKTL0tR2XOrduH0QCjHnHMCry0923zLj5eNPQwDhlXyDQC/fyIHto39IvIZ
|
22
|
+
ZdB1asnPvD2q9n/KCWkCOnmcQ+V7sdmtEiHMuBFHTDhpBUr1DuYY9wvZwoHo8qGr
|
23
|
+
XxvXYAfIUSbb6/CHtemZT4zsEprRuk8eADIYUTMyAt9d2roTcsRKgq20m+PZO+b+
|
24
|
+
DVnSbPSTRxaM+9Hds4CAzdoo5hIiLyvSXSqSRGgQEMT0yiFdK+6kRw==
|
25
|
+
-----END CERTIFICATE-----
|
data/config/default.yml
ADDED
@@ -0,0 +1,53 @@
|
|
1
|
+
require:
|
2
|
+
- rubocop_method_order
|
3
|
+
|
4
|
+
AllCops:
|
5
|
+
Exclude:
|
6
|
+
- bin/bundle
|
7
|
+
- node_modules/**/*
|
8
|
+
TargetRubyVersion: 2.4
|
9
|
+
|
10
|
+
Layout/EmptyLinesAroundArguments:
|
11
|
+
Enabled: false # disabled as current implimentation is buggy
|
12
|
+
|
13
|
+
Metrics/BlockLength:
|
14
|
+
Exclude:
|
15
|
+
- test/**/*_test.rb
|
16
|
+
|
17
|
+
Metrics/ClassLength:
|
18
|
+
Exclude:
|
19
|
+
- test/**/*_test.rb
|
20
|
+
|
21
|
+
Metrics/LineLength:
|
22
|
+
Max: 100
|
23
|
+
|
24
|
+
Metrics/MethodLength:
|
25
|
+
Exclude:
|
26
|
+
- test/**/*_test.rb
|
27
|
+
|
28
|
+
Style/ClassAndModuleChildren:
|
29
|
+
Exclude:
|
30
|
+
- test/**/*_test.rb
|
31
|
+
|
32
|
+
Style/EmptyMethod:
|
33
|
+
EnforcedStyle: expanded
|
34
|
+
|
35
|
+
Style/IfUnlessModifier:
|
36
|
+
Enabled: false
|
37
|
+
|
38
|
+
Style/Lambda:
|
39
|
+
EnforcedStyle: literal
|
40
|
+
|
41
|
+
Style/MethodOrder:
|
42
|
+
Exclude:
|
43
|
+
- test/**/*_test.rb
|
44
|
+
|
45
|
+
Style/RegexpLiteral:
|
46
|
+
AllowInnerSlashes: true
|
47
|
+
EnforcedStyle: slashes
|
48
|
+
|
49
|
+
Style/SymbolArray:
|
50
|
+
EnforcedStyle: brackets
|
51
|
+
|
52
|
+
Style/WordArray:
|
53
|
+
EnforcedStyle: brackets
|
data/config/rails.yml
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
AllCops:
|
2
|
+
Exclude:
|
3
|
+
- db/schema.rb
|
4
|
+
- db/migrate/*.rb
|
5
|
+
- log/*
|
6
|
+
- tmp/**/*
|
7
|
+
|
8
|
+
Metrics/BlockLength:
|
9
|
+
Exclude:
|
10
|
+
- config/environments/*
|
11
|
+
- config/routes.rb
|
12
|
+
- lib/tasks/**/*
|
13
|
+
|
14
|
+
Rails:
|
15
|
+
Enabled: true
|
16
|
+
|
17
|
+
Style/Documentation:
|
18
|
+
Enabled: false
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Version information for the gem.
|
4
|
+
module RuboCopCoffeeAndCode
|
5
|
+
# Returns the version of the currently loaded gem as a <tt>Gem::Version</tt>
|
6
|
+
def self.gem_version
|
7
|
+
Gem::Version.new VERSION::STRING
|
8
|
+
end
|
9
|
+
|
10
|
+
# Contains individual version parts for this gem.
|
11
|
+
module VERSION
|
12
|
+
MAJOR = 0
|
13
|
+
MINOR = 0
|
14
|
+
PATCH = 1
|
15
|
+
PRE = 'beta1'
|
16
|
+
|
17
|
+
STRING = [MAJOR, MINOR, PATCH, PRE].compact.join('.')
|
18
|
+
end
|
19
|
+
end
|
@@ -0,0 +1,39 @@
|
|
1
|
+
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
lib = File.expand_path('lib', __dir__)
|
5
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
6
|
+
require 'rubocop_coffeeandcode/version'
|
7
|
+
|
8
|
+
Gem::Specification.new do |spec|
|
9
|
+
spec.name = 'rubocop_coffeeandcode'
|
10
|
+
spec.version = RuboCopCoffeeAndCode.gem_version
|
11
|
+
spec.license = 'MIT'
|
12
|
+
spec.author = 'Jonathan Knapp'
|
13
|
+
spec.email = 'jon@coffeeandcode.com'
|
14
|
+
|
15
|
+
spec.summary = 'Base rubocop configuration preferences for Coffee and Code.'
|
16
|
+
spec.homepage = 'https://github.com/CoffeeAndCode/rubocop_coffeeandcode'
|
17
|
+
spec.metadata = {
|
18
|
+
'source_code_uri' => 'https://github.com/CoffeeAndCode/rubocop_coffeeandcode'
|
19
|
+
}
|
20
|
+
|
21
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |file|
|
22
|
+
file.match(/^(checksums|test)/)
|
23
|
+
end
|
24
|
+
spec.bindir = 'exe'
|
25
|
+
spec.executables = spec.files.grep(/^exe/) { |file| File.basename(file) }
|
26
|
+
spec.require_paths = ['lib']
|
27
|
+
spec.required_ruby_version = '>= 2.4.0'
|
28
|
+
spec.cert_chain = ['certs/coffeeandcode.pem']
|
29
|
+
|
30
|
+
if $PROGRAM_NAME.end_with?('gem')
|
31
|
+
spec.signing_key = File.expand_path('~/.ssh/gem-private_key.pem')
|
32
|
+
end
|
33
|
+
|
34
|
+
spec.add_runtime_dependency 'rubocop', '~> 0.53'
|
35
|
+
|
36
|
+
spec.add_development_dependency 'bundler', '~> 1.16'
|
37
|
+
spec.add_development_dependency 'minitest', '~> 5.0'
|
38
|
+
spec.add_development_dependency 'rake', '~> 12.3'
|
39
|
+
end
|
metadata
ADDED
@@ -0,0 +1,142 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rubocop_coffeeandcode
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1.beta1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Jonathan Knapp
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain:
|
11
|
+
- |
|
12
|
+
-----BEGIN CERTIFICATE-----
|
13
|
+
MIIERDCCAqygAwIBAgIBATANBgkqhkiG9w0BAQsFADAmMSQwIgYDVQQDDBtqb24v
|
14
|
+
REM9Y29mZmVlYW5kY29kZS9EQz1jb20wHhcNMTgwMzIwMTAzNTQyWhcNMTkwMzIw
|
15
|
+
MTAzNTQyWjAmMSQwIgYDVQQDDBtqb24vREM9Y29mZmVlYW5kY29kZS9EQz1jb20w
|
16
|
+
ggGiMA0GCSqGSIb3DQEBAQUAA4IBjwAwggGKAoIBgQCwhpj30UpL3zNnh+oC/QeA
|
17
|
+
oADSvODuNGaZO2THz4UVoXvtlVmOvrMOHqxdAvf4rfv8Rw4U8TUn+5c/E76NWttU
|
18
|
+
EYwPs9wB8HrQWxzutsbhGBBcCCyIClbrf5kLTjCIE0UIa4M1gTdUnneWJzyHCNoU
|
19
|
+
O/ihDlfNtuB3GGrZ7gglzlBYxGrw+idgJbJp1CAxa2UDkDQhvZ4YIJmKeQIkXrD9
|
20
|
+
CVlJXZP1epqixoA6Fq3ToKxFWu5NVHztr+wMKIQbotaruV+CO9a7KjdgP4by4hGL
|
21
|
+
0gxhx9lIDtduGhgCL6ZsEGV0Yxy7RI8ylILfM/MbdckJ4KVT9UT0yL3lVoQjjr3t
|
22
|
+
ZyIZnIRYj/eafol0sNrJo5MeJoCZaHWS25fE8pYrxJhv7beO9GMNpjGtUzgF11IW
|
23
|
+
3i5Ok/a1+R4SRFIs65+ap5br6fPiYKXxThWJBTweOUMoBpEK5q+kN9M74lvrjSw3
|
24
|
+
sZZevUtUprwu9WUeUtTxbkONP58PFdIm5az+qxuMYCMCAwEAAaN9MHswCQYDVR0T
|
25
|
+
BAIwADALBgNVHQ8EBAMCBLAwHQYDVR0OBBYEFAF+y9VjIuh5VVlw69vYwQNnkjoB
|
26
|
+
MCAGA1UdEQQZMBeBFWpvbkBjb2ZmZWVhbmRjb2RlLmNvbTAgBgNVHRIEGTAXgRVq
|
27
|
+
b25AY29mZmVlYW5kY29kZS5jb20wDQYJKoZIhvcNAQELBQADggGBAA58Mcdzf0TV
|
28
|
+
GzOFA2wmeQdIWZkGZ8zJysgaB11Web4iKIxrWZtxs8v3hF7en2+/LkzfDay3A4g6
|
29
|
+
5Um1OkylzfvAEXCaTrIVT4lQz4dyiAqB1zj9/vUHillbXc/sGBVbCjSU4JFued4T
|
30
|
+
vL9OCX+6XmJ1VG/tLmtj7xJaV2heRh/LvAtvcRvRWw4cPffk1ljWWMRNM7LAlReg
|
31
|
+
X1oEnF2j/U6e069ChoLQH0PmRQMfVQv33l+5rs+0yrChU7mpwcWVG7Qrbzr0mMUY
|
32
|
+
BsLPoAKTL0tR2XOrduH0QCjHnHMCry0923zLj5eNPQwDhlXyDQC/fyIHto39IvIZ
|
33
|
+
ZdB1asnPvD2q9n/KCWkCOnmcQ+V7sdmtEiHMuBFHTDhpBUr1DuYY9wvZwoHo8qGr
|
34
|
+
XxvXYAfIUSbb6/CHtemZT4zsEprRuk8eADIYUTMyAt9d2roTcsRKgq20m+PZO+b+
|
35
|
+
DVnSbPSTRxaM+9Hds4CAzdoo5hIiLyvSXSqSRGgQEMT0yiFdK+6kRw==
|
36
|
+
-----END CERTIFICATE-----
|
37
|
+
date: 2018-03-24 00:00:00.000000000 Z
|
38
|
+
dependencies:
|
39
|
+
- !ruby/object:Gem::Dependency
|
40
|
+
name: rubocop
|
41
|
+
requirement: !ruby/object:Gem::Requirement
|
42
|
+
requirements:
|
43
|
+
- - "~>"
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '0.53'
|
46
|
+
type: :runtime
|
47
|
+
prerelease: false
|
48
|
+
version_requirements: !ruby/object:Gem::Requirement
|
49
|
+
requirements:
|
50
|
+
- - "~>"
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: '0.53'
|
53
|
+
- !ruby/object:Gem::Dependency
|
54
|
+
name: bundler
|
55
|
+
requirement: !ruby/object:Gem::Requirement
|
56
|
+
requirements:
|
57
|
+
- - "~>"
|
58
|
+
- !ruby/object:Gem::Version
|
59
|
+
version: '1.16'
|
60
|
+
type: :development
|
61
|
+
prerelease: false
|
62
|
+
version_requirements: !ruby/object:Gem::Requirement
|
63
|
+
requirements:
|
64
|
+
- - "~>"
|
65
|
+
- !ruby/object:Gem::Version
|
66
|
+
version: '1.16'
|
67
|
+
- !ruby/object:Gem::Dependency
|
68
|
+
name: minitest
|
69
|
+
requirement: !ruby/object:Gem::Requirement
|
70
|
+
requirements:
|
71
|
+
- - "~>"
|
72
|
+
- !ruby/object:Gem::Version
|
73
|
+
version: '5.0'
|
74
|
+
type: :development
|
75
|
+
prerelease: false
|
76
|
+
version_requirements: !ruby/object:Gem::Requirement
|
77
|
+
requirements:
|
78
|
+
- - "~>"
|
79
|
+
- !ruby/object:Gem::Version
|
80
|
+
version: '5.0'
|
81
|
+
- !ruby/object:Gem::Dependency
|
82
|
+
name: rake
|
83
|
+
requirement: !ruby/object:Gem::Requirement
|
84
|
+
requirements:
|
85
|
+
- - "~>"
|
86
|
+
- !ruby/object:Gem::Version
|
87
|
+
version: '12.3'
|
88
|
+
type: :development
|
89
|
+
prerelease: false
|
90
|
+
version_requirements: !ruby/object:Gem::Requirement
|
91
|
+
requirements:
|
92
|
+
- - "~>"
|
93
|
+
- !ruby/object:Gem::Version
|
94
|
+
version: '12.3'
|
95
|
+
description:
|
96
|
+
email: jon@coffeeandcode.com
|
97
|
+
executables: []
|
98
|
+
extensions: []
|
99
|
+
extra_rdoc_files: []
|
100
|
+
files:
|
101
|
+
- ".gitignore"
|
102
|
+
- ".rubocop.yml"
|
103
|
+
- ".travis.yml"
|
104
|
+
- CHANGELOG.md
|
105
|
+
- Gemfile
|
106
|
+
- LICENSE
|
107
|
+
- README.md
|
108
|
+
- Rakefile
|
109
|
+
- bin/console
|
110
|
+
- bin/setup
|
111
|
+
- certs/coffeeandcode.pem
|
112
|
+
- config/default.yml
|
113
|
+
- config/rails.yml
|
114
|
+
- lib/rubocop_coffeeandcode.rb
|
115
|
+
- lib/rubocop_coffeeandcode/version.rb
|
116
|
+
- rubocop_coffeeandcode.gemspec
|
117
|
+
homepage: https://github.com/CoffeeAndCode/rubocop_coffeeandcode
|
118
|
+
licenses:
|
119
|
+
- MIT
|
120
|
+
metadata:
|
121
|
+
source_code_uri: https://github.com/CoffeeAndCode/rubocop_coffeeandcode
|
122
|
+
post_install_message:
|
123
|
+
rdoc_options: []
|
124
|
+
require_paths:
|
125
|
+
- lib
|
126
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
127
|
+
requirements:
|
128
|
+
- - ">="
|
129
|
+
- !ruby/object:Gem::Version
|
130
|
+
version: 2.4.0
|
131
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
132
|
+
requirements:
|
133
|
+
- - ">"
|
134
|
+
- !ruby/object:Gem::Version
|
135
|
+
version: 1.3.1
|
136
|
+
requirements: []
|
137
|
+
rubyforge_project:
|
138
|
+
rubygems_version: 2.7.3
|
139
|
+
signing_key:
|
140
|
+
specification_version: 4
|
141
|
+
summary: Base rubocop configuration preferences for Coffee and Code.
|
142
|
+
test_files: []
|
metadata.gz.sig
ADDED
Binary file
|