Skip to content

Instantly share code, notes, and snippets.

@vinbarnes
Last active December 14, 2015 19:19
Show Gist options
  • Save vinbarnes/5136179 to your computer and use it in GitHub Desktop.
Save vinbarnes/5136179 to your computer and use it in GitHub Desktop.
I'd prefer the second way unless there's some weird Ruby reason why I shouldn't...
module My
module Job
class ReconcileAccounts
# ...
end
end
end
module My; end
module My::Job; end
class My::Job::ReconcileAccounts
# ...
end
@vinbarnes
Copy link
Author

@aniero duh. Forgot to namespace my modules. Thanks for the catch.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment