Sha256: c14326bca349826e6b4c753a8b8675efc1061a01c52ded450eda84193fc3a2f7
Contents?: true
Size: 324 Bytes
Versions: 1
Compression:
Stored size: 324 Bytes
Contents
# frozen_string_literal: true # https://codecrate.com/2014/01/replace-rake-with-thor.html # Thor task to create a new Profile for Rails App Generator class Profile < Thor desc 'new', 'Create a new Profile for testing Rails App Generator settings' def new(name) # do something here puts "new #{name}" end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rails_app_generator-0.1.9 | tasks/profile.thor |