Sha256: efaa5a18bfc1cc85ce6b541325e5d38fdb75e5fc08f7415e632d139c9af226ea

Contents?: true

Size: 372 Bytes

Versions: 3

Compression:

Stored size: 372 Bytes

Contents

module OrigenAppGenerators
  # Generates a generic application shell
  class GenericApplication < Application
    # Any methods that are not protected will get invoked in the order they are
    # defined when the generator is run

    def generate_files
      build_filelist
    end

    def conclude
      puts "New app created at: #{destination_root}"
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
origen_app_generators-0.1.0 lib/origen_app_generators/generic_application.rb
origen_app_generators-0.0.3 lib/origen_app_generators/generic_application.rb
origen_app_generators-0.0.2 lib/origen_app_generators/generic_application.rb