lib/convenient_service/examples/rails/gemfile.rb in convenient_service-0.11.0 vs lib/convenient_service/examples/rails/gemfile.rb in convenient_service-0.12.0

- old
+ new

@@ -12,13 +12,13 @@ # module ConvenientService module Examples module Rails module Gemfile - class << self - def format(path) - Services::Format[path: path] - end + include ConvenientService::Feature + + entry :format do |path| + Services::Format[path: path] end end end end end