rspec_table_formatter 0.1.11 → 0.1.14

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: 426fd4e25e8d1ab26edf8352bd0e41c5cf00a828d4f85402e79af8f9c0c35f52
4
- data.tar.gz: b289d69ab7ff91c1d95fa87f203f28191d3bdaa60ce07903cad03b5c85c8c30a
3
+ metadata.gz: 86be40cfacbfc7b5293365343c449a63e47bed98066eebce7b2d5be196e79ce5
4
+ data.tar.gz: 77c16143ba8006a866251ac176cf6c8d4852ac6931470a0d70cdca0c0be0b0f5
5
5
  SHA512:
6
- metadata.gz: '053811037ae1d12a747402f474f790f43351588bdb0ee26d28bb024dadf8c18cda14dcb1bc4f5302efa976b14e37745d435e3430eb9f5faea497947c4b9146a4'
7
- data.tar.gz: '094ebce9f66d254a454407929630977ef9eb3f758f415871ef5b0e066e652b7dcc8578104d1284179e9f0a6ddc97f81d9be9f797f6a0f51c4de405aff43d3a12'
6
+ metadata.gz: 31a7eb8e21640be2d01d80f4fc8ad68196eda3e6a667d4d14bf7c132d89b2de109cc39a4a021c5746aec9e440ada8b32012c93d91be2d6550e291cec877babca
7
+ data.tar.gz: 218e22f36bbf15c3025af9c16c8113a5e60750c50e94c9c23e2ba2138ebe03225cb825142824bd2702ee5617ee692dcc84e82ad46e27e8158388f7e0f896c533
@@ -22,6 +22,12 @@ jobs:
22
22
  with:
23
23
  bundler-cache: true # runs 'bundle install' and caches installed gems automatically
24
24
 
25
+ - name: Unset bundler deployment mode
26
+ run: bundle config unset deployment
27
+
28
+ - name: Install dependencies
29
+ run: bundle install --jobs 4
30
+
25
31
  - name: Publish to RubyGems
26
32
  # if: contains(github.ref, 'refs/tags/v')
27
33
  run: |
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rspec_table_formatter (0.1.11)
4
+ rspec_table_formatter (0.1.14)
5
5
  terminal-table (~> 3.0.2)
6
6
 
7
7
  GEM
@@ -1,4 +1,4 @@
1
- module RspecTableFormatter
1
+ class RspecTableFormatter
2
2
  class Configurations
3
3
 
4
4
  attr_accessor :passed_message, :failed_message, :pending_message,
@@ -2,6 +2,6 @@
2
2
 
3
3
  class RspecTableFormatter
4
4
  module Version
5
- VERSION = '0.1.11'
5
+ VERSION = '0.1.14'
6
6
  end
7
7
  end
@@ -1,7 +1,9 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require 'rspec_table_formatter/version'
4
+
4
5
  require_relative './table_builder'
6
+ require_relative './rspec_table_formatter/configurations'
5
7
 
6
8
  # main class for formatter
7
9
  class RspecTableFormatter
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rspec_table_formatter
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.11
4
+ version: 0.1.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nijeesh
@@ -50,7 +50,7 @@ files:
50
50
  - bin/console
51
51
  - bin/setup
52
52
  - lib/rspec_table_formatter.rb
53
- - lib/rspec_table_formatter/configuration.rb
53
+ - lib/rspec_table_formatter/configurations.rb
54
54
  - lib/rspec_table_formatter/version.rb
55
55
  - lib/table_builder.rb
56
56
  - rspec_table_formatter.gemspec