Update name spaces for rake tasks to shorter 'ofn'.

This commit is contained in:
Jefferson Faseler
2019-01-30 14:25:04 -05:00
parent cf744bb663
commit d4d0489328
10 changed files with 12 additions and 12 deletions

View File

@@ -39,7 +39,7 @@ before_script:
script:
- 'if [ "$KARMA" = "true" ]; then bundle exec rake karma:run; else echo "Skipping karma run"; fi'
- 'if [ "$RSPEC_ENGINES" = "true" ]; then bundle exec rake openfoodnetwork:specs:engines:rspec; else echo "Skipping RSpec run in engines"; fi'
- 'if [ "$RSPEC_ENGINES" = "true" ]; then bundle exec rake ofn:specs:engines:rspec; else echo "Skipping RSpec run in engines"; fi'
- "bundle exec rake 'knapsack:rspec[--format progress --tag ~performance]'"
after_success:

View File

@@ -75,7 +75,7 @@ Then the main application tests can be run with:
The tests of all custom engines can be run with:
bundle exec rake openfoodnetwork:specs:engines:rspec
bundle exec rake ofn:specs:engines:rspec
Note: If your OS is not explicitly supported in the setup guides then not all tests may pass. However, you may still be able to develop. Get in touch with the [#dev][slack-dev] channel on Slack to troubleshoot issues and determine if they will preclude you from contributing to OFN.

View File

@@ -13,7 +13,7 @@ job_type :enqueue_job, "cd :path; :environment_variable=:environment bundle exe
every 1.hour do
rake 'openfoodnetwork:cache:check_products_integrity'
rake 'ofn:cache:check_products_integrity'
end
every 1.day, at: '12:05am' do
@@ -35,10 +35,10 @@ every 5.minutes do
end
every 1.day, at: '1:00am' do
rake 'openfoodnetwork:billing:update_account_invoices'
rake 'ofn:billing:update_account_invoices'
end
# On the 2nd of every month at 1:30am
every '30 1 2 * *' do
rake 'openfoodnetwork:billing:finalize_account_invoices'
rake 'ofn:billing:finalize_account_invoices'
end

View File

@@ -1,4 +1,4 @@
namespace :openfoodnetwork do
namespace :ofn do
namespace :billing do
desc 'Update enterprise user invoices'
task update_account_invoices: :environment do

View File

@@ -1,6 +1,6 @@
require 'open_food_network/products_cache_integrity_checker'
namespace :openfoodnetwork do
namespace :ofn do
namespace :cache do
desc 'check the integrity of the products cache'
task :check_products_integrity => :environment do

View File

@@ -1,4 +1,4 @@
namespace :openfoodnetwork do
namespace :ofn do
namespace :data do
desc "Adding relationships based on recent order cycles"
task :create_order_cycle_relationships => :environment do

View File

@@ -1,4 +1,4 @@
namespace :openfoodnetwork do
namespace :ofn do
namespace :dev do
desc 'load sample data'
task load_sample_data: :environment do

View File

@@ -1,6 +1,6 @@
require 'csv'
namespace :openfoodnetwork do
namespace :ofn do
namespace :dev do
desc 'export enterprises to CSV'
task :export_enterprises => :environment do

View File

@@ -1,4 +1,4 @@
namespace :openfoodnetwork do
namespace :ofn do
namespace :specs do
namespace :engines do
def detect_engine_paths

View File

@@ -52,7 +52,7 @@ printf '\n\n' | bundle exec rake db:setup db:test:prepare
printf '\n'
# Load some default data for your environment
bundle exec rake openfoodnetwork:dev:load_sample_data
bundle exec rake ofn:dev:load_sample_data
printf '\n'
printf "${YELLOW}WELCOME TO OPEN FOOD NETWORK!\n"