flipper 0.9.1 → 0.9.2

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: 9a204f6e857619306f5a8e083de3d2dcb578554c
4
- data.tar.gz: 41840f392fb4387e91cf2280ff590bee94986d84
3
+ metadata.gz: e2d0c40eaed262ab192fa672996ccdee0cc43aaa
4
+ data.tar.gz: 2c5117b307da9a9da90d85c820ce640494a8d865
5
5
  SHA512:
6
- metadata.gz: da7fd47f638f88427161fc5d8b7a6a04888008bba40e11ee4bf9d9938efb5387a8379022759c7ab290360b3e1e6b851d8c2e79a78fb6b6ec8f273787d625376f
7
- data.tar.gz: ff60ec784fdb9db352f534d1876bbfc2f89a860f7e46d164c734dad8c20a40692b7034e33cf16885bc092251a202921bc426d4149aca6361bb3f6240cd53c944
6
+ metadata.gz: 0ffdb49402a659f33ab147f24450440afda3a08afefe7459dd5cb045e9fe4ff607015c277b9d4697603ac7190607e2d34181a8f44cdb44ba74642efe040a52fe
7
+ data.tar.gz: eef4104468dc78f364595081b77c27b17837383d916c7cb91486e4db42dd87449319d8eb38f4f611cddfdbbab463e0a60cc0290e303e2a03e5a766a582a2a46b
@@ -1,3 +1,10 @@
1
+ ## 0.9.2
2
+
3
+ * GET /api/v1/features
4
+ * POST /api/v1/features - add feature endpoint
5
+ * rack-protection 2.0.0 support
6
+ * pretty rake output
7
+
1
8
  ## 0.9.1
2
9
 
3
10
  * bump flipper-active_record to officially support rails 5
@@ -3,7 +3,6 @@
3
3
  # that lives in the same directory as this file. The benefit is that it
4
4
  # subscribes to the correct events and does everything for your.
5
5
  require 'flipper/instrumentation/subscriber'
6
- require 'statsd'
7
6
 
8
7
  module Flipper
9
8
  module Instrumentation
@@ -1,3 +1,3 @@
1
1
  module Flipper
2
- VERSION = "0.9.1".freeze
2
+ VERSION = "0.9.2".freeze
3
3
  end
@@ -1,6 +1,8 @@
1
1
  require 'helper'
2
2
  require 'flipper/adapters/memory'
3
+ require 'flipper/adapters/instrumented'
3
4
  require 'flipper/instrumentation/statsd'
5
+ require 'statsd'
4
6
 
5
7
  RSpec.describe Flipper::Instrumentation::StatsdSubscriber do
6
8
  let(:statsd_client) { Statsd.new }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flipper
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.1
4
+ version: 0.9.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Nunemaker
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-07-07 00:00:00.000000000 Z
11
+ date: 2016-08-22 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Feature flipper is the act of enabling/disabling features in your application,
14
14
  ideally without re-deploying or changing anything in your code base. Flipper makes