validations_step_fu 0.0.1 → 0.0.2
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/README.md +15 -0
- data/init.rb +1 -0
- data/lib/validations_step_fu/version.rb +1 -1
- metadata +2 -1
data/README.md
CHANGED
|
@@ -4,6 +4,21 @@
|
|
|
4
4
|
|
|
5
5
|
1つのモデルの入力フォームが複数のページにまたがる場合のvalidationsをDRYに保つためのRails 3プラグイン
|
|
6
6
|
|
|
7
|
+
## installation
|
|
8
|
+
|
|
9
|
+
### gem
|
|
10
|
+
|
|
11
|
+
In your Gemfile, add this line
|
|
12
|
+
|
|
13
|
+
gem 'validations_step_fu'
|
|
14
|
+
|
|
15
|
+
Then run bundle
|
|
16
|
+
|
|
17
|
+
$ bundle
|
|
18
|
+
|
|
19
|
+
### Rails plguin
|
|
20
|
+
|
|
21
|
+
$ rails plugin install git://github.com/matsuda/validations_step_fu.git
|
|
7
22
|
|
|
8
23
|
## Example
|
|
9
24
|
|
data/init.rb
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
require 'validations_step_fu'
|
metadata
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: validations_step_fu
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease:
|
|
5
|
-
version: 0.0.
|
|
5
|
+
version: 0.0.2
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
8
|
- Kosuke Matsuda
|
|
@@ -73,6 +73,7 @@ files:
|
|
|
73
73
|
- README
|
|
74
74
|
- README.md
|
|
75
75
|
- Rakefile
|
|
76
|
+
- init.rb
|
|
76
77
|
- lib/validations_step_fu.rb
|
|
77
78
|
- lib/validations_step_fu/version.rb
|
|
78
79
|
- test/test_helper.rb
|