Skip to content

Instantly share code, notes, and snippets.

@clyfe
Created September 23, 2014 19:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save clyfe/135ac643e025aad3c8f7 to your computer and use it in GitHub Desktop.
Save clyfe/135ac643e025aad3c8f7 to your computer and use it in GitHub Desktop.
Wizard
# 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