pronto-flay 0.6.2 → 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: 83ff1a8fa0dd0b55bcce583b025d8dfb766edfb1
4
- data.tar.gz: e0d4e812a6959b5319f3ed0f7c6f82ab0eaeafd2
2
+ SHA256:
3
+ metadata.gz: de90dcdef64f202f027ead7f152b23def7f5e7cea005245cc18716abc5690b78
4
+ data.tar.gz: 5b5a3ea37e81bb221f514c3c141f917bc77436acd502de1f2213672414979236
5
5
  SHA512:
6
- metadata.gz: ee6d19841d01027159adda46b7ccb835c4ad34cfa3eba01bdb271c3e7a6b7bb8848748a7f7b2c489ef845a03b9683177c1225bd880ed115204378d066d5f71bd
7
- data.tar.gz: 99334c9bb5a824025f549a56dc2b8598e816953c7edf2bab37988e0e8be667e56972c5ba3286315b1cdc93059f1f5709923cf050348cbe2efc821cd90b288268
6
+ metadata.gz: a0b188cc0aff55e7451bacdc4e5cdfdad2839b43ddc035b5d2665d90c0819e5838820cb752757a5690879953354ef4d009ca9911fcafa21c0a81e27593c188b5
7
+ data.tar.gz: ceba2696f8f7538187ed29d251ebff51194ba8d5d2808f6b96c23f65dbf4941f32dacff0f186f23bd659c6d403a479ad6b6e2389e009ff352cd33b2edd7045a7
@@ -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 Flay
2
2
 
3
- [![Code Climate](https://codeclimate.com/github/mmozuras/pronto-flay.png)](https://codeclimate.com/github/mmozuras/pronto-flay)
4
- [![Build Status](https://travis-ci.org/mmozuras/pronto-flay.png)](https://travis-ci.org/mmozuras/pronto-flay)
3
+ [![Code Climate](https://codeclimate.com/github/prontolabs/pronto-flay.png)](https://codeclimate.com/github/prontolabs/pronto-flay)
4
+ [![Build Status](https://travis-ci.org/prontolabs/pronto-flay.png)](https://travis-ci.org/prontolabs/pronto-flay)
5
5
  [![Gem Version](https://badge.fury.io/rb/pronto-flay.png)](http://badge.fury.io/rb/pronto-flay)
6
- [![Dependency Status](https://gemnasium.com/mmozuras/pronto-flay.png)](https://gemnasium.com/mmozuras/pronto-flay)
6
+ [![Dependency Status](https://gemnasium.com/prontolabs/pronto-flay.png)](https://gemnasium.com/prontolabs/pronto-flay)
7
7
 
8
- Pronto runner for [Flay](https://github.com/seattlerb/flay), structural similarities analyzer. [What is Pronto?](https://github.com/mmozuras/pronto)
8
+ Pronto runner for [Flay](https://github.com/seattlerb/flay), structural similarities analyzer. [What is Pronto?](https://github.com/prontolabs/pronto)
9
9
 
10
10
  # Configuration
11
11
 
data/lib/pronto/flay.rb CHANGED
@@ -16,11 +16,8 @@ module Pronto
16
16
  # files by looking at .flayignore.
17
17
  # Saving the returned Flay object at @flay so we
18
18
  # can inspect it and build the messages Array.
19
- #
20
- # Coercing files with Array to protect against
21
- # +nil+ values.
22
19
  def flay
23
- @flay ||= ::Flay.run(Array(files))
20
+ @flay ||= ::Flay.run(files)
24
21
  end
25
22
 
26
23
  def files
@@ -1,5 +1,5 @@
1
1
  module Pronto
2
2
  module FlayVersion
3
- VERSION = '0.6.2'.freeze
3
+ VERSION = '0.11.0'.freeze
4
4
  end
5
5
  end
data/pronto-flay.gemspec CHANGED
@@ -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-flay'
13
+ s.homepage = 'http://github.com/mmozuras/pronto-flay'
14
14
  s.summary = 'Pronto runner for Flay, structural similarities analyzer'
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('flay', '~> 2.8')
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-flay
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.2
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-03 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: flay
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/flay.rb
94
96
  - lib/pronto/flay/version.rb
95
97
  - pronto-flay.gemspec
96
- homepage: http://github.org/mmozuras/pronto-flay
98
+ homepage: http://github.com/mmozuras/pronto-flay
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 Flay, structural similarities analyzer