Sha256: 695958a90f94bed90a80ede77e670ca9ae10569d8fc8f20cefcc1de9fbbfd540
Contents?: true
Size: 488 Bytes
Versions: 33
Compression:
Stored size: 488 Bytes
Contents
module SurveyGizmoSpec class ResourceTest include SurveyGizmo::Resource attribute :id, Integer attribute :title, String attribute :test_id, Integer # routes @route = { get: '/test/:id', create: '/test/:test_id/resource', update: '/test/:test_id/resource/:id', delete: '/test/:test_id/resource/:id' } end class GenericResource include SurveyGizmo::Resource attribute :id, Integer attribute :title, String end end
Version data entries
33 entries across 33 versions & 1 rubygems