togglefy 1.0.0 → 1.0.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 +4 -4
- data/README.md +3 -7
- data/lib/generators/togglefy/templates/create_features.rb +1 -1
- data/lib/togglefy/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 33415717981fc41491f58d5e9dd2350ff0ecc06d2ea5cfe12ec89ca7d803c053
|
4
|
+
data.tar.gz: 60beafbb21f10dbb8f6774ea565089f79299e3f08cb3ea5cf397a545a524a40e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 53ca1d9e9aeee7213c604c7de6073fd52996b43409a37c736ff09379ac95830e2c4e759e0eade15878ddf7a6010e36d6a38646a6973b07a7f6873bc9edcfa3ae
|
7
|
+
data.tar.gz: 5ddf6e977d0ef7c32d88b1f4550eeae1f74ec6535f147bbb1098958deffb252f71212e0c4bd2e51a2d181c209eb3bbe07a8a96d8c901a58d5f00bb65a5a8bbaf
|
data/README.md
CHANGED
@@ -6,26 +6,22 @@ Togglefy is free, open source and you are welcome to help build it.
|
|
6
6
|
|
7
7
|
## Installation
|
8
8
|
|
9
|
-
### UNDER CONSTRUCTION BECAUSE GEM STILL NEEDS TO BE UPLOADED TO RUBYGEMS
|
10
|
-
|
11
|
-
TODO: Replace `UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG` with your gem name right after releasing it to RubyGems.org. Please do not do it earlier due to security reasons. Alternatively, replace this section with instructions to install your gem from git if you don't plan to release to RubyGems.org.
|
12
|
-
|
13
9
|
Add the gem manually to your Gemfile:
|
14
10
|
|
15
11
|
```gemfile
|
16
|
-
gem "togglefy"
|
12
|
+
gem "togglefy", '~> 1.0'
|
17
13
|
```
|
18
14
|
|
19
15
|
Or install it and add to the application's Gemfile by executing:
|
20
16
|
|
21
17
|
```bash
|
22
|
-
bundle add
|
18
|
+
bundle add togglefy
|
23
19
|
```
|
24
20
|
|
25
21
|
If bundler is not being used to manage dependencies, install the gem by executing:
|
26
22
|
|
27
23
|
```bash
|
28
|
-
gem install
|
24
|
+
gem install togglefy
|
29
25
|
```
|
30
26
|
|
31
27
|
## Usage
|
@@ -4,7 +4,7 @@ class CreateTogglefyFeatures < ActiveRecord::Migration[8.0]
|
|
4
4
|
t.string :name, null: false
|
5
5
|
t.string :identifier, null: false
|
6
6
|
t.string :description
|
7
|
-
t.string :
|
7
|
+
t.string :tenant_id
|
8
8
|
t.string :group
|
9
9
|
t.string :environment
|
10
10
|
t.integer :status, default: 0, null: false
|
data/lib/togglefy/version.rb
CHANGED