flipper-cloud 0.16.2 → 0.19.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 +5 -5
- data/flipper-cloud.gemspec +0 -1
- data/lib/flipper/cloud/configuration.rb +4 -0
- data/lib/flipper/version.rb +1 -1
- data/spec/flipper/cloud/configuration_spec.rb +5 -0
- data/spec/flipper/cloud_spec.rb +8 -0
- metadata +6 -7
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 | 
            -
             | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 2 | 
            +
            SHA256:
         | 
| 3 | 
            +
              metadata.gz: 6216e75f04e5bef06c69e891f6ed5efe6e3fd76031fd696cc286282a41976049
         | 
| 4 | 
            +
              data.tar.gz: 508fda309071c22ffe75372ebbd6c419a18083c4e996c392029d631a9f6968b5
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 46f2f8c832d94884c7faa1093ddf2910d47ebb9d755ee677e9599760a28bae56f09cb091be0df7d2dc6830863c23536341f0ac30005a6505b1240eac44d2c930
         | 
| 7 | 
            +
              data.tar.gz: f4ad93d8c151754b60eda5952a156347e3864eb0d5be5e2ba2cea25940adb8680403b8ce5a99d362d73553f42f50acbd545a9d3342cb75918f3c516dc8b6e95d
         | 
    
        data/flipper-cloud.gemspec
    CHANGED
    
    | @@ -10,7 +10,6 @@ Gem::Specification.new do |gem| | |
| 10 10 | 
             
              gem.authors       = ['John Nunemaker']
         | 
| 11 11 | 
             
              gem.email         = ['nunemaker@gmail.com']
         | 
| 12 12 | 
             
              gem.summary       = 'FeatureFlipper.com adapter for Flipper'
         | 
| 13 | 
            -
              gem.description   = 'FeatureFlipper.com adapter for Flipper'
         | 
| 14 13 | 
             
              gem.license       = 'MIT'
         | 
| 15 14 | 
             
              gem.homepage      = 'https://github.com/jnunemaker/flipper'
         | 
| 16 15 |  | 
| @@ -22,6 +22,9 @@ module Flipper | |
| 22 22 | 
             
                  # Public: net/http open timeout for all http requests (default: 5).
         | 
| 23 23 | 
             
                  attr_accessor :open_timeout
         | 
| 24 24 |  | 
| 25 | 
            +
                  # Public: net/http write timeout for all http requests (default: 5).
         | 
| 26 | 
            +
                  attr_accessor :write_timeout
         | 
| 27 | 
            +
             | 
| 25 28 | 
             
                  # Public: IO stream to send debug output too. Off by default.
         | 
| 26 29 | 
             
                  #
         | 
| 27 30 | 
             
                  #  # for example, this would send all http request information to STDOUT
         | 
| @@ -55,6 +58,7 @@ module Flipper | |
| 55 58 | 
             
                    @instrumenter = options.fetch(:instrumenter, Instrumenters::Noop)
         | 
| 56 59 | 
             
                    @read_timeout = options.fetch(:read_timeout, 5)
         | 
| 57 60 | 
             
                    @open_timeout = options.fetch(:open_timeout, 5)
         | 
| 61 | 
            +
                    @write_timeout = options.fetch(:write_timeout, 5)
         | 
| 58 62 | 
             
                    @sync_interval = options.fetch(:sync_interval, 10)
         | 
| 59 63 | 
             
                    @local_adapter = options.fetch(:local_adapter) { Adapters::Memory.new }
         | 
| 60 64 | 
             
                    @debug_output = options[:debug_output]
         | 
    
        data/lib/flipper/version.rb
    CHANGED
    
    
| @@ -28,6 +28,11 @@ RSpec.describe Flipper::Cloud::Configuration do | |
| 28 28 | 
             
                expect(instance.open_timeout).to eq(5)
         | 
| 29 29 | 
             
              end
         | 
| 30 30 |  | 
| 31 | 
            +
              it "can set write_timeout" do
         | 
| 32 | 
            +
                instance = described_class.new(required_options.merge(write_timeout: 5))
         | 
| 33 | 
            +
                expect(instance.write_timeout).to eq(5)
         | 
| 34 | 
            +
              end
         | 
| 35 | 
            +
             | 
| 31 36 | 
             
              it "can set sync_interval" do
         | 
| 32 37 | 
             
                instance = described_class.new(required_options.merge(sync_interval: 1))
         | 
| 33 38 | 
             
                expect(instance.sync_interval).to eq(1)
         | 
    
        data/spec/flipper/cloud_spec.rb
    CHANGED
    
    | @@ -96,4 +96,12 @@ RSpec.describe Flipper::Cloud do | |
| 96 96 | 
             
                  .with(hash_including(open_timeout: 1))
         | 
| 97 97 | 
             
                described_class.new('asdf', open_timeout: 1)
         | 
| 98 98 | 
             
              end
         | 
| 99 | 
            +
             | 
| 100 | 
            +
              if RUBY_VERSION >= '2.6.0'
         | 
| 101 | 
            +
                it 'can set write_timeout' do
         | 
| 102 | 
            +
                  expect(Flipper::Adapters::Http::Client).to receive(:new)
         | 
| 103 | 
            +
                    .with(hash_including(open_timeout: 1))
         | 
| 104 | 
            +
                  described_class.new('asdf', open_timeout: 1)
         | 
| 105 | 
            +
                end
         | 
| 106 | 
            +
              end
         | 
| 99 107 | 
             
            end
         | 
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: flipper-cloud
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 0. | 
| 4 | 
            +
              version: 0.19.1
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - John Nunemaker
         | 
| 8 8 | 
             
            autorequire: 
         | 
| 9 9 | 
             
            bindir: bin
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date:  | 
| 11 | 
            +
            date: 2020-12-04 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: flipper
         | 
| @@ -16,15 +16,15 @@ dependencies: | |
| 16 16 | 
             
                requirements:
         | 
| 17 17 | 
             
                - - "~>"
         | 
| 18 18 | 
             
                  - !ruby/object:Gem::Version
         | 
| 19 | 
            -
                    version: 0. | 
| 19 | 
            +
                    version: 0.19.1
         | 
| 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. | 
| 27 | 
            -
            description:  | 
| 26 | 
            +
                    version: 0.19.1
         | 
| 27 | 
            +
            description: 
         | 
| 28 28 | 
             
            email:
         | 
| 29 29 | 
             
            - nunemaker@gmail.com
         | 
| 30 30 | 
             
            executables: []
         | 
| @@ -62,8 +62,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement | |
| 62 62 | 
             
                - !ruby/object:Gem::Version
         | 
| 63 63 | 
             
                  version: '0'
         | 
| 64 64 | 
             
            requirements: []
         | 
| 65 | 
            -
             | 
| 66 | 
            -
            rubygems_version: 2.4.5.4
         | 
| 65 | 
            +
            rubygems_version: 3.0.3
         | 
| 67 66 | 
             
            signing_key: 
         | 
| 68 67 | 
             
            specification_version: 4
         | 
| 69 68 | 
             
            summary: FeatureFlipper.com adapter for Flipper
         |