pronto-jshint 0.6.1 → 0.11.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 0e37a62ee15a1de3c5cd1e714cca8fcc5a4e1cdf
4
- data.tar.gz: 4d28bb1f6118478cc1530b5b6618a9eae4a4ff86
2
+ SHA256:
3
+ metadata.gz: cd8907c1453eb43743828c5b9607822544dac8283bf42bd89d5d029efe2c6169
4
+ data.tar.gz: d00042df62015700dc902116dbec61e6f290e3bb0754f31f543dcc225e6d99db
5
5
  SHA512:
6
- metadata.gz: b86b54722dcab6840887cf6a2de889bc90ad54d8533004b957d5b1dc6f7412b9d705e0099867bd85159071343912c426fc89ee34c6c5c01725b3f0f6b375078b
7
- data.tar.gz: 09ed32df10ab26490bd44ea2549762b1a43ff0f529870616b19e8a759d5d03b9f58d7458d8d31e2cbfc07200119f62f7706c8a46d238352523f22b0747952be5
6
+ metadata.gz: f98637b88413d5041940f1a6c67afd2a09a60479a88be780305e9dd4a0428cceded4edb13cd11ff8e35af3bf937091b7989cc7f328a75fd68f3c56ce25bffbed
7
+ data.tar.gz: f59ee62606741d3a1c2222e4bab6cb8817ab637324eb1033d00a2aae7a3134cad688f3b06e9b636a1b6f0373258c00a0865349d73a75b9ec87eb6b0b8c7c20a2
@@ -0,0 +1,3 @@
1
+ # Order is important. The last matching pattern takes the most precedence.
2
+ # Default owners for everything in the repo.
3
+ * @prontolabs/core
@@ -0,0 +1,22 @@
1
+ name: Checks
2
+
3
+ on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
+ branches: [ master ]
8
+
9
+ jobs:
10
+ ruby:
11
+ runs-on: ubuntu-latest
12
+ strategy:
13
+ matrix:
14
+ ruby: ['2.3', '2.4', '2.5', '2.6', '2.7', '3.0']
15
+ steps:
16
+ - uses: actions/checkout@v2
17
+ - uses: ruby/setup-ruby@v1
18
+ with:
19
+ ruby-version: ${{ matrix.ruby }}
20
+ bundler-cache: true
21
+ - name: rake spec
22
+ run: bundle exec rake spec
data/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License
2
2
 
3
- Copyright (c) 2016 Mindaugas Mozūras
3
+ Copyright (c) 2017 Mindaugas Mozūras
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -1,11 +1,11 @@
1
1
  # Pronto runner for JSHint
2
2
 
