simplecov-material 0.2.0 → 0.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: 7e8cffeb606f27da998141ff41e141314653f22cd740d38f587355b191890b5b
4
- data.tar.gz: c073d8f83923399fbe6d3c136d27a494e24e5b7bd95d6544657e397b7af6a347
3
+ metadata.gz: 79859db9fad4027803f06409b62dd97fbd878a4a9b5b7af9ec084cc45806390e
4
+ data.tar.gz: 30db520c7ff0801c161b74e5013a66707b0226eab24b71d951bc780809cdad72
5
5
  SHA512:
6
- metadata.gz: 4cd1ff7b37a0b0d70a44009a1511e191ec25e0ad0e36d0b44c908c371f7b8b378d58ea724b51316f7eb739eb7a9fa616b8630aa4d40db5a90330b9e57b6cd417
7
- data.tar.gz: 6e7a3583fce63bbbe6dc1c3c4296ddd3057cb444319db46ae7f0ff093f3885527928b7aa90e7ae1a7346ced6e1890574df21a1a97abb86267f94657f1f746d76
6
+ metadata.gz: a70a09345ad6082fa2af1012aa2f4163ce2d7adff80278f587dcd95c2a63afe7093268bde65513b3367693028d02673d1df44d4f4865ceca9db156c2824d1566
7
+ data.tar.gz: ff5f9795dcef935dcd5ed230892961f1115e7052dd3fea333689514efc8455bd791d7caf36497c13710979e2efb6ddd5d057f13e95255ce0bfd9a0c1aff3d9c7
data/.circleci/config.yml CHANGED
@@ -114,26 +114,6 @@ build_steps:
114
114
  store_test_results:
115
115
  path: test/reports
116
116
 
117
- - &register_ruby_gems
118
- run:
119
- name: Setup Rubygems
120
- command: bash .circleci/setup-rubygems.sh
121
-
122
- - &publish_gem_major
123
- run:
124
- name: Publish Gem to RubyGems and Github
125
- command: ./bin/publish major
126
-
127
- - &publish_gem_minor
128
- run:
129
- name: Publish Gem to RubyGems and Github
130
- command: ./bin/publish minor
131
-
132
- - &publish_gem_patch
133
- run:
134
- name: Publish Gem to RubyGems and Github
135
- command: ./bin/publish patch
136
-
137
117
  jobs:
138
118
  build:
139
119
  <<: *node_version
@@ -192,33 +172,9 @@ jobs:
192
172
  - *store_coverage
193
173
  - *store_test_results
194
174
 
195
- publish_major:
196
- <<: *ruby-2-6
197
- steps:
198
- - checkout
199
- - *bundle_install
200
- - *register_ruby_gems
201
- - *publish_gem_major
202
-
203
- publish_minor:
204
- <<: *ruby-2-6
205
- steps:
206
- - checkout
207
- - *bundle_install
208
- - *register_ruby_gems
209
- - *publish_gem_minor
210
-
211
- publish_patch:
212
- <<: *ruby-2-6
213
- steps:
214
- - checkout
215
- - *bundle_install
216
- - *register_ruby_gems
217
- - *publish_gem_patch
218
-
219
175
  workflows:
220
176
  version: 2
221
- build-test-publish:
177
+ build-test:
222
178
  jobs:
223
179
  - build
224
180
  - test-ruby-2-6:
@@ -239,48 +195,3 @@ workflows:
239
195
  - test-ruby-2-5
240
196
  - test-ruby-2-4
241
197
  - test-ruby-2-3
242
- - major:
243
- type: approval
244
- requires:
245
- - test
246
- filters:
247
- branches:
248
- only:
249
- - master
250
- - minor:
251
- type: approval
252
- requires:
253
- - test
254
- filters:
255
- branches:
256
- only:
257
- - master
258
- - patch:
259
- type: approval
260
- requires:
261
- - test
262
- filters:
263
- branches:
264
- only:
265
- - master
266
- - publish_major:
267
- requires:
268
- - major
269
- filters:
270
- branches:
271
- only:
272
- - master
273
- - publish_minor:
274
- requires:
275
- - minor
276
- filters:
277
- branches:
278
- only:
279
- - master
280
- - publish_patch:
281
- requires:
282
- - patch
283
- filters:
284
- branches:
285
- only:
286
- - master
data/bin/publish CHANGED
@@ -63,12 +63,12 @@ FileUtils.chdir APP_ROOT do # rubocop:disable BlockLength
63
63
  f.write(JSON.pretty_generate(package))
64
64
  end
65
65
 
66
- # system! "git add lib/simplecov-material/version.rb"
67
- # system! "git add package.json"
68
- #
69
- # puts "== Committing updated files =="
70
- # system! "git commit -m 'Version bump to #{joined_version}'"
71
- # system! "git push"
66
+ system! "git add lib/simplecov-material/version.rb"
67
+ system! "git add package.json"
68
+
69
+ puts "== Committing updated files =="
70
+ system! "git commit -m 'Version bump to #{joined_version}'"
71
+ system! "git push"
72
72
 
73
73
  puts "== Building gem =="
74
74
  system! "yarn gem:build"
@@ -3,7 +3,7 @@
3
3
  module SimpleCov
4
4
  module Formatter
5
5
  class MaterialFormatter
6
- VERSION = "0.2.0"
6
+ VERSION = "0.3.0"
7
7
  end
8
8
  end
9
9
  end
data/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "simplecov-material",
3
- "version": "0.2.0",
3
+ "version": "0.3.0",
4
4
  "description": "HTML Material Design View for Simplecov formatter",
5
5
  "scripts": {
6
6
  "build": "webpack --config webpack.config.js",
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simplecov-material
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Christopher Pezza