generapp 0.3.0 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (42) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +4 -4
  3. data/.rubocop_todo.yml +5 -24
  4. data/.ruby-version +1 -1
  5. data/.travis.yml +1 -1
  6. data/CHANGELOG.md +17 -0
  7. data/Gemfile +1 -0
  8. data/Rakefile +1 -0
  9. data/bin/generapp +1 -0
  10. data/generapp.gemspec +2 -1
  11. data/lib/generapp/actions/configuration.rb +6 -2
  12. data/lib/generapp/actions/database.rb +1 -0
  13. data/lib/generapp/actions/develop.rb +6 -1
  14. data/lib/generapp/actions/production.rb +1 -0
  15. data/lib/generapp/actions/test.rb +1 -0
  16. data/lib/generapp/actions/views.rb +11 -0
  17. data/lib/generapp/app_builder.rb +4 -1
  18. data/lib/generapp/generators/app_generator.rb +1 -0
  19. data/lib/generapp/version.rb +2 -2
  20. data/lib/generapp.rb +1 -0
  21. data/templates/CONTRIBUTING.md +60 -0
  22. data/templates/Gemfile.erb +2 -2
  23. data/templates/README.md.erb +8 -1
  24. data/templates/RELEASING.md +23 -0
  25. data/templates/bin/setup +30 -0
  26. data/templates/circle.yml +1 -1
  27. data/templates/config/application.yml +1 -4
  28. data/templates/config/puma.rb +1 -0
  29. data/templates/config/version.rb.erb +8 -0
  30. data/templates/generapp_gitignore +0 -7
  31. data/templates/public/{manifest.json → manifest.json.erb} +1 -1
  32. data/templates/spec/database_cleaner.rb +1 -0
  33. data/templates/spec/devise.rb +1 -0
  34. data/templates/spec/rails_helper.rb +1 -0
  35. data/templates/spec/shoulda_matchers_config.rb +1 -0
  36. data/templates/tasks/auto_annotate_models.rake +1 -0
  37. data/templates/tasks/bundler_audit.rake +1 -0
  38. data/templates/views/_head.html.erb.erb +3 -4
  39. metadata +9 -8
  40. data/.hound.yml +0 -2
  41. data/.rubocop_defaults.yml +0 -1631
  42. data/templates/Procfile.dev +0 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9d2f7f132f1a6fc39fb0bd0304425054f5350e55
4
- data.tar.gz: a6eb1cfc96e80b7046e78ae97cf7255dc058c2f7
3
+ metadata.gz: e4f1fe0fc28a191ec82da9cd272336fc8e5c010a
4
+ data.tar.gz: 3f1e6427e22485d87d3fe14d4755692539c52af5
5
5
  SHA512:
6
- metadata.gz: 790a0e7d32698228e39c76961383483609952aa3c4c59ddc444a88f41838f78f5b0c38c7c97a7b6d2e772fbf91b5187d3bf970fad8a11e3a360426531d54eae0
7
- data.tar.gz: a920e3e00cb734613c491f674899978e9634ec8cadc03da99efbc2269976923f172f9632948914e60e647891e64eb3853383aeb4acd8eb3531b706b06a0e645d
6
+ metadata.gz: 32a11439297b5aae323a5b9101408fbc2928e7ecde7b53adb5dff360ea351ee2f040333c7605aace9356ac4f2de6845139b154671369bc7ee6409a48a792ca6e
7
+ data.tar.gz: 43dfc60ef2bace760290f263bf582a6316eb5f9e1f2a0fcfe29ba105593c7b4d624ac54545d88c5141ad54d4aeec3715cc6d35b20ee990b8ab8e6cec500a003e
data/.rubocop.yml CHANGED
@@ -1,8 +1,8 @@
1
- inherit_from:
2
- - .rubocop_defaults.yml
3
- - .rubocop_todo.yml
1
+ inherit_from: .rubocop_todo.yml
4
2
  AllCops:
5
3
  Exclude:
6
4
  - 'spec/**/*'
