potassium 5.2.2 → 6.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.circleci/config.yml +103 -28
- data/.circleci/setup-rubygems.sh +3 -0
- data/.gitignore +2 -1
- data/.node-version +1 -0
- data/.rubocop.yml +530 -0
- data/.ruby-version +1 -1
- data/CHANGELOG.md +92 -1
- data/README.md +51 -45
- data/docs/DSL.md +5 -5
- data/lib/potassium/assets/.circleci/config.yml.erb +151 -0
- data/lib/potassium/assets/.eslintrc.json +352 -0
- data/lib/potassium/assets/.github/pull_request_template.md +9 -0
- data/lib/potassium/assets/.rubocop.yml +528 -0
- data/lib/potassium/assets/.stylelintrc.json +46 -0
- data/lib/potassium/assets/Makefile.erb +21 -32
- data/lib/potassium/assets/README.yml +59 -15
- data/lib/potassium/assets/active_admin/admin-component.vue +35 -0
- data/lib/potassium/assets/active_admin/admin_application.js +14 -0
- data/lib/potassium/assets/active_admin/init_activeadmin_vue.rb +10 -0
- data/lib/potassium/assets/app/graphql/graphql_controller.rb +55 -0
- data/lib/potassium/assets/app/graphql/mutations/login_mutation.rb +23 -0
- data/lib/potassium/assets/app/graphql/queries/base_query.rb +4 -0
- data/lib/potassium/assets/app/graphql/types/base/base_argument.rb +4 -0
- data/lib/potassium/assets/app/graphql/types/base/base_enum.rb +4 -0
- data/lib/potassium/assets/app/graphql/types/base/base_field.rb +5 -0
- data/lib/potassium/assets/app/graphql/types/base/base_input_object.rb +5 -0
- data/lib/potassium/assets/app/graphql/types/base/base_interface.rb +7 -0
- data/lib/potassium/assets/app/graphql/types/base/base_object.rb +5 -0
- data/lib/potassium/assets/app/graphql/types/base/base_scalar.rb +4 -0
- data/lib/potassium/assets/app/graphql/types/base/base_union.rb +4 -0
- data/lib/potassium/assets/app/graphql/types/mutation_type.rb +10 -0
- data/lib/potassium/assets/app/graphql/types/query_type.rb +13 -0
- data/lib/potassium/assets/app/javascript/app.spec.js +14 -0
- data/lib/potassium/assets/app/uploaders/base_uploader.rb +11 -0
- data/lib/potassium/assets/app/uploaders/image_uploader.rb +5 -0
- data/lib/potassium/assets/app/views/shared/_gtm_body.html.erb +4 -0
- data/lib/potassium/assets/app/views/shared/_gtm_head.html.erb +7 -0
- data/lib/potassium/assets/bin/release +1 -1
- data/lib/potassium/assets/bin/setup.erb +1 -1
- data/lib/potassium/assets/config/database_mysql.yml.erb +2 -2
- data/lib/potassium/assets/config/database_postgresql.yml.erb +2 -2
- data/lib/potassium/assets/config/graphql_playground.rb +20 -0
- data/lib/potassium/assets/config/puma.rb +1 -1
- data/lib/potassium/assets/config/shrine.rb +36 -0
- data/lib/potassium/assets/lib/tasks/auto_annotate_models.rake +2 -1
- data/lib/potassium/assets/package.json +4 -1
- data/lib/potassium/assets/redis.yml +1 -2
- data/lib/potassium/assets/testing/rails_helper.rb +2 -0
- data/lib/potassium/cli/commands/create.rb +12 -19
- data/lib/potassium/cli_options.rb +77 -26
- data/lib/potassium/helpers/gem-helpers.rb +1 -1
- data/lib/potassium/helpers/template-helpers.rb +8 -0
- data/lib/potassium/newest_version_ensurer.rb +19 -36
- data/lib/potassium/node_version_ensurer.rb +30 -0
- data/lib/potassium/recipes/admin.rb +3 -3
- data/lib/potassium/recipes/annotate.rb +1 -1
- data/lib/potassium/recipes/api.rb +93 -21
- data/lib/potassium/recipes/background_processor.rb +66 -19
- data/lib/potassium/recipes/ci.rb +10 -38
- data/lib/potassium/recipes/data_migrate.rb +44 -0
- data/lib/potassium/recipes/database.rb +4 -0
- data/lib/potassium/recipes/database_container.rb +7 -5
- data/lib/potassium/recipes/draper.rb +1 -10
- data/lib/potassium/recipes/file_storage.rb +66 -0
- data/lib/potassium/recipes/front_end.rb +225 -9
- data/lib/potassium/recipes/github.rb +93 -15
- data/lib/potassium/recipes/google_tag_manager.rb +90 -0
- data/lib/potassium/recipes/heroku.rb +42 -29
- data/lib/potassium/recipes/mailer.rb +18 -2
- data/lib/potassium/recipes/monitoring.rb +5 -0
- data/lib/potassium/recipes/node.rb +21 -0
- data/lib/potassium/recipes/rack_cors.rb +18 -15
- data/lib/potassium/recipes/schedule.rb +17 -2
- data/lib/potassium/recipes/style.rb +21 -3
- data/lib/potassium/recipes/vue_admin.rb +124 -0
- data/lib/potassium/templates/application.rb +10 -7
- data/lib/potassium/version.rb +7 -4
- data/potassium.gemspec +11 -6
- data/spec/features/api_spec.rb +25 -0
- data/spec/features/background_processor_spec.rb +19 -6
- data/spec/features/ci_spec.rb +7 -4
- data/spec/features/data_migrate_spec.rb +14 -0
- data/spec/features/database_container_spec.rb +1 -5
- data/spec/features/draper_spec.rb +1 -6
- data/spec/features/file_storage_spec.rb +75 -0
- data/spec/features/front_end_spec.rb +102 -0
- data/spec/features/github_spec.rb +53 -8
- data/spec/features/google_tag_manager_spec.rb +59 -0
- data/spec/features/graphql_spec.rb +71 -0
- data/spec/features/heroku_spec.rb +1 -1
- data/spec/features/mailer_spec.rb +16 -0
- data/spec/features/new_project_spec.rb +6 -14
- data/spec/features/node_spec.rb +28 -0
- data/spec/features/power_types_spec.rb +5 -16
- data/spec/features/schedule_spec.rb +11 -4
- data/spec/features/vue_admin_spec.rb +47 -0
- data/spec/spec_helper.rb +5 -0
- data/spec/support/fake_octokit.rb +31 -0
- data/spec/support/potassium_test_helpers.rb +26 -9
- data/tmp/.keep +0 -0
- metadata +152 -46
- data/lib/potassium/assets/.circleci/config.yml +0 -20
- data/lib/potassium/assets/Dockerfile.ci +0 -6
- data/lib/potassium/assets/active_admin/active_admin.js.coffee +0 -4
- data/lib/potassium/assets/active_admin/init_activeadmin_angular.rb +0 -8
- data/lib/potassium/assets/api/api_error_concern.rb +0 -32
- data/lib/potassium/assets/api/base_controller.rb +0 -9
- data/lib/potassium/assets/api/draper_responder.rb +0 -62
- data/lib/potassium/assets/api/responder.rb +0 -41
- data/lib/potassium/assets/aws.rb +0 -1
- data/lib/potassium/assets/bin/cibuild.erb +0 -100
- data/lib/potassium/assets/docker-compose.ci.yml +0 -11
- data/lib/potassium/assets/sidekiq_scheduler.yml +0 -9
- data/lib/potassium/assets/testing/paperclip.rb +0 -59
- data/lib/potassium/recipes/active_storage.rb +0 -40
- data/lib/potassium/recipes/angular_admin.rb +0 -56
- data/lib/potassium/recipes/aws_sdk.rb +0 -7
- data/lib/potassium/recipes/paperclip.rb +0 -47
- data/spec/features/active_storage_spec.rb +0 -30
- data/spec/features/front_end.rb +0 -30
@@ -1,51 +1,34 @@
|
|
1
|
-
require
|
2
|
-
require
|
3
|
-
require
|
4
|
-
|
1
|
+
require 'gems'
|
2
|
+
require 'semantic'
|
3
|
+
require 'potassium/text_spinner'
|
4
|
+
|
5
|
+
class VersionError < StandardError
|
6
|
+
end
|
5
7
|
|
6
8
|
module Potassium
|
7
9
|
class NewestVersionEnsurer
|
8
|
-
|
9
|
-
|
10
|
-
def initialize(current_version = Potassium::VERSION)
|
11
|
-
self.current_version = Semantic::Version.new(current_version)
|
10
|
+
def initialize
|
11
|
+
self.installed_version = Semantic::Version.new(Potassium::VERSION)
|
12
12
|
self.text_spinner = Potassium::TextSpinner.new
|
13
13
|
end
|
14
14
|
|
15
|
-
def ensure
|
16
|
-
spin_text(
|
15
|
+
def ensure!
|
16
|
+
spin_text('Checking your Potassium installation') { published_version }
|
17
17
|
|
18
|
-
self.
|
19
|
-
|
20
|
-
)
|
21
|
-
|
22
|
-
if latest_version <= current_version
|
23
|
-
up_to_date
|
24
|
-
success_block.call
|
25
|
-
else
|
26
|
-
please_update
|
27
|
-
end
|
18
|
+
self.published_version = Semantic::Version.new(Gems.versions('potassium').first['number'])
|
19
|
+
raise VersionError.new(update_message) if published_version > installed_version
|
28
20
|
end
|
29
21
|
|
30
22
|
private
|
31
23
|
|
32
|
-
attr_accessor :
|
33
|
-
|
34
|
-
def up_to_date
|
35
|
-
puts green("\nYour Potassium installation is up to date.")
|
36
|
-
end
|
24
|
+
attr_accessor :published_version, :installed_version, :text_spinner
|
37
25
|
|
38
|
-
def
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
print white("to upgrade your potassium installation.\n\n")
|
45
|
-
print white("If you really need to run this outdated version of potassium anyway, ")
|
46
|
-
print white("re-run this command with the ")
|
47
|
-
print black("--no-version-check")
|
48
|
-
puts white(" flag.")
|
26
|
+
def update_message
|
27
|
+
<<~HERE
|
28
|
+
Your potassium installation is not up to date.
|
29
|
+
The last available version is #{published_version} while the running version is #{installed_version}.
|
30
|
+
If you really need to run this outdated version of potassium, re-run this command with the `--no-version-check` flag.
|
31
|
+
HERE
|
49
32
|
end
|
50
33
|
|
51
34
|
def spin_text(message, &block)
|
@@ -0,0 +1,30 @@
|
|
1
|
+
module Potassium
|
2
|
+
class NodeVersionEnsurer
|
3
|
+
def ensure!
|
4
|
+
raise VersionError.new(install_message) if installed_node_version.nil?
|
5
|
+
raise VersionError.new(update_message) if Potassium::NODE_VERSION != installed_node_version
|
6
|
+
end
|
7
|
+
|
8
|
+
private
|
9
|
+
|
10
|
+
def installed_node_version
|
11
|
+
node_version = `node -v 2>&1`
|
12
|
+
return node_version.delete('^[0-9\.]').split('.').first if $?.success?
|
13
|
+
end
|
14
|
+
|
15
|
+
def install_message
|
16
|
+
<<~HERE
|
17
|
+
Node doesn't appear to be installed.
|
18
|
+
Please make sure you have node #{Potassium::NODE_VERSION} installed.
|
19
|
+
HERE
|
20
|
+
end
|
21
|
+
|
22
|
+
def update_message
|
23
|
+
<<~HERE
|
24
|
+
An unsupported version of node was found.
|
25
|
+
Please make sure you have node #{Potassium::NODE_VERSION} installed. Newer versions may work but potassium only supports that one.
|
26
|
+
If you really need to run potassium with a different version of node, re-run this command with the `--no-node-version-check` flag.
|
27
|
+
HERE
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
@@ -32,10 +32,10 @@ class Recipes::Admin < Rails::AppBuilder
|
|
32
32
|
private
|
33
33
|
|
34
34
|
def add_active_admin
|
35
|
-
gather_gem 'activeadmin', '~>
|
35
|
+
gather_gem 'activeadmin', '~> 2.6'
|
36
36
|
gather_gem 'activeadmin_addons'
|
37
|
-
gather_gem 'active_skin'
|
38
|
-
|
37
|
+
gather_gem 'active_skin', github: 'SoftwareBrothers/active_skin'
|
38
|
+
add_readme_section :internal_dependencies, :active_admin
|
39
39
|
after(:gem_install, wrap_in_action: :admin_install) do
|
40
40
|
generate "active_admin:install"
|
41
41
|
line = "ActiveAdmin.setup do |config|"
|
@@ -1,43 +1,115 @@
|
|
1
1
|
class Recipes::Api < Rails::AppBuilder
|
2
2
|
def ask
|
3
|
-
|
4
|
-
|
3
|
+
api_interfaces = {
|
4
|
+
rest: "REST (with Power API)",
|
5
|
+
graphql: "GraphQL (beta)",
|
6
|
+
none: "None, thanks"
|
7
|
+
}
|
8
|
+
api_interface = answer(:api) do
|
9
|
+
api_interfaces.keys[Ask.list("Which API interface are you using?", api_interfaces.values)]
|
10
|
+
end
|
11
|
+
set :api, api_interface.to_sym
|
5
12
|
end
|
6
13
|
|
7
14
|
def create
|
8
|
-
|
15
|
+
if get(:api) == :graphql
|
16
|
+
add_graphql
|
17
|
+
elsif get(:api) == :rest
|
18
|
+
add_power_api
|
19
|
+
end
|
9
20
|
end
|
10
21
|
|
11
22
|
def install
|
12
|
-
|
23
|
+
ask
|
24
|
+
create
|
13
25
|
end
|
14
26
|
|
15
27
|
def installed?
|
16
|
-
gem_exists?(/
|
28
|
+
gem_exists?(/power_api/) || gem_exists?(/graphql/)
|
17
29
|
end
|
18
30
|
|
19
31
|
private
|
20
32
|
|
21
|
-
def
|
22
|
-
gather_gem '
|
23
|
-
|
24
|
-
|
25
|
-
|
33
|
+
def add_power_api
|
34
|
+
gather_gem 'power_api'
|
35
|
+
|
36
|
+
gather_gems(:development, :test) do
|
37
|
+
gather_gem 'rswag-specs'
|
38
|
+
end
|
39
|
+
|
40
|
+
add_readme_section :internal_dependencies, :power_api
|
41
|
+
|
42
|
+
after(:gem_install) do
|
43
|
+
generate "power_api:install"
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
def add_graphql
|
48
|
+
gather_gem 'graphql'
|
49
|
+
if get(:authentication)
|
50
|
+
gather_gem 'jwt'
|
51
|
+
end
|
52
|
+
gather_gems(:development, :test) do
|
53
|
+
gather_gem 'graphql_playground-rails'
|
54
|
+
end
|
26
55
|
|
27
56
|
after(:gem_install) do
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
57
|
+
generate "graphql:install --skip_graphiql"
|
58
|
+
playground_route = <<~HEREDOC
|
59
|
+
\n
|
60
|
+
if Rails.env.development?
|
61
|
+
mount GraphqlPlayground::Rails::Engine, at: "/graphiql", graphql_path: "/graphql"
|
62
|
+
end
|
63
|
+
HEREDOC
|
64
|
+
inject_into_file(
|
65
|
+
'config/routes.rb',
|
66
|
+
playground_route,
|
67
|
+
after: 'post "/graphql", to: "graphql#execute"'
|
68
|
+
)
|
69
|
+
copy_file(
|
70
|
+
"../assets/config/graphql_playground.rb",
|
71
|
+
"config/initializers/graphql_playground.rb"
|
72
|
+
)
|
73
|
+
remove_dir 'app/graphql/types'
|
74
|
+
directory '../assets/app/graphql/types', 'app/graphql/types'
|
75
|
+
gsub_file 'app/graphql/mutations/base_mutation.rb', 'Types::Base', 'Types::Base::Base'
|
76
|
+
directory '../assets/app/graphql/queries', 'app/graphql/queries'
|
77
|
+
gsub_file 'app/graphql/mutations/base_mutation.rb', 'RelayClassic', ''
|
78
|
+
gsub_file(
|
79
|
+
'app/graphql/mutations/base_mutation.rb',
|
80
|
+
" input_object_class Types::Base::BaseInputObject\n", ''
|
81
|
+
)
|
82
|
+
|
83
|
+
if get(:authentication)
|
84
|
+
copy_file(
|
85
|
+
'../assets/app/graphql/graphql_controller.rb',
|
86
|
+
'app/controllers/graphql_controller.rb',
|
87
|
+
force: true
|
88
|
+
)
|
89
|
+
gsub_file(
|
90
|
+
'app/controllers/graphql_controller.rb',
|
91
|
+
'GqlSampleSchema',
|
92
|
+
"#{get(:titleized_app_name).delete(' ')}Schema"
|
93
|
+
)
|
94
|
+
copy_file(
|
95
|
+
'../assets/app/graphql/mutations/login_mutation.rb',
|
96
|
+
'app/graphql/mutations/login_mutation.rb'
|
97
|
+
)
|
98
|
+
inject_into_file(
|
99
|
+
'app/graphql/types/mutation_type.rb',
|
100
|
+
"\n field :login, mutation: Mutations::LoginMutation",
|
101
|
+
after: 'class MutationType < Types::Base::BaseObject'
|
102
|
+
)
|
103
|
+
append_to_file(".env.development", "HMAC_SECRET=\n")
|
36
104
|
end
|
37
105
|
|
38
|
-
|
39
|
-
|
40
|
-
|
106
|
+
inject_into_file(
|
107
|
+
'app/controllers/graphql_controller.rb',
|
108
|
+
"\n\n skip_before_action :verify_authenticity_token",
|
109
|
+
after: '# protect_from_forgery with: :null_session'
|
110
|
+
)
|
111
|
+
|
112
|
+
add_readme_section :internal_dependencies, :graphql
|
41
113
|
end
|
42
114
|
end
|
43
115
|
end
|
@@ -1,18 +1,22 @@
|
|
1
1
|
class Recipes::BackgroundProcessor < Rails::AppBuilder
|
2
2
|
def ask
|
3
|
-
response = if
|
3
|
+
response = if enabled_mailer?
|
4
|
+
info "Note: Emails should be sent on background jobs. We'll install sidekiq"
|
5
|
+
true
|
6
|
+
else
|
4
7
|
answer(:background_processor) do
|
5
8
|
Ask.confirm("Do you want to use Sidekiq for background job processing?")
|
6
9
|
end
|
7
|
-
else
|
8
|
-
info "Note: Emails should be sent on background jobs. We'll install sidekiq"
|
9
|
-
true
|
10
10
|
end
|
11
11
|
set(:background_processor, response)
|
12
12
|
end
|
13
13
|
|
14
14
|
def create
|
15
|
-
|
15
|
+
if get(:background_processor)
|
16
|
+
add_sidekiq
|
17
|
+
add_docker_compose_redis_config
|
18
|
+
set_redis_dot_env
|
19
|
+
end
|
16
20
|
end
|
17
21
|
|
18
22
|
def install
|
@@ -27,24 +31,25 @@ class Recipes::BackgroundProcessor < Rails::AppBuilder
|
|
27
31
|
end
|
28
32
|
|
29
33
|
def add_sidekiq
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
mount Sidekiq::Web => '/queue'
|
42
|
-
HERE
|
34
|
+
recipe = self
|
35
|
+
run_action(:install_sidekiq) do
|
36
|
+
gather_gem("sidekiq")
|
37
|
+
recipe.add_adapters("sidekiq")
|
38
|
+
add_readme_section :internal_dependencies, :sidekiq
|
39
|
+
recipe.edit_procfile("bundle exec sidekiq")
|
40
|
+
append_to_file(".env.development", "DB_POOL=25\n")
|
41
|
+
template("../assets/sidekiq.rb.erb", "config/initializers/sidekiq.rb", force: true)
|
42
|
+
copy_file("../assets/sidekiq.yml", "config/sidekiq.yml", force: true)
|
43
|
+
copy_file("../assets/redis.yml", "config/redis.yml", force: true)
|
44
|
+
recipe.mount_sidekiq_routes
|
43
45
|
end
|
44
46
|
end
|
45
47
|
|
46
48
|
def edit_procfile(cmd)
|
47
|
-
|
49
|
+
heroku = load_recipe(:heroku)
|
50
|
+
if selected?(:heroku) || heroku.installed?
|
51
|
+
gsub_file('Procfile', /^.*$/m) { |match| "#{match}worker: #{cmd}" }
|
52
|
+
end
|
48
53
|
end
|
49
54
|
|
50
55
|
def add_adapters(name)
|
@@ -52,4 +57,46 @@ class Recipes::BackgroundProcessor < Rails::AppBuilder
|
|
52
57
|
application "config.active_job.queue_adapter = :async", env: "development"
|
53
58
|
application "config.active_job.queue_adapter = :test", env: "test"
|
54
59
|
end
|
60
|
+
|
61
|
+
def mount_sidekiq_routes
|
62
|
+
insert_into_file "config/routes.rb", after: "Rails.application.routes.draw do\n" do
|
63
|
+
<<-HERE.gsub(/^ {6}/, '')
|
64
|
+
mount Sidekiq::Web => '/queue'
|
65
|
+
HERE
|
66
|
+
end
|
67
|
+
end
|
68
|
+
|
69
|
+
private
|
70
|
+
|
71
|
+
def add_docker_compose_redis_config
|
72
|
+
compose = DockerHelpers.new('docker-compose.yml')
|
73
|
+
|
74
|
+
service_definition =
|
75
|
+
<<~YAML
|
76
|
+
image: redis
|
77
|
+
ports:
|
78
|
+
- 6379
|
79
|
+
volumes:
|
80
|
+
- redis_data:/data
|
81
|
+
YAML
|
82
|
+
|
83
|
+
compose.add_service('redis', service_definition)
|
84
|
+
compose.add_volume('redis_data')
|
85
|
+
end
|
86
|
+
|
87
|
+
def set_redis_dot_env
|
88
|
+
append_to_file(
|
89
|
+
'.env.development',
|
90
|
+
<<~TEXT
|
91
|
+
REDIS_HOST=127.0.0.1
|
92
|
+
REDIS_PORT=$(make services-port SERVICE=redis PORT=6379)
|
93
|
+
REDIS_URL=redis://${REDIS_HOST}:${REDIS_PORT}/1
|
94
|
+
TEXT
|
95
|
+
)
|
96
|
+
end
|
97
|
+
|
98
|
+
def enabled_mailer?
|
99
|
+
mailer_answer = get(:email_service)
|
100
|
+
mailer_answer && ![:none, :None].include?(mailer_answer.to_sym)
|
101
|
+
end
|
55
102
|
end
|
data/lib/potassium/recipes/ci.rb
CHANGED
@@ -1,48 +1,20 @@
|
|
1
1
|
class Recipes::Ci < Rails::AppBuilder
|
2
2
|
def create
|
3
|
-
|
4
|
-
copy_file '../assets/.circleci/config.yml', '.circleci/config.yml'
|
5
|
-
|
6
|
-
template '../assets/bin/cibuild.erb', 'bin/cibuild'
|
7
|
-
run "chmod a+x bin/cibuild"
|
8
|
-
|
9
|
-
copy_file '../assets/docker-compose.ci.yml', 'docker-compose.ci.yml'
|
3
|
+
template '../assets/.circleci/config.yml.erb', '.circleci/config.yml'
|
10
4
|
|
11
5
|
gather_gems(:test) do
|
12
|
-
gather_gem 'rspec_junit_formatter', '0.
|
13
|
-
end
|
14
|
-
|
15
|
-
compose = DockerHelpers.new('docker-compose.ci.yml')
|
16
|
-
|
17
|
-
if selected?(:database, :mysql)
|
18
|
-
srv =
|
19
|
-
<<~YAML
|
20
|
-
image: mysql:#{Potassium::MYSQL_VERSION}
|
21
|
-
environment:
|
22
|
-
MYSQL_ALLOW_EMPTY_PASSWORD: 'true'
|
23
|
-
YAML
|
24
|
-
compose.add_service("mysql", srv)
|
25
|
-
compose.add_link('test', 'mysql')
|
26
|
-
compose.add_env('test', 'MYSQL_HOST', 'mysql')
|
27
|
-
compose.add_env('test', 'MYSQL_PORT', '3306')
|
28
|
-
|
29
|
-
elsif selected?(:database, :postgresql)
|
30
|
-
srv =
|
31
|
-
<<~YAML
|
32
|
-
image: "postgres:#{Potassium::POSTGRES_VERSION}"
|
33
|
-
environment:
|
34
|
-
POSTGRES_USER: postgres
|
35
|
-
POSTGRES_PASSWORD: ''
|
36
|
-
YAML
|
37
|
-
compose.add_service("postgresql", srv)
|
38
|
-
compose.add_link('test', 'postgresql')
|
39
|
-
compose.add_env('test', 'DB_USER', 'postgres')
|
40
|
-
compose.add_env('test', 'DB_HOST', 'postgresql')
|
41
|
-
compose.add_env('test', 'DB_PORT', '5432')
|
6
|
+
gather_gem 'rspec_junit_formatter', '~> 0.4'
|
42
7
|
end
|
43
8
|
|
44
9
|
add_readme_header :ci
|
45
|
-
|
46
10
|
application 'config.assets.js_compressor = :uglifier', env: 'test'
|
47
11
|
end
|
12
|
+
|
13
|
+
def install
|
14
|
+
create
|
15
|
+
end
|
16
|
+
|
17
|
+
def installed?
|
18
|
+
file_exist?('.circleci/config.yml')
|
19
|
+
end
|
48
20
|
end
|
@@ -0,0 +1,44 @@
|
|
1
|
+
class Recipes::DataMigrate < Rails::AppBuilder
|
2
|
+
def create
|
3
|
+
gather_gem('data_migrate')
|
4
|
+
annotate_task = 'lib/tasks/auto_annotate_models.rake'
|
5
|
+
insert_into_file annotate_task, annotate_config, after: "Annotate.load_tasks\n"
|
6
|
+
end
|
7
|
+
|
8
|
+
def install
|
9
|
+
create
|
10
|
+
end
|
11
|
+
|
12
|
+
def installed?
|
13
|
+
gem_exists?(/data_migrate/)
|
14
|
+
end
|
15
|
+
|
16
|
+
private
|
17
|
+
|
18
|
+
def annotate_config
|
19
|
+
<<-RUBY
|
20
|
+
|
21
|
+
data_migrate_tasks = %w(
|
22
|
+
db:migrate:with_data
|
23
|
+
db:migrate:up:with_data
|
24
|
+
db:migrate:down:with_data
|
25
|
+
db:migrate:redo:with_data
|
26
|
+
db:rollback:with_data
|
27
|
+
)
|
28
|
+
|
29
|
+
data_migrate_tasks.each do |task|
|
30
|
+
Rake::Task[task].enhance do
|
31
|
+
Rake::Task[Rake.application.top_level_tasks.last].enhance do
|
32
|
+
annotation_options_task = if Rake::Task.task_defined?('app:set_annotation_options')
|
33
|
+
'app:set_annotation_options'
|
34
|
+
else
|
35
|
+
'set_annotation_options'
|
36
|
+
end
|
37
|
+
Rake::Task[annotation_options_task].invoke
|
38
|
+
Annotate::Migration.update_annotations
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
42
|
+
RUBY
|
43
|
+
end
|
44
|
+
end
|