Skip to content

Commit a3defe7

Browse files
committed
docs: do not mention beta
1 parent e64f2c5 commit a3defe7

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

README.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,7 @@ Action Policy is an authorization framework for Ruby and Rails applications.
2121
Add this line to your application's `Gemfile`:
2222

2323
```ruby
24-
gem "action_policy"
25-
# or start from the new version,
26-
# which is coming soon (it contains much more useful features)
27-
gem "action_policy", "0.3.0.beta1"
24+
gem "action_policy", "~> 0.3.0"
2825
```
2926

3027
And then execute:

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
> Action Policy is an authorization framework for Ruby and Rails applications.
77
8-
**NOTE:** this documentation covers the _coming-soon_ version "0.3.0" ([first beta](https://rubygems.org/gems/action_policy) is out!).
8+
**NOTE:** this documentation is for the version "0.3.0+".
99

1010
## What is it?
1111

docs/debugging.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ def feed?
1717
(admin? || allowed_to?(:access_feed?)) &&
1818
(user.name == "Jack" || user.name == "Kate")
1919
end
20+
2021
```
2122

2223
Suppose that you want to debug this rule ("Why does it return false?").

0 commit comments

Comments
 (0)