arturo 1.1.0 → 1.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/HISTORY.md +16 -0
- metadata +4 -3
data/HISTORY.md
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
## v 1.1.0 - cleanup
|
2
|
+
* changed `require_feature!` to `require_feature`
|
3
|
+
* replaced `Arturo.permit_management` and `Arturo.feature_recipient`
|
4
|
+
blocks with instance methods
|
5
|
+
`Arturo::FeatureManagement.may_manage_features?` and
|
6
|
+
`Arturo::FeatureAvailability.feature_recipient`
|
7
|
+
|
8
|
+
## v 1.0.0 - Initial Release
|
9
|
+
* `require_feature!` controller filter
|
10
|
+
* `if_feature_enabled` controller and view method
|
11
|
+
* `feature_enabled?` controller and view method
|
12
|
+
* CRUD for features
|
13
|
+
* `Arturo.permit_management` to configure management permission
|
14
|
+
* `Arturo.feature_recipient` to configure on what basis features are deployed
|
15
|
+
* whitelists and blacklists
|
16
|
+
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 1
|
7
7
|
- 1
|
8
|
-
-
|
9
|
-
version: 1.1.
|
8
|
+
- 1
|
9
|
+
version: 1.1.1
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- James A. Rosen
|
@@ -138,8 +138,9 @@ files:
|
|
138
138
|
- config/locales/en.yml
|
139
139
|
- config/routes.rb
|
140
140
|
- README.md
|
141
|
+
- HISTORY.md
|
141
142
|
has_rdoc: true
|
142
|
-
homepage: http://
|
143
|
+
homepage: http://github.com/jamesarosen/arturo
|
143
144
|
licenses: []
|
144
145
|
|
145
146
|
post_install_message:
|