5
+ Include:
6
+ - Rakefile
7
+ - bin/generapp
7
8
  TargetRubyVersion: 2.3
8
-
data/.rubocop_todo.yml CHANGED
@@ -1,6 +1,6 @@
1
1
  # This configuration was generated by
2
2
  # `rubocop --auto-gen-config`
3
- # on 2016-01-15 16:49:41 -0500 using RuboCop version 0.35.1.
3
+ # on 2016-05-02 09:43:28 -0500 using RuboCop version 0.39.0.
4
4
  # The point is for the user to remove these configuration records
5
5
  # one by one as the offenses are removed from the code base.
6
6
  # Note that changes in the inspected code, or installation of new
@@ -11,10 +11,11 @@
11
11
  Metrics/ClassLength:
12
12
  Max: 109
13
13
 
14
- # Offense count: 8
15
- # Configuration parameters: AllowURI, URISchemes.
14
+ # Offense count: 6
15
+ # Configuration parameters: AllowHeredoc, AllowURI, URISchemes.
16
+ # URISchemes: http, https
16
17
  Metrics/LineLength:
17
- Max: 104
18
+ Max: 92
18
19
 
19
20
  # Offense count: 2
20
21
  # Configuration parameters: CountComments.
@@ -25,23 +26,3 @@ Metrics/MethodLength:
25
26
  Style/AccessorMethodName:
26
27
  Exclude:
27
28
  - 'lib/generapp/generators/app_generator.rb'
28
-
29
- # Offense count: 1
30
- # Cop supports --auto-correct.
31
- # Configuration parameters: AllowForAlignment.
32
- Style/ExtraSpacing:
33
- Exclude:
34
- - 'templates/config/puma.rb'
35
-
36
- # Offense count: 2
37
- # Cop supports --auto-correct.
38
- Style/SingleSpaceBeforeFirstArg:
39
- Exclude:
40
- - 'templates/config/puma.rb'
41
-
42
- # Offense count: 2
43
- # Cop supports --auto-correct.
44
- # Configuration parameters: MultiSpaceAllowedForOperators.
45
- Style/SpaceAroundOperators:
46
- Exclude:
47
- - 'templates/config/puma.rb'
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.3.0
1
+ 2.3.1
data/.travis.yml CHANGED
@@ -1,6 +1,6 @@
1
1
  language: ruby
2
2
  rvm:
3
- - 2.3.0
3
+ - 2.3.1
4
4
  - ruby-head
5
5
 
6
6
  sudo: false
data/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  ### master
2
2
 
3
+ ### 0.3.1 - 2016-05-02
4
+
5
+ * enhances
6
+ * Add RELEASING and CONTRIBUTING docs to generated app
7
+ * Improve integration with circleci
8
+ * Add file to track app version to generated app (`config/initializer/version.rb`)
9
+ * Add setup script
10
+ * Update to Ruby 2.3.1
11
+
12
+ ### 0.3.0 - 2016-01-15
13
+
14
+ * enhances
15
+ * Improve annotate defaults
16
+ * Improve hound code review
17
+ * Improve code base
18
+ * Integrate coverage with circle ci
19
+
3
20
  ### 0.2.0 - 2016-01-13
4
21
 
5
22
  * bug fixes
data/Gemfile CHANGED
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  source 'https://rubygems.org'
2
3
 
3
4
  # Specify your gem's dependencies in generapp.gemspec
data/Rakefile CHANGED
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  require 'bundler/setup'
2
3
  require 'bundler/gem_tasks'
3
4
  require 'rspec/core/rake_task'
data/bin/generapp CHANGED
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
2
3
  require 'bundler/setup'
3
4
  require 'generapp'
4
5
 
data/generapp.gemspec CHANGED
@@ -1,4 +1,5 @@
1
1
  # coding: utf-8
2
+ # frozen_string_literal: true
2
3
  lib = File.expand_path('../lib', __FILE__)
3
4
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
5
  require 'generapp/version'
@@ -29,6 +30,6 @@ Feel free to use it to jump start your project and don't waste any time configur
29
30
  spec.add_dependency 'rails', Generapp::RAILS_VERSION
30
31
  spec.add_development_dependency 'rspec', '~> 3.4', '>= 3.4.0'
31
32
  spec.add_development_dependency 'rubocop', '~> 0.35', '>= 0.35'
32
- spec.add_development_dependency 'coveralls', '~>0.8.0', '>= 0.8.0'
33
+ spec.add_development_dependency 'coveralls', '~> 0.8.0', '>= 0.8.0'
33
34
  spec.add_development_dependency 'yard', '~> 0.8.7', '>= 0.8.0'
34
35
  end
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  module Generapp
2
3
  module Actions #:nodoc
3
4
  # App configuration associated actions
@@ -12,9 +13,12 @@ module Generapp
12
13
  copy_file 'config/puma.rb', 'config/puma.rb'
13
14
  end
14
15
 
15
- def set_up_foreman
16
+ def set_up_version
17
+ template 'config/version.rb.erb', 'config/initializers/version.rb'
18
+ end
19
+
20
+ def set_up_procfile
16
21
  copy_file 'Procfile', 'Procfile'
17
- copy_file 'Procfile.dev', 'Procfile.dev'
18
22
  end
19
23
 
20
24
  def generate_devise
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  module Generapp
2
3
  module Actions #:nodoc
3
4
  # App database associated actions
@@ -1,4 +1,4 @@
1
-
1
+ # frozen_string_literal: true
2
2
  module Generapp
3
3
  module Actions #:nodoc
4
4
  # App develop environment
@@ -44,6 +44,11 @@ module Generapp
44
44
  copy_file 'config/application.yml', 'config/application.yml'
45
45
  end
46
46
 
47
+ def provide_setup_script
48
+ template 'bin/setup', 'bin/setup', force: true
49
+ run 'chmod a+x bin/setup'
50
+ end
51
+
47
52
  protected
48
53
 
49
54
  def generapp_generators
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  module Generapp
2
3
  module Actions #:nodoc
3
4
  # App production environment
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  module Generapp
2
3
  module Actions #:nodoc
3
4
  # App test environment
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  module Generapp
2
3
  module Actions #:nodoc
3
4
  # App views configuration
@@ -27,6 +28,16 @@ module Generapp
27
28
  'app/views/layouts/application.html.erb',
28
29
  force: true
29
30
  end
31
+
32
+ def create_humans_txt
33
+ copy_file 'public/humans.txt',
34
+ 'public/humans.txt'
35
+ end
36
+
37
+ def create_manifest
38
+ template 'public/manifest.json.erb',
39
+ 'public/manifest.json'
40
+ end
30
41
  end
31
42
  end
32
43
  end
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  require 'rails/generators/rails/app/app_generator'
2
3
 
3
4
  module Generapp
@@ -12,10 +13,12 @@ module Generapp
12
13
 
13
14
  def readme
14
15
  template 'README.md.erb', 'README.md'
16
+ copy_file 'RELEASING.md', 'RELEASING.md'
17
+ copy_file 'CONTRIBUTING.md', 'CONTRIBUTING.md'
15
18
  end
16
19
 
17
20
  def gitignore
18
- template 'generapp_gitignore', '.gitignore'
21
+ copy_file 'generapp_gitignore', '.gitignore'
19
22
  end
20
23
 
21
24
  def gemfile
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  require 'rails/generators'
2
3
  require 'rails/generators/rails/app/app_generator'
3
4
 
@@ -5,9 +5,9 @@
5
5
  # with some of Koombea's standards and practices
6
6
  module Generapp
7
7
  # Default Rails Version
8
- RAILS_VERSION = '~> 4.2.0'.freeze
8
+ RAILS_VERSION = '~> 4.2.0'
9
9
  # Default Ruby Version
10
10
  RUBY_VERSION = IO.read("#{File.dirname(__FILE__)}/../../.ruby-version").strip
