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 +4 -4
- data/.circleci/config.yml +61 -0
- data/action_subscriber.gemspec +1 -1
- data/lib/action_subscriber/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7e335eb0bfa75bf17d2a27db0851b383dc9e624a621d3e18f1779bd50208a53e
|
4
|
+
data.tar.gz: 2d55858d1ebf03f5c42fcb04f7d4ad0e236b5859df9db510db334d9b73524ea3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
data/action_subscriber.gemspec
CHANGED
@@ -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', '
|
25
|
+
spec.add_dependency 'march_hare', '~> 4.4'
|
26
26
|
else
|
27
27
|
spec.add_dependency 'bunny', '>= 1.5.0'
|
28
28
|
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.
|
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-
|
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.
|
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
|