Sha256: 3f35976be6bef59c99ff3d8d19c2ce4eefcc888efb07bf354f726d0af92939a1
Contents?: true
Size: 1.03 KB
Versions: 100
Compression:
Stored size: 1.03 KB
Contents
class WebServiceGenerator < Rails::Generator::NamedBase def manifest record do |m| # Check for class naming collisions. m.class_collisions class_path, "#{class_name}Api", "#{class_name}Controller", "#{class_name}ApiTest" # API and test directories. m.directory File.join('app/apis', class_path) m.directory File.join('app/controllers', class_path) m.directory File.join('test/functional', class_path) # API definition, controller, and functional test. m.template 'api_definition.rb', File.join('app/apis', class_path, "#{file_name}_api.rb") m.template 'controller.rb', File.join('app/controllers', class_path, "#{file_name}_controller.rb") m.template 'functional_test.rb', File.join('test/functional', class_path, "#{file_name}_api_test.rb") end end end
Version data entries
100 entries across 100 versions & 7 rubygems