eac_ruby_gem_support 0.1.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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: '0771687402723bdb4db72b4589b556e6d8d08bbe5335837bf40881b54f8b9654'
4
+ data.tar.gz: 84cc79cb9748407f8506248a9a120186139b0160f5ed14eefe7db3b3fb511fa6
5
+ SHA512:
6
+ metadata.gz: 65fd899bc5cf37a1af70f0e02dfb83ff57267dcb59b7784f12866da974c871ade490c9e26f9c56aa7fbbaf0645b4070f1fcada064bb9b1bd0083e459ba26d361
7
+ data.tar.gz: f3248c3613af488add4105d8195c90729296cf6ea2f348a74ffe525d4ccdb675cf5c627843d294281157f1e9340c8896a0d3dc6afa513cc9d41ada579dba4857
@@ -0,0 +1,6 @@
1
+ # frozen_string_literal: true
2
+
3
+ module EacRubyGemSupport
4
+ require 'eac_ruby_gems_support/spec/examples/rubocop_check'
5
+ require 'eac_ruby_gems_support/version'
6
+ end
@@ -0,0 +1,21 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'rubocop'
4
+
5
+ RSpec.shared_examples 'rubocop_check' do |root_path|
6
+ before do
7
+ ::RuboCop::ConfigLoader.ignore_parent_exclusion = true
8
+ end
9
+
10
+ let(:root_path) { root_path }
11
+ let(:config_store) do
12
+ r = ::RuboCop::ConfigStore.new
13
+ r.for(root_path)
14
+ r
15
+ end
16
+ let(:runner) { ::RuboCop::Runner.new({}, config_store) }
17
+
18
+ it 'rubocop return ok' do
19
+ expect(runner.run([])).to eq(true)
20
+ end
21
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module EacRubyGemSupport
4
+ VERSION = '0.1.0'
5
+ end
metadata ADDED
@@ -0,0 +1,102 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: eac_ruby_gem_support
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Esquilo Azul Company
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2020-03-21 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rspec
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '3.9'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.9'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rubocop
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 0.80.1
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 0.80.1
41
+ - !ruby/object:Gem::Dependency
42
+ name: rubocop-rails
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: 2.4.2
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: 2.4.2
55
+ - !ruby/object:Gem::Dependency
56
+ name: rubocop-rspec
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: 1.38.1
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: 1.38.1
69
+ description:
70
+ email:
71
+ executables: []
72
+ extensions: []
73
+ extra_rdoc_files: []
74
+ files:
75
+ - lib/eac_ruby_gem_support.rb
76
+ - lib/eac_ruby_gem_support/spec/examples/rubocop_check.rb
77
+ - lib/eac_ruby_gem_support/version.rb
78
+ homepage: https://github.com/esquilo-azul/eac_ruby_gem_support
79
+ licenses: []
80
+ metadata:
81
+ source_code_uri: https://github.com/esquilo-azul/eac_ruby_gem_support
82
+ post_install_message:
83
+ rdoc_options: []
84
+ require_paths:
85
+ - lib
86
+ required_ruby_version: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - ">="
89
+ - !ruby/object:Gem::Version
90
+ version: '0'
91
+ required_rubygems_version: !ruby/object:Gem::Requirement
92
+ requirements:
93
+ - - ">="
94
+ - !ruby/object:Gem::Version
95
+ version: '0'
96
+ requirements: []
97
+ rubyforge_project:
98
+ rubygems_version: 2.7.7
99
+ signing_key:
100
+ specification_version: 4
101
+ summary: Development support for Ruby' Gem.
102
+ test_files: []