Module: Generapp

Defined in:
lib/generapp.rb,
lib/generapp/version.rb,
lib/generapp/app_builder.rb,
lib/generapp/actions/test.rb,
lib/generapp/actions/views.rb,
lib/generapp/actions/develop.rb,
lib/generapp/actions/database.rb,
lib/generapp/actions/production.rb,
lib/generapp/actions/configuration.rb,
lib/generapp/generators/app_generator.rb

Overview

Rails app generator with some minor modification and customizations Allows to jump start a project with some of Koombea's standards and practices

Defined Under Namespace

Modules: Actions, Generators Classes: AppBuilder

Constant Summary collapse

RAILS_VERSION =

Default Rails Version

'~> 4.2.0'.freeze
RUBY_VERSION =

Default Ruby Version

IO.read("#{File.dirname(__FILE__)}/../../.ruby-version").strip
VERSION =

Gem Version

'0.3.0'.freeze

Class Method Summary collapse

Class Method Details

.rootObject

Gem root folder



6
7
8
# File 'lib/generapp.rb', line 6

def self.root
  File.dirname __dir__
end

.templatesObject

Gem template folder



11
12
13
# File 'lib/generapp.rb', line 11

def self.templates
  File.join root, 'templates'
end