flipper-firebase_remote_config 0.0.1 → 0.0.2

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: 532ea32e91582a6ec5e68d328a951e98f5477137726cff2a177e53545f9b2d02
4
- data.tar.gz: feaa5358f7005276dc1421370824fb55294319b85209e2c80a70e7816a8dbd79
3
+ metadata.gz: 7e2956abccd142025bb241735f308889cf733b9bb141665156cb0958cf17300a
4
+ data.tar.gz: 22c688467b61292675cb2273a4e825d8bba8c0935735bddd00c3d8edfe2a2200
5
5
  SHA512:
6
- metadata.gz: 2b08ecc82798840db761e5ccce7eab46e5adb0ccff42fde2329c0f44fb93c979811cc258225ab76289d2aac59755f1b009ea2fc4e2e7aae135f4653b51d4391c
7
- data.tar.gz: 584edf4b6539b719974469fe9893982c2ae1563921979cc03d235aaeb6ead4b7a30a9395d814b63b6a26a21509e72329514fa02dfa7a1e2786386b7db3c917d6
6
+ metadata.gz: c090e0f78dfc5891ca35b4b4bc5642e07e29f88517587d44106b0f2b8214e4ca8c530bcc851c262a077b6224d8a4e882c34c19df261848722369ea2a51531f27
7
+ data.tar.gz: fddf5637394277206f9641551928e5efcdcf777e48859c8d8df2e262f938a0ff209e1288696e32fa83d41247b9021d452d0fb31c1df70fcde5e31481e640859e
data/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2026 DevOps Health
3
+ Copyright (c) 2026 Roberto Quintanilla
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # flipper-firebase_remote_config
2
2
 
3
+ [![CI](https://github.com/devops-health/flipper-firebase_remote_config/actions/workflows/ci.yml/badge.svg)](https://github.com/devops-health/flipper-firebase_remote_config/actions/workflows/ci.yml)
4
+ [![Gem Version](https://badge.fury.io/rb/flipper-firebase_remote_config.svg)](https://rubygems.org/gems/flipper-firebase_remote_config)
5
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
6
+
3
7
  A [Flipper](https://www.flippercloud.io/docs) adapter that stores feature state
4
8
  in [Firebase Remote Config](https://firebase.google.com/docs/remote-config).
5
9
  Useful when you want flags reachable from both your Ruby backend and your
@@ -123,6 +127,15 @@ bundle exec rspec
123
127
  bundle exec rubocop
124
128
  ```
125
129
 
130
+ ## Contributing
131
+
132
+ Bug reports and pull requests are welcome on GitHub at
133
+ <https://github.com/devops-health/flipper-firebase_remote_config>. See
134
+ [CONTRIBUTING.md](CONTRIBUTING.md) for dev setup and PR guidelines.
135
+
136
+ For security issues, please follow [SECURITY.md](SECURITY.md) rather than
137
+ opening a public issue.
138
+
126
139
  ## License
127
140
 
128
- MIT.
141
+ Released under the [MIT License](LICENSE).
@@ -1,7 +1,7 @@
1
1
  module Flipper
2
2
  module Adapters
3
3
  class FirebaseRemoteConfig
4
- VERSION = '0.0.1'.freeze
4
+ VERSION = '0.0.2'.freeze
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flipper-firebase_remote_config
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Roberto Quintanilla
@@ -51,15 +51,19 @@ executables: []
51
51
  extensions: []
52
52
  extra_rdoc_files: []
53
53
  files:
54
- - CHANGELOG.md
55
54
  - LICENSE
56
55
  - README.md
57
56
  - lib/flipper/adapters/firebase_remote_config.rb
58
57
  - lib/flipper/adapters/firebase_remote_config/client.rb
59
58
  - lib/flipper/adapters/firebase_remote_config/version.rb
59
+ homepage: https://github.com/devops-health/flipper-firebase_remote_config
60
60
  licenses:
61
61
  - MIT
62
62
  metadata:
63
+ source_code_uri: https://github.com/devops-health/flipper-firebase_remote_config
64
+ changelog_uri: https://github.com/devops-health/flipper-firebase_remote_config/releases
65
+ bug_tracker_uri: https://github.com/devops-health/flipper-firebase_remote_config/issues
66
+ documentation_uri: https://github.com/devops-health/flipper-firebase_remote_config#readme
63
67
  rubygems_mfa_required: 'true'
64
68
  rdoc_options: []
65
69
  require_paths:
data/CHANGELOG.md DELETED
@@ -1,18 +0,0 @@
1
- # Changelog
2
-
3
- All notable changes to this project will be documented in this file.
4
-
5
- The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
- and this project adheres to [Semantic Versioning](https://semver.org/).
7
-
8
- ## [Unreleased]
9
-
10
- ### Added
11
- - Initial Flipper adapter targeting the Firebase Remote Config v1 REST API.
12
- - One Remote Config parameter per feature (prefix configurable, default
13
- `flipper__`), with an `__index__` sentinel parameter listing known feature
14
- keys.
15
- - In-process template + ETag cache with a configurable TTL (default 30s) and a
16
- `#reload!` method to force-refresh.
17
- - Optimistic-concurrency retry: one retry on HTTP 409/412 then re-raise.
18
- - Service-account authentication via `googleauth`.