We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This would be a gem to associate metadata with any API resources, like Stripe does in their API.
Usage should be pretty simple.
# app/models/post.rb class Post < ApplicationRecord include Pragma::Metadata::Model # ... end # app/resources/api/v1/post/contract/base.rb class API::V1::Post::Contract::Base < Pragma::Contract::Base include Pragma::Metadata::Contract # ... end # app/resources/api/v1/post/decorator/instance.rb class API::V1::Post::Decorator::Instance < Pragma::Decorator::Base include Pragma::Metadata::Decorator # ... end
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This would be a gem to associate metadata with any API resources, like Stripe does in their API.
Usage should be pretty simple.
The text was updated successfully, but these errors were encountered: