diff --git a/.github/workflows/distrib-core-linters.yml b/.github/workflows/distrib-core-linters.yml index c43a06f..49b3a3f 100644 --- a/.github/workflows/distrib-core-linters.yml +++ b/.github/workflows/distrib-core-linters.yml @@ -2,9 +2,9 @@ name: CI on: push: - branches: [master] + branches: [main] pull_request: - branches: [master] + branches: [main] env: BUNDLE_FROZEN: true diff --git a/.github/workflows/distrib-core-specs.yml b/.github/workflows/distrib-core-specs.yml index 7439d0d..b082a6e 100644 --- a/.github/workflows/distrib-core-specs.yml +++ b/.github/workflows/distrib-core-specs.yml @@ -2,9 +2,9 @@ name: CI on: push: - branches: [master] + branches: [main] pull_request: - branches: [master] + branches: [main] permissions: contents: read diff --git a/.github/workflows/features-parser-specs.yml b/.github/workflows/features-parser-specs.yml index e39a6d0..0701481 100644 --- a/.github/workflows/features-parser-specs.yml +++ b/.github/workflows/features-parser-specs.yml @@ -2,9 +2,9 @@ name: CI on: push: - branches: [master] + branches: [main] pull_request: - branches: [master] + branches: [main] jobs: build: diff --git a/.github/workflows/rspec-distrib-linters.yml b/.github/workflows/rspec-distrib-linters.yml index 431374d..cf0d31c 100644 --- a/.github/workflows/rspec-distrib-linters.yml +++ b/.github/workflows/rspec-distrib-linters.yml @@ -2,9 +2,9 @@ name: CI on: push: - branches: [master] + branches: [main] pull_request: - branches: [master] + branches: [main] env: BUNDLE_ONLY: linters diff --git a/.github/workflows/rspec-distrib-tests.yml b/.github/workflows/rspec-distrib-tests.yml index 2e5e3a8..5129871 100644 --- a/.github/workflows/rspec-distrib-tests.yml +++ b/.github/workflows/rspec-distrib-tests.yml @@ -2,9 +2,9 @@ name: CI on: push: - branches: [master] + branches: [main] pull_request: - branches: [master] + branches: [main] jobs: tests: diff --git a/distrib-core/Gemfile b/distrib-core/Gemfile index b73df93..d7fb184 100644 --- a/distrib-core/Gemfile +++ b/distrib-core/Gemfile @@ -4,6 +4,7 @@ gemspec gem 'pry' gem 'pry-byebug' +gem 'rake' gem 'rspec', '~> 3.13' gem 'rubocop' gem 'rubocop-rspec' diff --git a/distrib-core/Gemfile.lock b/distrib-core/Gemfile.lock index 0b38d5c..892795f 100644 --- a/distrib-core/Gemfile.lock +++ b/distrib-core/Gemfile.lock @@ -26,6 +26,7 @@ GEM pry (>= 0.13, < 0.15) racc (1.8.0) rainbow (3.1.1) + rake (13.2.1) regexp_parser (2.9.2) rexml (3.2.8) strscan (>= 3.0.9) @@ -85,6 +86,7 @@ DEPENDENCIES distrib-core! pry pry-byebug + rake rspec (~> 3.13) rubocop rubocop-rspec diff --git a/distrib-core/Rakefile b/distrib-core/Rakefile new file mode 100644 index 0000000..7398a90 --- /dev/null +++ b/distrib-core/Rakefile @@ -0,0 +1,3 @@ +# frozen_string_literal: true + +require 'bundler/gem_tasks' diff --git a/rspec-distrib/Gemfile b/rspec-distrib/Gemfile index 3acdaf7..449c503 100644 --- a/rspec-distrib/Gemfile +++ b/rspec-distrib/Gemfile @@ -6,6 +6,7 @@ gem 'distrib-core', path: '../distrib-core' gem 'pry' gem 'pry-byebug' +gem 'rake' gem 'rspec', '~> 3.13.0' gem 'simplecov' diff --git a/rspec-distrib/Gemfile.lock b/rspec-distrib/Gemfile.lock index dac9c75..da9f4d5 100644 --- a/rspec-distrib/Gemfile.lock +++ b/rspec-distrib/Gemfile.lock @@ -32,6 +32,7 @@ GEM pry (>= 0.13, < 0.15) racc (1.8.0) rainbow (3.1.1) + rake (13.2.1) regexp_parser (2.9.2) rexml (3.2.8) strscan (>= 3.0.9) @@ -90,6 +91,7 @@ DEPENDENCIES distrib-core! pry pry-byebug + rake rspec (~> 3.13.0) rspec-distrib! rubocop diff --git a/rspec-distrib/Rakefile b/rspec-distrib/Rakefile new file mode 100644 index 0000000..7398a90 --- /dev/null +++ b/rspec-distrib/Rakefile @@ -0,0 +1,3 @@ +# frozen_string_literal: true + +require 'bundler/gem_tasks'