Skip to content

Commit

Permalink
docs: do not mention beta
Browse files Browse the repository at this point in the history
  • Loading branch information
palkan committed Apr 2, 2019
1 parent e64f2c5 commit a3defe7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
5 changes: 1 addition & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,7 @@ Action Policy is an authorization framework for Ruby and Rails applications.
Add this line to your application's `Gemfile`:

```ruby
gem "action_policy"
# or start from the new version,
# which is coming soon (it contains much more useful features)
gem "action_policy", "0.3.0.beta1"
gem "action_policy", "~> 0.3.0"
```

And then execute:
Expand Down
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

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

## What is it?

Expand Down
1 change: 1 addition & 0 deletions docs/debugging.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ def feed?
(admin? || allowed_to?(:access_feed?)) &&
(user.name == "Jack" || user.name == "Kate")
end

```

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

0 comments on commit a3defe7

Please sign in to comment.