flash_integration 0.1.1 → 0.1.2

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
2
  SHA256:
3
- metadata.gz: 76e51e20627ae43c8025cf1d9fe4ce5fc6f2a73716dc5e7f0f21860ebe9b3c86
4
- data.tar.gz: a245994953db3eebc61a4edc3a7ed203cc791f8e1515af49efe15a154bd59c2c
3
+ metadata.gz: 9090eccb40070f2b44c2616efe2b83df25c88165aee5597e6d2d6cb90a150ecf
4
+ data.tar.gz: e40681b72c3a5086a21e9b4d0bdc612ed604abcfb266777baf13d5c3f01b6b2f
5
5
  SHA512:
6
- metadata.gz: 14b7a1910fc80a5fa78aa11f0738c6f56acdc7ba832d121915d98c28f97c1199fae12bebd8e5578053a1ad59bd15a2a0affe7e61db0e861a38fb12dbbdf2383b
7
- data.tar.gz: cb8b66482ff2706c4173036f2ac5a141b6d8901fd50f509564cee4ecb45d639ed243e7f6543258cff22ec6ced2cf2610710a7e29c678b6885a879c9f9a141a71
6
+ metadata.gz: 3087be36597568b0715dd2210a5304a9abb8fc60045d35a036e1cd7ff1d313190023dadc384beb84abed105d212950ebae404a997ed31a9620d3e539fcfeb5e5
7
+ data.tar.gz: bfa7fd074a9616f2d8fdb4ebb052a592a0353644472e6344af54452e58641bcaba22ab04bb6d4f85eab99f53fb2cae3ed7c667877e401842286606956624f801
data/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # CHANGELOG
2
2
 
3
- ## v0.1.1-20220202 - Danilo Carolino
3
+ ## v0.1.2-20220202 - Danilo Carolino
4
4
 
5
5
  * [QC-79](https://qflash.atlassian.net/jira/software/projects/QC/boards/31?selectedIssue=QC-79)
6
6
  Reduzir uso de pipelines em projetos Ruby [Dependabot]
@@ -9,6 +9,6 @@ module Flash
9
9
  # Major - Incremented for incompatible changes with previous release (or big enough new features)
10
10
  # Minor - Incremented for new backwards-compatible features + deprecations
11
11
  # Patch - Incremented for backwards-compatible bug fixes
12
- VERSION = "0.1.1"
12
+ VERSION = "0.1.2"
13
13
  end
14
14
  end
@@ -1,7 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require "spec_helper"
4
-
5
3
  describe Flash::Integration::Connection do
6
4
  let(:base_url) { "http://localhost" }
7
5
  let(:connection) { Faraday::Connection.new(url: base_url) }
@@ -1,7 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require "spec_helper"
4
-
5
3
  describe Flash::Integration::Response do
6
4
  let(:request) { double("request") }
7
5
  let(:instance) { described_class.new(request:, status:) }
@@ -1,8 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require "spec_helper"
4
- require "flash_integration"
5
-
6
3
  RSpec.describe Flash::Integration do
7
4
  describe ".configure" do
8
5
  before do
data/spec/spec_helper.rb CHANGED
@@ -13,8 +13,12 @@ end
13
13
 
14
14
  require "rubygems"
15
15
  require "bundler"
16
- require "pry"
17
16
  require "flash_integration"
17
+ require "pry"
18
+
19
+ Dir["./spec/support/**/*.rb"].each { |f| require f }
20
+ Dir["./spec/initializers/**/*.rb"].each { |f| require f }
21
+ Dir["./lib/**/*.rb"].sort.each { |file| require file }
18
22
 
19
23
  begin
20
24
  Bundler.setup(:default, :development, :test)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flash_integration
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Danilo Carolino