connfuse 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 278ccc536b65fc29914d15097298404a5aba5687
4
- data.tar.gz: 17aec67489447d8ef78703231f1c510e8730c7ab
3
+ metadata.gz: b64d5ceb094d153111c663c45011cc34427843c0
4
+ data.tar.gz: ceca494a2cc757ed076f3f937378f903a7fed9e8
5
5
  SHA512:
6
- metadata.gz: c8820717202931f1886a309d20f8c417a620232ae64a89fc4438fb1e7f0ac55e350e3b0cc684812b1d4e968a10643fa3f176ce0b8f102ae72b803e909697f181
7
- data.tar.gz: c7e80362b34381c511c512de3f77ba35aa82addaacf3d106866d0e5a6c193f0c5eea5cc04dcb4bbd6db908ac296b9814a3e89ae50ff31ea0ee0e5b1accb79e02
6
+ metadata.gz: 0216cb814c998fdd301f951150a30a433e45f5915953e056f05ba75e7f0d9780ab5e0932ce33898e3ec621a3251abd4ff8eb689ec543f56d088679a060b7e39b
7
+ data.tar.gz: 7492d2bd8a5b04d789f4615ce02e2c8e9f5020704f543d90eefba1593dff19d372980d328a5e104add6b41253f2909bb07f0c2879368d9b1eaf593861dd0cc4d
data/README.md CHANGED
@@ -1,7 +1,6 @@
1
1
  # Connfuse
2
2
 
3
3
  [![Build Status](https://travis-ci.org/rutaka-n/connfuse.svg?branch=master)](https://travis-ci.org/rutaka-n/connfuse) [![Code Climate](https://codeclimate.com/github/rutaka-n/connfuse/badges/gpa.svg)](https://codeclimate.com/github/rutaka-n/connfuse) [![Test Coverage](https://codeclimate.com/github/rutaka-n/connfuse/badges/coverage.svg)](https://codeclimate.com/github/rutaka-n/connfuse/coverage) [![Issue Count](https://codeclimate.com/github/rutaka-n/connfuse/badges/issue_count.svg)](https://codeclimate.com/github/rutaka-n/connfuse)
4
-
5
4
  Connfuse is a Ruby circuit breaker gem. It lets your application fail fast from failures of its service dependencies. It wraps calls to external services and monitors for failures.
6
5
 
7
6
  ## Installation
@@ -1,6 +1,8 @@
1
1
  require 'connfuse/version'
2
2
 
3
3
  module Connfuse
4
+ autoload :Circuit, 'connfuse/circuit'
5
+
4
6
  def self.included(base)
5
7
  base.extend ClassMethods
6
8
  def base.circuit(expected_errors: [], limit: 5, timeout: 15)
@@ -1,3 +1,3 @@
1
1
  module Connfuse
2
- VERSION = '0.1.2'.freeze
2
+ VERSION = '0.1.3'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: connfuse
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - rutaka-n