From 33756cab5d110aab0ad01e43b67a3dbe4a85e543 Mon Sep 17 00:00:00 2001 From: crimson-knight Date: Sun, 22 Oct 2023 20:13:05 -0400 Subject: [PATCH] Bumped version to 1.0 for the next release --- .github/workflows/main.yml | 44 -------------------------------------- README.md | 1 - lib/fruit_juice/version.rb | 2 +- 3 files changed, 1 insertion(+), 46 deletions(-) delete mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index 643eb72..0000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,44 +0,0 @@ -name: Ruby - -on: - push: - branches: - - main - - pull_request: - -jobs: - build: - runs-on: ubuntu-latest - name: Ruby ${{ matrix.ruby }} - strategy: - matrix: - ruby: - - '3.1.2' - - '2.7.7' - - services: - redis: - image: redis - options: >- - --health-cmd "redis-cli ping" - --health-interval 10s - --health-timeout 5s - --health-retries 2 - ports: - - 6379:6379 - - steps: - - uses: actions/checkout@v3 - - name: Set up Ruby - uses: ruby/setup-ruby@v1 - with: - ruby-version: ${{ matrix.ruby }} - bundler-cache: true - - name: Install the bundler - run: bundle - - - name: Run rspec - run: bundle exec rspec - env: - REDIS_URL: redis://localhost:6379/1 diff --git a/README.md b/README.md index 84f2362..cd9c03e 100644 --- a/README.md +++ b/README.md @@ -76,7 +76,6 @@ delayed_job = MyNewRubyJob.new(job_type: "MyNewJob") delayed_job.perform(this_will: "become a job option", "job option": "and be stored", "as": "json to parse in Mosquito") ``` - That's it! Triggering jobs from Ruby/Rails is pretty easy, but this makes it a nice pattern that's easy to follow. diff --git a/lib/fruit_juice/version.rb b/lib/fruit_juice/version.rb index c9e6d39..6e5f683 100644 --- a/lib/fruit_juice/version.rb +++ b/lib/fruit_juice/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module FruitJuice - VERSION = "0.6.0" + VERSION = "1.0.0" end