arcane 0.0.2 → 0.0.3
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.
- data/.travis.yml +0 -2
- data/README.md +25 -6
- data/lib/arcane.rb +2 -2
- data/lib/arcane/version.rb +1 -1
- metadata +3 -3
data/.travis.yml
CHANGED
data/README.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# Arcane
|
|
2
|
-
|
|
2
|
+
|
|
3
|
+
[](https://travis-ci.org/cloudsdaleapp/arcane)
|
|
4
|
+
[](http://badge.fury.io/rb/arcane)
|
|
5
|
+
|
|
6
|
+
Easy to use parameter filter extending [Strong Parameters](https://github.com/rails/strong_parameters).
|
|
7
|
+
Arcane provides you with helpers which guide you in leveraging regular Ruby classes and object oriented
|
|
8
|
+
design patterns to organise and easily harnass the power of strong parameters in Rails 3 and 4.
|
|
9
|
+
|
|
10
|
+
Arcane magic is real and reliable, no cheap tricks.
|
|
11
|
+
Inspired by [Pundit](https://github.com/elabs/pundit)
|
|
12
|
+
|
|
13
|
+
## Requirements
|
|
14
|
+
|
|
15
|
+
Currently this gem is only supported for Rails and with any of these ruby versions:
|
|
16
|
+
|
|
17
|
+
* ruby-2.0.0
|
|
18
|
+
* ruby-1.9.3
|
|
19
|
+
* ruby-1.9.2
|
|
20
|
+
* jruby-19
|
|
21
|
+
* rbx-19
|
|
3
22
|
|
|
4
23
|
## Installation
|
|
5
24
|
|
|
@@ -15,13 +34,13 @@ And then execute:
|
|
|
15
34
|
$ bundle
|
|
16
35
|
```
|
|
17
36
|
|
|
18
|
-
|
|
37
|
+
## Features
|
|
19
38
|
|
|
20
|
-
|
|
21
|
-
$ gem install arcane
|
|
22
|
-
```
|
|
39
|
+
## To-do
|
|
23
40
|
|
|
24
|
-
|
|
41
|
+
* Write rails generators
|
|
42
|
+
* List features
|
|
43
|
+
* Add Documentation
|
|
25
44
|
|
|
26
45
|
## Contributing
|
|
27
46
|
|
data/lib/arcane.rb
CHANGED
data/lib/arcane/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: arcane
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.3
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -147,7 +147,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
147
147
|
version: '0'
|
|
148
148
|
segments:
|
|
149
149
|
- 0
|
|
150
|
-
hash:
|
|
150
|
+
hash: 3121159589769937332
|
|
151
151
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
152
152
|
none: false
|
|
153
153
|
requirements:
|
|
@@ -156,7 +156,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
156
156
|
version: '0'
|
|
157
157
|
segments:
|
|
158
158
|
- 0
|
|
159
|
-
hash:
|
|
159
|
+
hash: 3121159589769937332
|
|
160
160
|
requirements: []
|
|
161
161
|
rubyforge_project:
|
|
162
162
|
rubygems_version: 1.8.25
|