trailblazer-developer 0.0.21 → 0.0.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/ci.yml +17 -0
- data/CHANGES.md +4 -0
- data/Gemfile +3 -3
- data/lib/trailblazer/developer/version.rb +1 -1
- data/trailblazer-developer.gemspec +3 -3
- metadata +25 -13
- data/.travis.yml +0 -9
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a222410dc0b884dcbcdfe24f5b9a4a5832be21fb49dad5dd704aedb52c4e7343
|
|
4
|
+
data.tar.gz: b01faa368af768154576c6e0bdf2f2bbc881711379d28272360a2a24a767a4bc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0c2b7dd4169678f037105935e21b8bdd41ce97d2f79a225c0d3f5b404fcf0e417f38040185c19bc4943f0915f5412470ac870006b05f0b9a9797a0a1d740dd6c
|
|
7
|
+
data.tar.gz: 228a6f5e0408ac370c4f1d46f98672605834cf1e0a4813732fdcc6d9b60a4fcdea2c9b35bf4921dc6ad4061f4f5d3f03a39ea6ecc4d6258790163855869cff9d
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
name: CI
|
|
2
|
+
on: [push, pull_request]
|
|
3
|
+
jobs:
|
|
4
|
+
test:
|
|
5
|
+
strategy:
|
|
6
|
+
fail-fast: false
|
|
7
|
+
matrix:
|
|
8
|
+
# Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0'
|
|
9
|
+
ruby: [2.5, 2.6, 2.7, '3.0', head, jruby, jruby-head]
|
|
10
|
+
runs-on: ubuntu-latest
|
|
11
|
+
steps:
|
|
12
|
+
- uses: actions/checkout@v2
|
|
13
|
+
- uses: ruby/setup-ruby@v1
|
|
14
|
+
with:
|
|
15
|
+
ruby-version: ${{ matrix.ruby }}
|
|
16
|
+
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
|
17
|
+
- run: bundle exec rake
|
data/CHANGES.md
CHANGED
data/Gemfile
CHANGED
|
@@ -4,9 +4,9 @@ source "https://rubygems.org"
|
|
|
4
4
|
gemspec
|
|
5
5
|
|
|
6
6
|
# gem "trailblazer-activity", ">= 0.7.1"
|
|
7
|
-
gem "trailblazer-activity", path: "../trailblazer-activity"
|
|
8
|
-
gem "trailblazer-
|
|
9
|
-
gem "trailblazer-activity-dsl-linear",
|
|
7
|
+
# gem "trailblazer-activity", path: "../trailblazer-activity"
|
|
8
|
+
# gem "trailblazer-activity-dsl-linear", path: "../trailblazer-activity-dsl-linear"
|
|
9
|
+
# gem "trailblazer-activity-dsl-linear", github: "trailblazer/trailblazer-activity-dsl-linear"
|
|
10
10
|
|
|
11
11
|
gem "faraday"
|
|
12
12
|
gem "multi_json"
|
|
@@ -23,8 +23,8 @@ Gem::Specification.new do |spec|
|
|
|
23
23
|
spec.add_development_dependency "minitest-line"
|
|
24
24
|
spec.add_development_dependency "rake"
|
|
25
25
|
|
|
26
|
-
spec.add_dependency "trailblazer-activity", ">= 0.
|
|
27
|
-
spec.add_dependency "trailblazer-activity-dsl-linear"
|
|
28
|
-
spec.add_dependency "representable"
|
|
26
|
+
spec.add_dependency "trailblazer-activity", ">= 0.12.2", "< 1.0.0"
|
|
27
|
+
spec.add_dependency "trailblazer-activity-dsl-linear", ">= 0.4.1", "< 1.0.0"
|
|
28
|
+
spec.add_dependency "representable", ">= 3.1.1", "< 4.0.0"
|
|
29
29
|
spec.add_dependency "hirb"
|
|
30
30
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: trailblazer-developer
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.22
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nick Sutterer
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-07-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -72,7 +72,7 @@ dependencies:
|
|
|
72
72
|
requirements:
|
|
73
73
|
- - ">="
|
|
74
74
|
- !ruby/object:Gem::Version
|
|
75
|
-
version: 0.
|
|
75
|
+
version: 0.12.2
|
|
76
76
|
- - "<"
|
|
77
77
|
- !ruby/object:Gem::Version
|
|
78
78
|
version: 1.0.0
|
|
@@ -82,7 +82,7 @@ dependencies:
|
|
|
82
82
|
requirements:
|
|
83
83
|
- - ">="
|
|
84
84
|
- !ruby/object:Gem::Version
|
|
85
|
-
version: 0.
|
|
85
|
+
version: 0.12.2
|
|
86
86
|
- - "<"
|
|
87
87
|
- !ruby/object:Gem::Version
|
|
88
88
|
version: 1.0.0
|
|
@@ -92,28 +92,40 @@ dependencies:
|
|
|
92
92
|
requirements:
|
|
93
93
|
- - ">="
|
|
94
94
|
- !ruby/object:Gem::Version
|
|
95
|
-
version:
|
|
95
|
+
version: 0.4.1
|
|
96
|
+
- - "<"
|
|
97
|
+
- !ruby/object:Gem::Version
|
|
98
|
+
version: 1.0.0
|
|
96
99
|
type: :runtime
|
|
97
100
|
prerelease: false
|
|
98
101
|
version_requirements: !ruby/object:Gem::Requirement
|
|
99
102
|
requirements:
|
|
100
103
|
- - ">="
|
|
101
104
|
- !ruby/object:Gem::Version
|
|
102
|
-
version:
|
|
105
|
+
version: 0.4.1
|
|
106
|
+
- - "<"
|
|
107
|
+
- !ruby/object:Gem::Version
|
|
108
|
+
version: 1.0.0
|
|
103
109
|
- !ruby/object:Gem::Dependency
|
|
104
110
|
name: representable
|
|
105
111
|
requirement: !ruby/object:Gem::Requirement
|
|
106
112
|
requirements:
|
|
107
113
|
- - ">="
|
|
108
114
|
- !ruby/object:Gem::Version
|
|
109
|
-
version:
|
|
115
|
+
version: 3.1.1
|
|
116
|
+
- - "<"
|
|
117
|
+
- !ruby/object:Gem::Version
|
|
118
|
+
version: 4.0.0
|
|
110
119
|
type: :runtime
|
|
111
120
|
prerelease: false
|
|
112
121
|
version_requirements: !ruby/object:Gem::Requirement
|
|
113
122
|
requirements:
|
|
114
123
|
- - ">="
|
|
115
124
|
- !ruby/object:Gem::Version
|
|
116
|
-
version:
|
|
125
|
+
version: 3.1.1
|
|
126
|
+
- - "<"
|
|
127
|
+
- !ruby/object:Gem::Version
|
|
128
|
+
version: 4.0.0
|
|
117
129
|
- !ruby/object:Gem::Dependency
|
|
118
130
|
name: hirb
|
|
119
131
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -135,8 +147,8 @@ executables: []
|
|
|
135
147
|
extensions: []
|
|
136
148
|
extra_rdoc_files: []
|
|
137
149
|
files:
|
|
150
|
+
- ".github/workflows/ci.yml"
|
|
138
151
|
- ".gitignore"
|
|
139
|
-
- ".travis.yml"
|
|
140
152
|
- CHANGES.md
|
|
141
153
|
- Gemfile
|
|
142
154
|
- LICENSE
|
|
@@ -163,7 +175,7 @@ homepage: http://trailblazer.to
|
|
|
163
175
|
licenses:
|
|
164
176
|
- LGPL-3.0
|
|
165
177
|
metadata: {}
|
|
166
|
-
post_install_message:
|
|
178
|
+
post_install_message:
|
|
167
179
|
rdoc_options: []
|
|
168
180
|
require_paths:
|
|
169
181
|
- lib
|
|
@@ -178,8 +190,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
178
190
|
- !ruby/object:Gem::Version
|
|
179
191
|
version: '0'
|
|
180
192
|
requirements: []
|
|
181
|
-
rubygems_version: 3.
|
|
182
|
-
signing_key:
|
|
193
|
+
rubygems_version: 3.0.8
|
|
194
|
+
signing_key:
|
|
183
195
|
specification_version: 4
|
|
184
196
|
summary: Developer tools for Trailblazer.
|
|
185
197
|
test_files: []
|