guard-minitest_cr 0.1.1 → 0.1.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fa6dfee1352db323c763712dbaac39a3ad3309a3ba1c5d7c4dc9121dcbb768e1
4
- data.tar.gz: d67a8f7ab158d502349582213e7b228e14f0c4f30659dad2a4a51edd025a6a31
3
+ metadata.gz: 27f25483a1fea8b69db79aa94eeffa917ebc7af73a01af6a185c5ce7a029ba78
4
+ data.tar.gz: 90baa380364420314abfc3c4c30b977af30b42c2b90cb5101a63b28da8288fdd
5
5
  SHA512:
6
- metadata.gz: a8fba3836c6703469848ed530b079ad5485fab73ef6a4377a40f732db69673dd7ccd9b901ba956c33c9e5c17a9f49bfafc85408d668efbd9edd97073837e3cfb
7
- data.tar.gz: 930a68a05ebd7b491901f6b6467f83666c0f173397026c8282f4b8e160318087084d99f33b2f990903a39f223e90afdad7357d9598de13427bfc6d61c63a61c9
6
+ metadata.gz: 912177eeef28ac07dfb5304585ae071dcb0a1311dc371ba6f62d9a181ff3f379a8273040242673fabe37717341ef5fdd16500f009758a6a155b6de257877e1f9
7
+ data.tar.gz: 1b967de4f7e34635647c891d3f29d38353c770d3f2cb752fa3b7f99d974d222334192dc94a9d0b79c8893bcde8027cd3da5b134f76f1cec285ba78f949b8a57b
data/LICENSE CHANGED
@@ -1,6 +1,7 @@
1
1
  The MIT License (MIT)
2
2
 
3
3
  Copyright (c) 2013 Yann Lugrin, Rémy Coutable
4
+ Copyright (c) 2018 Felix Bünemann
4
5
 
5
6
  Permission is hereby granted, free of charge, to any person obtaining a copy of
6
7
  this software and associated documentation files (the "Software"), to deal in
@@ -2,8 +2,8 @@ require 'guard/compat/plugin'
2
2
 
3
3
  module Guard
4
4
  class MinitestCr < Plugin
5
- require 'guard/minitest_cr/runner'
6
- require 'guard/minitest_cr/version'
5
+ require 'guard/minitestcr/runner'
6
+ require 'guard/minitestcr/version'
7
7
 
8
8
  attr_accessor :runner
9
9
 
@@ -1,4 +1,4 @@
1
- require 'guard/minitest_cr/inspector'
1
+ require 'guard/minitestcr/inspector'
2
2
  require 'English'
3
3
 
4
4
  module Guard
@@ -1,5 +1,5 @@
1
1
  module Guard
2
2
  class MinitestCrVersion
3
- VERSION = '0.1.1'
3
+ VERSION = '0.1.2'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: guard-minitest_cr
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Bünemann
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2018-07-01 00:00:00.000000000 Z
13
+ date: 2018-07-02 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: guard
@@ -54,8 +54,8 @@ dependencies:
54
54
  - - ">="
55
55
  - !ruby/object:Gem::Version
56
56
  version: '0'
57
- description: Guard::Minitest automatically run your tests with Minitest.cr framework
58
- (much like autotest)
57
+ description: Guard::MinitestCr automatically runs your Minitest for Crystal (minitest.cr)
58
+ tests or specs.
59
59
  email:
60
60
  - felix.buenemann@gmail.com
61
61
  executables: []
@@ -66,10 +66,10 @@ files:
66
66
  - LICENSE
67
67
  - README.md
68
68
  - lib/guard/minitest_cr.rb
69
- - lib/guard/minitest_cr/inspector.rb
70
- - lib/guard/minitest_cr/runner.rb
71
- - lib/guard/minitest_cr/templates/Guardfile
72
- - lib/guard/minitest_cr/version.rb
69
+ - lib/guard/minitestcr/inspector.rb
70
+ - lib/guard/minitestcr/runner.rb
71
+ - lib/guard/minitestcr/templates/Guardfile
72
+ - lib/guard/minitestcr/version.rb
73
73
  homepage: https://github.com/felixbuenemann/guard-minitest_cr
74
74
  licenses:
75
75
  - MIT
@@ -93,5 +93,5 @@ rubyforge_project:
93
93
  rubygems_version: 2.7.7
94
94
  signing_key:
95
95
  specification_version: 4
96
- summary: Guard plugin for the Crystal Minitest.cr framework
96
+ summary: Guard plugin for the minitest.cr test framework
97
97
  test_files: []