11
11
  # Gem Version
12
- VERSION = '0.3.0'.freeze
12
+ VERSION = '0.3.1'
13
13
  end
data/lib/generapp.rb CHANGED
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  # Rails app generator with some minor modification and customizations
2
3
  # Allows to jump start a project
3
4
  # with some of Koombea's standards and practices
@@ -0,0 +1,60 @@
1
+ # Contributing
2
+
3
+ We try to keep master as a reflection of production and all work is done in the develop branch.
4
+ To facilitate this work you can install `git flow`, a series of commands on top of git
5
+ that allow feature branching and versioning release
6
+
7
+ Make your change. Write tests. Follow the [ruby style guide](https://github.com/bbatsov/ruby-style-guide).
8
+
9
+ ## Install git-flow
10
+
11
+ Check [git flow page](https://github.com/nvie/gitflow/wiki/Installation) for instructions
12
+
13
+ ## Initialize git-flow
14
+
15
+ ```sh
16
+ $ git flow init
17
+ ```
18
+
19
+ ### Features:
20
+
21
+ Every new change should be done in a feature branch,
22
+ these are the instructions for working with features and git flow
23
+
24
+ + Start a new feature from the 'develop' branch:
25
+
26
+ ```sh
27
+ $ git flow feature start <your feature>
28
+ ```
29
+
30
+ This action creates a new feature branch based on 'develop' and switches to it.
31
+
32
+ + Publish a feature:
33
+
34
+ ```sh
35
+ $ git flow feature publish <your feature>
36
+ ```
37
+
38
+ Publish a feature to the remote server so it can be used or reviewed by other users.
39
+
40
+ + Getting a published feature:
41
+
42
+ ```sh
43
+ $ git flow feature pull origin <your feature>
44
+ ```
45
+
46
+ Get a feature published by another user.
47
+
48
+ + Finish a feature:
49
+
50
+ ```sh
51
+ $ git flow feature finish <your feature>
52
+ ```
53
+
54
+ - Merged <your feature> into 'develop'.
55
+ - Removes the feature branch.
56
+ - Switches back to 'develop' branch.
57
+
58
+ ## More
59
+
60
+ On using git flow: http://nvie.com/posts/a-successful-git-branching-model/
@@ -18,7 +18,7 @@ group :development do
18
18
  gem 'better_errors'
19
19
  gem 'binding_of_caller'
20
20
  gem 'bullet' # N+1 queries reporter
21
- gem 'lol_dba', require: false # Missing index reporter
21
+ gem 'lol_dba' # Missing index reporter
22
22
  gem 'quiet_assets'
23
23
  gem 'rails-erd' # ER Diagrams
24
24
  gem 'spring'
@@ -29,7 +29,6 @@ group :development, :test do
29
29
  gem 'bundler-audit', require: false
30
30
  gem 'factory_girl_rails'
31
31
  gem 'figaro' # Secrets
32
- gem 'foreman'
33
32
  gem 'pry-rails'
34
33
  gem 'pry-remote'
35
34
  gem 'rspec-rails'
@@ -38,6 +37,7 @@ end
38
37
  group :test do
39
38
  gem 'database_cleaner'
40
39
  gem 'faker'
40
+ gem 'rspec_junit_formatter', '~> 0.2.2'
41
41
  gem 'shoulda-matchers'
42
42
  gem 'simplecov', require: false
43
43
  gem 'timecop' # Time manipulation
@@ -14,7 +14,14 @@
14
14
 
15
15
  ## Troubleshooting
16
16
 
17
- ## How to Contribute
17
+ ## Contributing
18
+
19
+ See our [CONTRIBUTING](CONTRIBUTING.md) guide.
20
+
21
+ ## Releasing
22
+
23
+ See our [RELEASING](RELEASING.md) guide.
18
24
 
19
25
  ## License
26
+
20
27
  Copyright <%= Time.now.year %>
@@ -0,0 +1,23 @@
1
+ # Releasing
2
+
3
+ Check the version number on `config/initializers/version.rb` then start the release for the next version.
4
+ Remember to follow [semantic versioning](config/initializers/version.rb).
5
+
6
+ ```sh
7
+ $ git flow release start <version>
8
+ ```
9
+
10
+ Update `config/initializers/version.rb` with the new version number and commit your changes.
11
+
12
+ ```sh
13
+ $ git commit -am "Bump version to <version>"
14
+ $ git flow release finish <version>
15
+ ```
16
+
17
+ Indicate changes when prompted and then push to remotes
18
+
19
+ ```sh
20
+ $ git push origin master
21
+ $ git push origin develop
22
+ $ git push --tags
23
+ ```
@@ -0,0 +1,30 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+ require 'pathname'
4
+
5
+ # path to your application root.
6
+ APP_ROOT = Pathname.new File.expand_path('../../', __FILE__)
7
+
8
+ Dir.chdir APP_ROOT do
9
+ # This script is a starting point to setup your application.
10
+ # Add necessary setup steps to this file:
11
+
12
+ puts '== Installing dependencies =='
13
+ system 'gem install bundler --conservative'
14
+ system 'bundle check || bundle install'
15
+
16
+ puts "\n== Copying sample application secrets =="
17
+ unless File.exist?('config/application.yml')
18
+ system 'cp config/application.yml.example config/application.yml'
19
+ end
20
+
21
+ puts "\n== Preparing database =="
22
+ system 'bin/rake db:setup'
23
+
24
+ puts "\n== Removing old logs and tempfiles =="
25
+ system 'rm -f log/*'
26
+ system 'rm -rf tmp/cache'
27
+
28
+ puts "\n== Restarting application server =="
29
+ system 'touch tmp/restart.txt'
30
+ end
data/templates/circle.yml CHANGED
@@ -4,4 +4,4 @@ dependencies:
4
4
  - cp config/application.yml.example config/application.yml
5
5
  test:
6
6
  override:
7
- - bundle exec rspec
7
+ - RAILS_ENV=test bundle exec rspec -r rspec_junit_formatter --format RspecJunitFormatter -o $CIRCLE_TEST_REPORTS/rspec/junit.xml
@@ -1,5 +1,5 @@
1
1
  defaults: &defaults
2
- DB_POOL: '12' # Max number of active DB connection
2
+ DB_POOL: '10' # Max number of active DB connection
3
3
  MAX_THREADS: '3' # Puma max number of threads
4
4
  REAPING_FREQUENCY: '5' # Enable database reaping connections
5
5
  WEB_CONCURRENCY: '2' # Puma processes
@@ -10,8 +10,5 @@ development:
10
10
  test:
11
11
  <<: *defaults
12
12
 
13
- staging:
14
- <<: *defaults
15
-
16
13
  production:
17
14
  <<: *defaults
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  workers Integer(ENV['WEB_CONCURRENCY'] || 2)
2
3
  threads_count = Integer(ENV['MAX_THREADS'] || 3)
3
4
  threads threads_count, threads_count
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ module <%= app_name.classify %>
4
+ class Application
5
+ # App Version
6
+ VERSION = '0.1.0'.freeze
7
+ end
8
+ end
@@ -31,13 +31,6 @@ backup*.dump
31
31
  *.dump
32
32
  *.orig
33
33
 
34
- # Idea
35
- .idea
36
- .idea/**/*
37
-
38
- # rbenv
39
- .rbenv-gemsets
40
-
41
34
  # Ignore application configuration
42
35
  /config/application.yml
43
36
 
@@ -1,5 +1,5 @@
1
1
  {
2
- "name": "App",
2
+ "name": "<%= app_name.humanize %>",
3
3
  "icons": [
4
4
  {
5
5
  "src": "\/android-icon-36x36.png",
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  RSpec.configure do |config|
2
3
  config.before(:suite) do
3
4
  DatabaseCleaner.strategy = :transaction
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  RSpec.configure do |config|
2
3
  config.include Devise::TestHelpers, type: :controller
3
4
  end
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  # This file is copied to spec/ when you run 'rails generate rspec:install'
2
3
  ENV['RAILS_ENV'] ||= 'test'
3
4
 
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  Shoulda::Matchers.configure do |config|
2
3
  config.integrate do |with|
3
4
  with.test_framework :rspec
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  # NOTE: only doing this in development as some production environments (Heroku)
2
3
  # NOTE: are sensitive to local FS writes, and besides -- it's just not proper
3
4
  # NOTE: to have a dev-mode tool do its thing in production.
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  if Rails.env.development? || Rails.env.test?
2
3
  require 'bundler/audit/cli'
3
4
 
@@ -20,11 +20,10 @@
20
20
  <meta name="theme-color" content="#fff">
21
21
 
22
22
  <meta name="robots" content="index,follow">
23
- <meta name="description" content="Saasler is the easiest way to create an “integrations directory” for your app.">
24
- <meta name="keywords" content="integrations,lists,applications">
25
- <link rel="author" href="humans.txt" />
23
+ <meta name="description" content="">
24
+ <meta name="keywords" content="">
25
+ <link rel="author" href="/humans.txt" />
26
26
 
27
27
  <%%= stylesheet_link_tag 'application' %>
28
28
  <%%= csrf_meta_tags %>
29
29
  <meta name="viewport" content="width=device-width, initial-scale=1">
30
- <link href='https://fonts.googleapis.com/css?family=Roboto:400,700,300' rel='stylesheet' type='text/css'>
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: generapp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gustavo Bazan
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-01-15 00:00:00.000000000 Z
11
+ date: 2016-05-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -130,10 +130,8 @@ extra_rdoc_files: []
130
130
  files:
131
131
  - ".coveralls.yml"
132
132
  - ".gitignore"
133
- - ".hound.yml"
134
133
  - ".rspec"
135
134
  - ".rubocop.yml"
136
- - ".rubocop_defaults.yml"
137
135
  - ".rubocop_todo.yml"
138
136
  - ".ruby-version"
139
137
  - ".travis.yml"
@@ -157,19 +155,22 @@ files:
157
155
  - lib/generapp/app_builder.rb
158
156
  - lib/generapp/generators/app_generator.rb
159
157
  - lib/generapp/version.rb
158
+ - templates/CONTRIBUTING.md
160
159
  - templates/Gemfile.erb
161
160
  - templates/Procfile
162
- - templates/Procfile.dev
163
161
  - templates/README.md.erb
162
+ - templates/RELEASING.md
164
163
  - templates/application.scss
164
+ - templates/bin/setup
165
165
  - templates/circle.yml
166
166
  - templates/config/application.yml
167
167
  - templates/config/newrelic.yml.erb
168
168
  - templates/config/postgresql_database.yml.erb
169
169
  - templates/config/puma.rb
170
+ - templates/config/version.rb.erb
170
171
  - templates/generapp_gitignore
171
172
  - templates/public/humans.txt
172
- - templates/public/manifest.json
173
+ - templates/public/manifest.json.erb
173
174
  - templates/simplecov
174
175
  - templates/spec/database_cleaner.rb
175
176
  - templates/spec/devise.rb
@@ -193,7 +194,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
193
194
  requirements:
194
195
  - - ">="
195
196
  - !ruby/object:Gem::Version
196
- version: 2.3.0
197
+ version: 2.3.1
197
198
  required_rubygems_version: !ruby/object:Gem::Requirement
198
199
  requirements:
199
200
  - - ">="
@@ -201,7 +202,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
201
202
  version: '0'
202
203
  requirements: []
203
204
  rubyforge_project:
204
- rubygems_version: 2.5.1
205
+ rubygems_version: 2.6.4
205
206
  signing_key:
206
207
  specification_version: 4
207
208
  summary: Koombea Rails app generator
data/.hound.yml DELETED
@@ -1,2 +0,0 @@
1
- ruby:
2
- config_file: .rubocop.yml