pronto-haml 0.8.1 → 0.11.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 169f38c7650285da533bb525a7203cd582f20e2f
4
- data.tar.gz: 1c7d92aaf360bbf4722fcd0f696a4f4819a40c0e
2
+ SHA256:
3
+ metadata.gz: 52102c1166aea163dc61610fdc0ca797ed827a993bf82f68e691ba1780b4a1b7
4
+ data.tar.gz: 796945ac1e04c336675e19f3ef062a54ea59f99b7f6f16fb0e5431bdfedfe964
5
5
  SHA512:
6
- metadata.gz: 80052c8e08e307ba0fb3abac7dbd6813da772122b9a135f886ceeb5d621c6aad775bf2af6c1eae56c53d55fb406638085a20297b174d24ebbb31c2bc729d3b87
7
- data.tar.gz: 4d78f9d6b90d3fba0de522d6777e1a52a37c432665701dbbeb24dea578b8320ba673b33645c2f2e8c4d2af2d219128ffccb2087abc530996d2cd955cd5be2d36
6
+ metadata.gz: 8bd2605d4f1b222c101abe66b88697e17ba4b801c32a135ce9f174f94f1986092914f3c607d1173ec2f9d5ccdf64cfd789486494d76d536004dc28f00a2555ef
7
+ data.tar.gz: f3f68911ee86b45d3e9cada63daacfa5966829ebe2f681ee2ce37badb0ffacb7863b68b2ad1dba07aae7b879a49ae7724d1b9d4f29eb5dea4b900b9db6d03e2e
@@ -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,25 @@
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
+ exclude:
16
+ - ruby: '2.3' # there's an additional RuboCop warning Layout/TrailingEmptyLines for some reason
17
+ steps:
18
+ - uses: actions/checkout@v2
19
+ - uses: ruby/setup-ruby@v1
20
+ with:
21
+ ruby-version: ${{ matrix.ruby }}
22
+ bundler-cache: true
23
+ - name: rake spec
24
+ run: bundle exec rake spec
25
+ continue-on-error: ${{ matrix.ruby == '2.3' }}
data/README.md CHANGED
@@ -1,11 +1,11 @@
1
1
  # Pronto runner for HAML-Lint
2
2
 
3
- [![Code Climate](https://codeclimate.com/github/mmozuras/pronto-haml.png)](https://codeclimate.com/github/mmozuras/pronto-haml)
4
- [![Build Status](https://travis-ci.org/mmozuras/pronto-haml.png)](https://travis-ci.org/mmozuras/pronto-haml)
3
+ [![Code Climate](https://codeclimate.com/github/prontolabs/pronto-haml.png)](https://codeclimate.com/github/prontolabs/pronto-haml)
4
+ [![Build Status](https://travis-ci.org/prontolabs/pronto-haml.png)](https://travis-ci.org/prontolabs/pronto-haml)
5
5
  [![Gem Version](https://badge.fury.io/rb/pronto-haml.png)](http://badge.fury.io/rb/pronto-haml)
6
- [![Dependency Status](https://gemnasium.com/mmozuras/pronto-haml.png)](https://gemnasium.com/mmozuras/pronto-haml)
6
+ [![Dependency Status](https://gemnasium.com/prontolabs/pronto-haml.png)](https://gemnasium.com/prontolabs/pronto-haml)
7
7
 
8
- Pronto runner for [HAML-Lint](https://github.com/brigade/haml-lint), tool for writing clean and consistent HAML. [What is Pronto?](https://github.com/mmozuras/pronto)
8
+ Pronto runner for [HAML-Lint](https://github.com/brigade/haml-lint), tool for writing clean and consistent HAML. [What is Pronto?](https://github.com/prontolabs/pronto)
9
9
 
10
10
  ## Configuration
11
11
 
@@ -1,5 +1,5 @@
1
1
  module Pronto
2
2
  module HamlLintVersion
3
- VERSION = '0.8.1'.freeze
3
+ VERSION = '0.11.1'.freeze
4
4
  end
5
5
  end
data/pronto-haml.gemspec CHANGED
@@ -10,13 +10,13 @@ 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-haml'
13
+ s.homepage = 'http://github.com/mmozuras/pronto-haml'
14
14
  s.summary = <<-EOF
15
15
  Pronto runner for HAML-Lint, tool for writing clean and consistent HAML
16
16
  EOF
17
17
 
18
18
  s.licenses = ['MIT']
19
- s.required_ruby_version = '>= 2.1.0'
19
+ s.required_ruby_version = '>= 2.3.0'
20
20
  s.rubygems_version = '1.8.23'
21
21
 
22
22
  s.files = `git ls-files`.split($RS).reject do |file|
@@ -34,9 +34,9 @@ Gem::Specification.new do |s|
34
34
  s.extra_rdoc_files = ['LICENSE', 'README.md']
35
35
  s.require_paths = ['lib']
36
36
 
37
- s.add_runtime_dependency('pronto', '~> 0.8.0')
37
+ s.add_runtime_dependency('pronto', '~> 0.11.0')
38
38
  s.add_runtime_dependency('haml_lint', '~> 0.23')
39
- s.add_development_dependency('rake', '~> 11.0')
39
+ s.add_development_dependency('rake', '~> 12.0')
40
40
  s.add_development_dependency('rspec', '~> 3.4')
41
41
  s.add_development_dependency('rspec-its', '~> 1.2')
42
42
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pronto-haml
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.1
4
+ version: 0.11.1
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: 2017-03-15 00:00:00.000000000 Z
11
+ date: 2021-11-15 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.8.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.8.0
26
+ version: 0.11.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: haml_lint
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/haml.rb
94
96
  - lib/pronto/haml/version.rb
95
97
  - pronto-haml.gemspec
96
- homepage: http://github.org/mmozuras/pronto-haml
98
+ homepage: http://github.com/mmozuras/pronto-haml
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: 2.1.0
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.6.10
117
+ rubygems_version: 3.2.5
117
118
  signing_key:
118
119
  specification_version: 4
119
120
  summary: Pronto runner for HAML-Lint, tool for writing clean and consistent HAML