3
- [![Code Climate](https://codeclimate.com/github/mmozuras/pronto-jshint.png)](https://codeclimate.com/github/mmozuras/pronto-jshint)
4
- [![Build Status](https://travis-ci.org/mmozuras/pronto-jshint.png)](https://travis-ci.org/mmozuras/pronto-jshint)
3
+ [![Code Climate](https://codeclimate.com/github/prontolabs/pronto-jshint.png)](https://codeclimate.com/github/prontolabs/pronto-jshint)
4
+ [![Build Status](https://travis-ci.org/prontolabs/pronto-jshint.png)](https://travis-ci.org/prontolabs/pronto-jshint)
5
5
  [![Gem Version](https://badge.fury.io/rb/pronto-jshint.png)](http://badge.fury.io/rb/pronto-jshint)
6
- [![Dependency Status](https://gemnasium.com/mmozuras/pronto-jshint.png)](https://gemnasium.com/mmozuras/pronto-jshint)
6
+ [![Dependency Status](https://gemnasium.com/prontolabs/pronto-jshint.png)](https://gemnasium.com/prontolabs/pronto-jshint)
7
7
 
8
- Pronto runner for [JSHint](http://www.jshint.com/), JavaScript code quality tool. [What is Pronto?](https://github.com/mmozuras/pronto)
8
+ Pronto runner for [JSHint](http://www.jshint.com/), JavaScript code quality tool. [What is Pronto?](https://github.com/prontolabs/pronto)
9
9
 
10
10
  ## Prerequisites
11
11
 
@@ -1,5 +1,5 @@
1
1
  module Pronto
2
2
  module JSHintVersion
3
- VERSION = '0.6.1'.freeze
3
+ VERSION = '0.11.0'.freeze
4
4
  end
5
5
  end
@@ -10,11 +10,11 @@ Gem::Specification.new do |s|
10
10
  s.platform = Gem::Platform::RUBY
11
11
  s.author = 'Mindaugas Mozūras'
12
12
  s.email = 'mindaugas.mozuras@gmail.com'
13
- s.homepage = 'http://github.org/mmozuras/pronto-jshint'
13
+ s.homepage = 'http://github.com/mmozuras/pronto-jshint'
14
14
  s.summary = 'Pronto runner for JSHint, JavaScript code quality tool'
15
15
 
16
16
  s.licenses = ['MIT']
17
- s.required_ruby_version = '>= 1.9.3'
17
+ s.required_ruby_version = '>= 2.3.0'
18
18
  s.rubygems_version = '1.8.23'
19
19
 
20
20
  s.files = `git ls-files`.split($RS).reject do |file|
@@ -32,9 +32,9 @@ Gem::Specification.new do |s|
32
32
  s.extra_rdoc_files = ['LICENSE', 'README.md']
33
33
  s.require_paths = ['lib']
34
34
 
35
- s.add_dependency('pronto', '~> 0.6.0')
35
+ s.add_dependency('pronto', '~> 0.11.0')
36
36
  s.add_dependency('jshintrb', '~> 0.3.0')
37
- s.add_development_dependency('rake', '~> 11.0')
37
+ s.add_development_dependency('rake', '~> 12.0')
38
38
  s.add_development_dependency('rspec', '~> 3.4')
39
39
  s.add_development_dependency('rspec-its', '~> 1.2')
40
40
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pronto-jshint
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.1
4
+ version: 0.11.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mindaugas Mozūras
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-07-31 00:00:00.000000000 Z
11
+ date: 2021-02-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pronto
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 0.6.0
19
+ version: 0.11.0
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 0.6.0
26
+ version: 0.11.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: jshintrb
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -44,14 +44,14 @@ dependencies:
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: '11.0'
47
+ version: '12.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: '11.0'
54
+ version: '12.0'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: rspec
57
57
  requirement: !ruby/object:Gem::Requirement
@@ -88,12 +88,14 @@ extra_rdoc_files:
88
88
  - LICENSE
89
89
  - README.md
90
90
  files:
91
+ - ".github/CODEOWNERS"
92
+ - ".github/workflows/checks.yml"
91
93
  - LICENSE
92
94
  - README.md
93
95
  - lib/pronto/jshint.rb
94
96
  - lib/pronto/jshint/version.rb
95
97
  - pronto-jshint.gemspec
96
- homepage: http://github.org/mmozuras/pronto-jshint
98
+ homepage: http://github.com/mmozuras/pronto-jshint
97
99
  licenses:
98
100
  - MIT
99
101
  metadata: {}
@@ -105,15 +107,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
105
107
  requirements:
106
108
  - - ">="
107
109
  - !ruby/object:Gem::Version
108
- version: 1.9.3
110
+ version: 2.3.0
109
111
  required_rubygems_version: !ruby/object:Gem::Requirement
110
112
  requirements:
111
113
  - - ">="
112
114
  - !ruby/object:Gem::Version
113
115
  version: '0'
114
116
  requirements: []
115
- rubyforge_project:
116
- rubygems_version: 2.4.5
117
+ rubygems_version: 3.0.3
117
118
  signing_key:
118
119
  specification_version: 4
119
120
  summary: Pronto runner for JSHint, JavaScript code quality tool