README.md in activeadmin-regex-input-0.1.0 vs README.md in activeadmin-regex-input-0.1.1
- old
+ new
@@ -1,6 +1,6 @@
-# FORMTASTIC REGEX INPUT
+# Ativeadmin Regex Filter Input
## Description
A simple filter input for active admin with checking at client if input match predefined regex.
@@ -27,10 +27,10 @@
## Usage
In the index section of activeadmin controller:
```ruby
filter :sample_regex,
as: :regex,
- regex: ']d+',
+ regex: '/d+',
example: '123'
```
-The regex option is the string representation of the regex. This must compatible with javascript default regex engine.
+The regex option is the string representation of the regex. This must compatible with javascript default regex engine. Currently the server side validation isn't included.
\ No newline at end of file