bubbler_ruby 0.1.0 → 0.1.1

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: 52716a000a41b820fa24b5b2d503a343c422e3845332c98bac6d130fe5a15e0c
4
- data.tar.gz: c2e24b74ef841793466351eaf55baf7e64e5b8b557ca4c5ee69bb5df42a75c65
3
+ metadata.gz: 9a216b5818009a774c04e02dbae7f6323353fd56c989b5ec53ef30348528dba5
4
+ data.tar.gz: cf999d1fb360657f92e374b8c63b9062fd6e59e1064082b5c439bbab7379e7fc
5
5
  SHA512:
6
- metadata.gz: bc5e67183c2803374ccceb89f8ffcec9e6b34e4f1d9c9922f4f8948207bfba8eaaadce1fbf12bb364a573d8da1baf5eb6c0b3774b6011f1e561b391a23ca9a93
7
- data.tar.gz: 9e8548314a6ff47f5ef37c4282b460b24c94a1d15abf2b670933543eb94b0fa54600d9092e48f92b1716bedcf9245163265eba2596a3ace5a661df6fc317e578
6
+ metadata.gz: bde7fdabf9c1b6621ad1e3172137cac5c7ca92a70c53c2d6baa271d312a7855eefe70b7a4c78cbda497d5b12ec8ce7c0dc459c75906feaa3c2c3355cfc4b5000
7
+ data.tar.gz: 5b7763bf1e0d71304a47c55d5bd2abcb1514b0eb084da404ac6726fe3a2a544a397655154c737b1101f7d6697350a649446e089ac9d13ea0900fcbba3501ea04
data/lib/Rakefile CHANGED
@@ -1,5 +1,5 @@
1
1
  # lib/Rakefile
2
- require 'bubbler'
2
+ require 'bubbler_ruby'
3
3
 
4
4
  path = File.expand_path(__dir__)
5
5
  Dir.glob("#{path}/tasks/**/*.rake").each { |f| import f }
@@ -5,7 +5,7 @@ require 'net/http'
5
5
 
6
6
  module Bubbler
7
7
  module Api
8
- require 'bubbler/railtie' if defined?(Rails)
8
+ require 'bubbler_ruby/railtie' if defined?(Rails)
9
9
 
10
10
  def self.post(simplecov_results)
11
11
  body = request_body(simplecov_results.as_json)
@@ -1,5 +1,5 @@
1
1
  # lib/railtie.rb
2
- require 'bubbler'
2
+ require 'bubbler_ruby'
3
3
  require 'rails'
4
4
 
5
5
  module Bubbler
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Bubbler
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
@@ -1,11 +1,11 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require_relative "bubbler/version"
4
- require_relative "bubbler/api"
3
+ require_relative "bubbler_ruby/version"
4
+ require_relative "bubbler_ruby/api"
5
5
 
6
6
  module Bubbler
7
7
  class Error < StandardError; end
8
- require 'bubbler/railtie' if defined?(Rails)
8
+ require 'bubbler_ruby/railtie' if defined?(Rails)
9
9
 
10
10
  def self.upload
11
11
  require 'simplecov'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bubbler_ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mark Davenport
@@ -26,11 +26,11 @@ files:
26
26
  - README.md
27
27
  - Rakefile
28
28
  - lib/Rakefile
29
- - lib/bubbler.rb
30
- - lib/bubbler/api.rb
31
- - lib/bubbler/railtie.rb
32
- - lib/bubbler/tasks/bubbler_coverage/upload.rake
33
- - lib/bubbler/version.rb
29
+ - lib/bubbler_ruby.rb
30
+ - lib/bubbler_ruby/api.rb
31
+ - lib/bubbler_ruby/railtie.rb
32
+ - lib/bubbler_ruby/tasks/bubbler_coverage/upload.rake
33
+ - lib/bubbler_ruby/version.rb
34
34
  - sig/bubbler.rbs
35
35
  homepage: https://github.com/mark579/bubbler_ruby
36
36
  licenses: