action_subscriber 5.2.4 → 5.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 75412f105d4ea0b12ab1edbd9fa3df950cf3e147e86fa21b242aff564fabc466
4
- data.tar.gz: 5207dc013f9158c653c33e686e0109e4998af3b438c637c2ceecae61d470a6f4
3
+ metadata.gz: 7e335eb0bfa75bf17d2a27db0851b383dc9e624a621d3e18f1779bd50208a53e
4
+ data.tar.gz: 2d55858d1ebf03f5c42fcb04f7d4ad0e236b5859df9db510db334d9b73524ea3
5
5
  SHA512:
6
- metadata.gz: abecac37fca82cc001dc8f227591a48ea8018006e69a1be3e15f3f9231f7387294ee7060b933a516c990a171b66550d74276f08e987e813d4bb828583645fa61
7
- data.tar.gz: af0e6d92683738dcc00f52c8edfd78fddd916b05f822eb94708573ab722f6b41bb554ece3fd4bd2a60b2f678183f574a1f3985dc96094c706d5e616534918c8f
6
+ metadata.gz: c819570924299aa0d39ebced23078bdc48133f125e76e59dd62d408c014919b380862c3ad22c2505f4a379fa66f973ae31c3ff803abf63d2976e75d44204cee8
7
+ data.tar.gz: 1ef6ba00566fa31c58c3eb5dc4fbfc21a30da2810156c0e9f87bf4cb829bc3e408643861fc3a3d8058cb6f3bd8343644e303f596ef71f09b4038e1c6e30eead6
@@ -0,0 +1,61 @@
1
+ # Inspired by: http://mikebian.co/running-tests-against-multiple-ruby-versions-using-circleci/
2
+
3
+ version: 2.1
4
+
5
+ orbs:
6
+ ruby: circleci/ruby@1.1
7
+
8
+
9
+ # If you want to work on `action_subscriber` you will need to have a rabbitmq instance running locally on port 5672 with a management plugin enabled on port 15672. Usually the easiest way to accomplish this is to use docker and run the command:
10
+
11
+ # ```
12
+
13
+ jobs:
14
+ test:
15
+ parallelism: 1
16
+ parameters:
17
+ ruby-image:
18
+ type: string
19
+ docker:
20
+ - image: << parameters.ruby-image >>
21
+ - image: rabbitmq:3.6.6-management
22
+
23
+ steps:
24
+ - checkout
25
+ - run:
26
+ name: install dockerize
27
+ command: wget https://github.com/jwilder/dockerize/releases/download/$DOCKERIZE_VERSION/dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz && sudo tar -C /usr/local/bin -xzvf dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz && rm dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz
28
+ environment:
29
+ DOCKERIZE_VERSION: v0.3.0
30
+ # - run:
31
+ # name: Wait for rabbitmq
32
+ # command: dockerize -wait tcp://localhost:5672 -timeout 1m
33
+ - run:
34
+ name: Install bundler
35
+ command: gem install bundler
36
+ - run:
37
+ name: Which bundler?
38
+ command: bundle -v
39
+ - run:
40
+ name: bundle install
41
+ command: bundle install
42
+ - run:
43
+ name: rspec
44
+ command: bundle exec rspec
45
+
46
+ # strangely, there seems to be very little documentation about exactly how martix builds work.
47
+ # By defining a param inside your job definition, Circle CI will automatically spawn a job for
48
+ # unique param value passed via `matrix`. Neat!
49
+ # https://circleci.com/blog/circleci-matrix-jobs/
50
+ workflows:
51
+ build_and_test:
52
+ jobs:
53
+ - test:
54
+ matrix:
55
+ parameters:
56
+ ruby-image:
57
+ - circleci/ruby:2.5
58
+ - circleci/ruby:2.6
59
+ - circleci/ruby:2.7
60
+ - circleci/jruby:9.2
61
+ - circleci/jruby:9.3
@@ -22,7 +22,7 @@ Gem::Specification.new do |spec|
22
22
 
23
23
  if ENV['PLATFORM'] == "java" || ::RUBY_PLATFORM == 'java'
24
24
  spec.platform = "java"
25
- spec.add_dependency 'march_hare', '>= 2.7.0'
25
+ spec.add_dependency 'march_hare', '~> 4.4'
26
26
  else
27
27
  spec.add_dependency 'bunny', '>= 1.5.0'
28
28
  end
@@ -1,3 +1,3 @@
1
1
  module ActionSubscriber
2
- VERSION = "5.2.4"
2
+ VERSION = "5.3.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: action_subscriber
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.2.4
4
+ version: 5.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Stien
@@ -12,7 +12,7 @@ authors:
12
12
  autorequire:
13
13
  bindir: bin
14
14
  cert_chain: []
15
- date: 2022-01-06 00:00:00.000000000 Z
15
+ date: 2022-02-22 00:00:00.000000000 Z
16
16
  dependencies:
17
17
  - !ruby/object:Gem::Dependency
18
18
  name: activesupport
@@ -209,6 +209,7 @@ executables:
209
209
  extensions: []
210
210
  extra_rdoc_files: []
211
211
  files:
212
+ - ".circleci/config.yml"
212
213
  - ".gitignore"
213
214
  - ".rspec"
214
215
  - ".travis.yml"
@@ -299,7 +300,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
299
300
  - !ruby/object:Gem::Version
300
301
  version: '0'
301
302
  requirements: []
302
- rubygems_version: 3.2.28
303
+ rubygems_version: 3.2.3
303
304
  signing_key:
304
305
  specification_version: 4
305
306
  summary: ActionSubscriber is a DSL that allows a rails app to consume messages from