Created
September 23, 2014 19:04
-
-
Save clyfe/135ac643e025aad3c8f7 to your computer and use it in GitHub Desktop.
Wizard
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# step : Integer | |
class Model < ActiveRecord::Base | |
with_options if: "step < 1" do |assoc| | |
validates :foo, presence: true | |
end | |
with_options if: "step < 2" do |assoc| | |
validates :bar, presence: true | |
end | |
# ... | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment