rails_app_generator 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: d89c170613dfb0e417f3ffd838fe43054131e448217472168598dcafff90b127
4
+ data.tar.gz: eb356aed6b4f8abb01599f0b4e1433c38b147b47b88548b9543a13d1dbf65ee7
5
+ SHA512:
6
+ metadata.gz: efaf6e2c86116e185492707cc553f33d2dfe6a10739f9f7db4132f62f064a3d923da48c5b016a754e12d44a330e73b8461930fc33737e5d12ae1b1ba6100737b
7
+ data.tar.gz: 1ba8f9198b73bedfbb6b0835c72f690a15dfa0e1fb6c5a83e576c2a17fbe8f7e6f1fdec7ae04cbad983a195c44ef66f2bc5cd338df9fe3ee5dbfbc96c4b95482
data/.builders/_.rb ADDED
@@ -0,0 +1 @@
1
+ # require_relative './path/here'
data/.builders/boot.rb ADDED
@@ -0,0 +1,39 @@
1
+ # Boot Sequence
2
+
3
+ include KLog::Logging
4
+
5
+ CONFIG_KEY = :rails_app_generator
6
+
7
+ log.kv 'working folder', Dir.pwd
8
+
9
+ KConfig.configure do |config|
10
+ config.handlebars.defaults.add_all_defaults
11
+ end
12
+
13
+ def k_builder
14
+ @k_builder ||= KBuilder::BaseBuilder.init(KConfig.configuration(CONFIG_KEY))
15
+ end
16
+
17
+ KConfig.configure(CONFIG_KEY) do |config|
18
+ builder_folder = Dir.pwd
19
+ base_folder = File.expand_path('../', builder_folder)
20
+ global_template = File.expand_path('~/dev/kgems/k_templates/templates')
21
+
22
+ config.template_folders.add(:global_template , global_template)
23
+ config.template_folders.add(:template , File.expand_path('.templates', Dir.pwd))
24
+
25
+ config.target_folders.add(:app , base_folder)
26
+ config.target_folders.add(:builder , builder_folder)
27
+ end
28
+
29
+ KConfig.configuration(CONFIG_KEY).debug
30
+
31
+ area = KManager.add_area(CONFIG_KEY)
32
+ resource_manager = area.resource_manager
33
+ resource_manager
34
+ .fileset
35
+ .glob('*.rb', exclude: ['boot.rb'])
36
+ .glob('generators/**/*.rb')
37
+ resource_manager.add_resources
38
+
39
+ KManager.boot
@@ -0,0 +1,132 @@
1
+ KManager.action :bootstrap do
2
+ action do
3
+ application_name = :rails_app_generator
4
+
5
+ # Ruby Gem Bootstrap
6
+ director = KDirector::Dsls::RubyGemDsl
7
+ .init(k_builder,
8
+ on_exist: :skip, # %i[skip write compare]
9
+ on_action: :queue # %i[queue execute]
10
+ )
11
+ .data(
12
+ ruby_version: '2.7',
13
+ application: application_name,
14
+ application_description: 'Create new Rails Application with custom opinions',
15
+ application_lib_path: application_name.to_s,
16
+ application_lib_namespace: 'RailsAppGenerator',
17
+ namespaces: ['RailsAppGenerator'],
18
+ author: 'David Cruwys',
19
+ author_email: 'david@ideasmen.com.au',
20
+ initial_semver: '0.0.1',
21
+ main_story: 'As a Developer, I want to create new Rails application with flexible opinions so that I can build different rails proof of concepts',
22
+ copyright_date: '2022',
23
+ website: 'http://appydave.com/gems/rails_app_generator'
24
+ )
25
+ .github(
26
+ active: false,
27
+ repo_name: application_name
28
+ ) do
29
+ create_repository
30
+ # delete_repository
31
+ # list_repositories
32
+ open_repository
33
+ # run_command('git init')
34
+ end
35
+ .blueprint(
36
+ active: false,
37
+ name: :bin_hook,
38
+ description: 'initialize repository',
39
+ on_exist: :write) do
40
+
41
+ cd(:app)
42
+
43
+ run_template_script('bin/runonce/git-setup.sh', dom: dom)
44
+
45
+ add('.githooks/commit-msg').run_command('chmod +x .githooks/commit-msg')
46
+ add('.githooks/pre-commit').run_command('chmod +x .githooks/pre-commit')
47
+
48
+ add('.gitignore')
49
+
50
+ run_command('git config core.hooksPath .githooks') # enable sharable githooks (developer needs to turn this on before editing rep)
51
+
52
+ run_command("git add .; git commit -m 'chore: #{self.options.description.downcase}'; git push")
53
+ run_command("gh repo edit -d \"#{dom[:application_description]}\"")
54
+ end
55
+ .package_json(
56
+ active: false,
57
+ name: :package_json,
58
+ description: 'Set up the package.json file for semantic versioning'
59
+ ) do
60
+ self
61
+ .add('package.json', dom: dom)
62
+ .play_actions
63
+
64
+ self
65
+ .add_script('release', 'semantic-release')
66
+ .sort
67
+ .development
68
+ .npm_add_group('semver-ruby')
69
+
70
+ run_command("git add .; git commit -m 'chore: #{self.options.description.downcase}'; git push")
71
+ end
72
+ .blueprint(
73
+ active: true,
74
+ name: :opinionated,
75
+ description: 'opinionated GEM files',
76
+ on_exist: :write) do
77
+
78
+ cd(:app)
79
+
80
+ add('bin/setup')
81
+ add('bin/console')
82
+
83
+ add("lib/#{typed_dom.application}.rb" , template_file: 'lib/applet_name.rb' , dom: dom)
84
+ add("lib/#{typed_dom.application}/version.rb" , template_file: 'lib/applet_name/version.rb' , dom: dom)
85
+
86
+ add('spec/spec_helper.rb')
87
+ add("spec/#{typed_dom.application}_spec.rb" , template_file: 'spec/applet_name_spec.rb', dom: dom)
88
+
89
+ add("#{typed_dom.application}.gemspec" , template_file: 'applet_name.gemspec', dom: dom)
90
+ add('Gemfile', dom: dom)
91
+ add('Guardfile', dom: dom)
92
+ add('Rakefile', dom: dom)
93
+ add('.rspec', dom: dom)
94
+ add('.rubocop.yml', dom: dom)
95
+ add('README.md', dom: dom, ruby: '<help name="blah blah" />')
96
+ add('CODE_OF_CONDUCT.md', dom: dom)
97
+ add('LICENSE.txt', dom: dom)
98
+
99
+ # run_command("rubocop -a")
100
+
101
+ # run_command("git add .; git commit -m 'chore: #{self.options.description.downcase}'; git push")
102
+ end
103
+ .blueprint(
104
+ active: false,
105
+ name: :ci_cd,
106
+ description: 'github actions (CI/CD)',
107
+ on_exist: :write) do
108
+
109
+ cd(:app)
110
+
111
+ run_command("gh secret set SLACK_WEBHOOK --body \"$SLACK_REPO_WEBHOOK\"")
112
+ run_command("gh secret set GEM_HOST_API_KEY --body \"$GEM_HOST_API_KEY\"")
113
+
114
+ add('.github/workflows/main.yml')
115
+ add('.releaserc.json')
116
+
117
+ run_command("git add .; git commit -m 'chore: #{self.options.description.downcase}'; git push")
118
+ end
119
+
120
+ director.play_actions
121
+ # director.builder.logit
122
+ end
123
+ end
124
+
125
+ KManager.opts.app_name = 'rails_app_generator'
126
+ KManager.opts.sleep = 2
127
+ KManager.opts.reboot_on_kill = 0
128
+ KManager.opts.reboot_sleep = 4
129
+ KManager.opts.exception_style = :short
130
+ KManager.opts.show.time_taken = true
131
+ KManager.opts.show.finished = true
132
+ KManager.opts.show.finished_message = 'FINISHED :)'
data/.releaserc.json ADDED
@@ -0,0 +1,40 @@
1
+ {
2
+ "branches": [
3
+ "main"
4
+ ],
5
+ "plugins": [
6
+ "@semantic-release/commit-analyzer",
7
+ "@semantic-release/release-notes-generator",
8
+ [
9
+ "@semantic-release/npm",
10
+ {
11
+ "npmPublish": false
12
+ }
13
+ ],
14
+ [
15
+ "@klueless-js/semantic-release-rubygem",
16
+ {
17
+ "gemPublish": true
18
+ }
19
+ ],
20
+ [
21
+ "@semantic-release/changelog",
22
+ {
23
+ "changelogFile": "CHANGELOG.md",
24
+ "changelogFileTitle": "Rails App Generator Changelog"
25
+ }
26
+ ],
27
+ [
28
+ "@semantic-release/git",
29
+ {
30
+ "assets": [
31
+ "lib/rails_app_generator/version.rb",
32
+ "CHANGELOG.md"
33
+ ],
34
+ "message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
35
+ }
36
+ ],
37
+ "@semantic-release/github"
38
+ ],
39
+ "repositoryUrl": "git@github.com:klueless-io/rails_app_generator.git"
40
+ }
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.rubocop.yml ADDED
@@ -0,0 +1,90 @@
1
+ inherit_mode:
2
+ merge:
3
+ - Exclude # see: https://stackoverflow.com/a/70818366/473923
4
+ - AllowedNames
5
+ AllCops:
6
+ TargetRubyVersion: 2.7
7
+ DisplayCopNames: true
8
+ ExtraDetails: true
9
+ NewCops: enable
10
+ Exclude:
11
+ - ".builders/**/*"
12
+ - "spec/samples/**/*"
13
+ - "a/**/*"
14
+
15
+ Metrics/BlockLength:
16
+ Exclude:
17
+ - "**/spec/**/*"
18
+ - "*.gemspec"
19
+ IgnoredMethods:
20
+ - configure
21
+ - context
22
+ - define
23
+ - describe
24
+ - draw
25
+ - factory
26
+ - feature
27
+ - guard
28
+ - included
29
+ - it
30
+ - let
31
+ - let!
32
+ - scenario
33
+ - setup
34
+ - shared_context
35
+ - shared_examples
36
+ - shared_examples_for
37
+ - transaction
38
+
39
+ Metrics/MethodLength:
40
+ Max: 25
41
+
42
+ Layout/LineLength:
43
+ Max: 200
44
+ # Ignores annotate output
45
+ # AllowedPatterns: ['\A# \*\*'] # this is renamed to AllowedPatterns and I need to come up with a template for this
46
+ IgnoreCopDirectives: true
47
+
48
+ Lint/UnusedMethodArgument:
49
+ AllowUnusedKeywordArguments: true
50
+
51
+ Style/BlockComments:
52
+ Enabled: false
53
+ Include:
54
+ - "**/spec/*"
55
+
56
+ # My Preferences - Start
57
+ Metrics/ClassLength:
58
+ Enabled: false
59
+ Metrics/ModuleLength:
60
+ Exclude:
61
+ - "**/spec/**/*"
62
+ Naming/MemoizedInstanceVariableName:
63
+ Enabled: false
64
+ Naming/VariableNumber:
65
+ Exclude:
66
+ - "**/spec/**/*"
67
+ Naming/MethodParameterName:
68
+ AllowedNames:
69
+ - as
70
+ Style/EmptyMethod:
71
+ Exclude:
72
+ - "**/spec/**/*"
73
+ Metrics/ParameterLists:
74
+ Exclude:
75
+ - "**/spec/**/*"
76
+ Layout/EmptyLineBetweenDefs:
77
+ Exclude:
78
+ - "**/spec/**/*"
79
+
80
+ Lint/AmbiguousBlockAssociation:
81
+ Exclude:
82
+ - "**/spec/**/*"
83
+
84
+ Style/AccessorGrouping:
85
+ Enabled: false
86
+
87
+ Layout/SpaceBeforeComma:
88
+ Enabled: false
89
+ # My Preferences - End
90
+
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2022-07-16
4
+
5
+ - Initial release
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ - Using welcoming and inclusive language
18
+ - Being respectful of differing viewpoints and experiences
19
+ - Gracefully accepting constructive criticism
20
+ - Focusing on what is best for the community
21
+ - Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ - The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ - Trolling, insulting/derogatory comments, and personal or political attacks
28
+ - Public or private harassment
29
+ - Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ - Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at david.cruwys@bugcrowd.com. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,21 @@
1
+ # frozen_string_literal: true
2
+
3
+ source 'https://rubygems.org'
4
+
5
+ gemspec
6
+
7
+ group :development, :test do
8
+ gem 'guard-bundler'
9
+ gem 'guard-rspec'
10
+ gem 'guard-rubocop'
11
+ gem 'rake'
12
+ gem 'rake-compiler', require: false
13
+ gem 'rspec', '~> 3.0'
14
+ gem 'rubocop'
15
+ gem 'rubocop-rake', require: false
16
+ gem 'rubocop-rspec', require: false
17
+ end
18
+
19
+ group :test do
20
+ gem 'simplecov', require: false
21
+ end
data/Guardfile ADDED
@@ -0,0 +1,30 @@
1
+ # frozen_string_literal: true
2
+
3
+ guard :bundler, cmd: 'bundle install' do
4
+ watch('Gemfile')
5
+ watch('.gemspec')
6
+ end
7
+
8
+ group :green_pass_then_cop, halt_on_fail: true do
9
+ guard :rspec, cmd: 'bundle exec rspec -f doc' do
10
+ require 'guard/rspec/dsl'
11
+ dsl = Guard::RSpec::Dsl.new(self)
12
+
13
+ # RSpec files
14
+ rspec = dsl.rspec
15
+ watch(rspec.spec_helper) { rspec.spec_dir }
16
+ watch(rspec.spec_support) { rspec.spec_dir }
17
+ watch(rspec.spec_files)
18
+
19
+ # Ruby files
20
+ ruby = dsl.ruby
21
+ dsl.watch_spec_files_for(ruby.lib_files)
22
+ # watch(%r{^lib//(.+)\.rb$}) { |m| "spec/unit/#{m[1]}_spec.rb" }
23
+ # watch(%r{^lib//commands/(.+)\.rb$}) { |m| "spec/unit/commands/#{m[1]}_spec.rb" }
24
+ end
25
+
26
+ guard :rubocop, all_on_start: false, cli: ['--format', 'clang'] do
27
+ watch(/{.+\.rb$/)
28
+ watch(%r{(?:.+/)?\.rubocop(?:_todo)?\.yml$}) { |m| File.dirname(m[0]) }
29
+ end
30
+ end
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2022 David Cruwys
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,82 @@
1
+ # Rails App Generator
2
+
3
+ > Create new Rails Application with custom opinions
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'rails_app_generator'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ ```bash
16
+ bundle install
17
+ ```
18
+
19
+ Or install it yourself as:
20
+
21
+ ```bash
22
+ gem install rails_app_generator
23
+ ```
24
+
25
+ ## Stories
26
+
27
+ ### Main Story
28
+
29
+ As a Developer, I want to create new Rails application with flexible opinions so that I can build different rails proof of concepts
30
+
31
+ See all [stories](./STORIES.md)
32
+
33
+
34
+ ## Usage
35
+ xxxxxxxxxxxxxxxx <help name="blah blah" />
36
+ See all [usage examples](./USAGE.md)
37
+
38
+
39
+
40
+ ## Development
41
+
42
+ Checkout the repo
43
+
44
+ ```bash
45
+ git clone https://github.com/klueless-io/rails_app_generator
46
+ ```
47
+
48
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests.
49
+
50
+ You can also run `bin/console` for an interactive prompt that will allow you to experiment.
51
+
52
+ ```bash
53
+ bin/console
54
+
55
+ Aaa::Bbb::Program.execute()
56
+ # => ""
57
+ ```
58
+
59
+ `rails_app_generator` is setup with Guard, run `guard`, this will watch development file changes and run tests automatically, if successful, it will then run rubocop for style quality.
60
+
61
+ To release a new version, update the version number in `version.rb`, build the gem and push the `.gem` file to [rubygems.org](https://rubygems.org).
62
+
63
+ ```bash
64
+ rake publish
65
+ rake clean
66
+ ```
67
+
68
+ ## Contributing
69
+
70
+ Bug reports and pull requests are welcome on GitHub at https://github.com/klueless-io/rails_app_generator. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
71
+
72
+ ## License
73
+
74
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
75
+
76
+ ## Code of Conduct
77
+
78
+ Everyone interacting in the Rails App Generator project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/klueless-io/rails_app_generator/blob/master/CODE_OF_CONDUCT.md).
79
+
80
+ ## Copyright
81
+
82
+ Copyright (c) David Cruwys. See [MIT License](LICENSE.txt) for further details.
data/Rakefile ADDED
@@ -0,0 +1,34 @@
1
+ # frozen_string_literal: true
2
+
3
+ # source: https://stephenagrice.medium.com/making-a-command-line-ruby-gem-write-build-and-push-aec24c6c49eb
4
+
5
+ GEM_NAME = 'rails_app_generator'
6
+
7
+ require 'bundler/gem_tasks'
8
+ require 'rspec/core/rake_task'
9
+ require 'rails_app_generator/version'
10
+
11
+ RSpec::Core::RakeTask.new(:spec)
12
+
13
+ require 'rake/extensiontask'
14
+
15
+ desc 'Compile all the extensions'
16
+ task build: :compile
17
+
18
+ Rake::ExtensionTask.new('rails_app_generator') do |ext|
19
+ ext.lib_dir = 'lib/rails_app_generator'
20
+ end
21
+
22
+ desc 'Publish the gem to RubyGems.org'
23
+ task :publish do
24
+ version = RailsAppGenerator::VERSION
25
+ system 'gem build'
26
+ system "gem push #{GEM_NAME}-#{version}.gem"
27
+ end
28
+
29
+ desc 'Remove old *.gem files'
30
+ task :clean do
31
+ system 'rm *.gem'
32
+ end
33
+
34
+ task default: %i[clobber compile spec]
data/bin/console ADDED
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ # frozen_string_literal: true
4
+
5
+ require 'bundler/setup'
6
+ require 'rails_app_generator'
7
+
8
+ # You can add fixtures and/or initialization code here to make experimenting
9
+ # with your gem easier. You can also use a different console, if you like.
10
+
11
+ # (If you use this, don't forget to add pry to your Gemfile!)
12
+ # require 'pry'
13
+ # Pry.start
14
+
15
+ require 'irb'
16
+ IRB.start(__FILE__)
data/bin/setup ADDED
@@ -0,0 +1,11 @@
1
+ #!/usr/bin/env bash
2
+
3
+ # frozen_string_literal: true
4
+
5
+ set -euo pipefail
6
+ IFS=$'\n\t'
7
+ set -vx
8
+
9
+ bundle install
10
+
11
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,40 @@
1
+ # frozen_string_literal: true
2
+
3
+ module RailsAppGenerator
4
+ class AppBuilder < Rails::AppBuilder
5
+ # def bin
6
+ # super
7
+ # template 'bin/setup.erb', 'bin/setup', force: true
8
+ # end
9
+
10
+ # def credentials
11
+ # super
12
+ # # This sets up credentials using a custom template for both development and production use
13
+ # Schienenzeppelin::AddOns::Credentials.apply
14
+ # end
15
+
16
+ # def readme
17
+ # template 'README.md.erb', 'README.md'
18
+ # end
19
+
20
+ # def ruby_version
21
+ # Schienenzeppelin::AddOns::RubyVersion.new(Context.new(options)).apply
22
+ # end
23
+
24
+ # def gemfile
25
+ # template 'Gemfile.erb', 'Gemfile'
26
+ # end
27
+
28
+ # def gitignore
29
+ # template '.gitignore.erb', '.gitignore'
30
+ # end
31
+
32
+ # def database_yml
33
+ # if options[:database] == 'postgresql'
34
+ # template 'config/postgresql.yml.erb', 'config/database.yml'
35
+ # else
36
+ # super
37
+ # end
38
+ # end
39
+ end
40
+ end