guard-julia 0.0.2 → 0.0.3

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
  SHA1:
3
- metadata.gz: 5d32fb4ceb99977e6957adb6feed6ba1882a0856
4
- data.tar.gz: 98d1f33933642762204549af2d7d14ddf449d673
3
+ metadata.gz: a6cb179e20ea04c79bfd33a024dd0ec925607925
4
+ data.tar.gz: bcbc62374b9e9fb0658acc759dc983a55d9118ea
5
5
  SHA512:
6
- metadata.gz: 049edf296c1e7f9579ce6419221b27df5c642e71c5e350f5cd4eeb0d1de5f36b6e74d520937c5da3635a926fb2dfcfc8af1ea9f46fe5e3901e1055fdd474799f
7
- data.tar.gz: ecf9c418dde6a4c5ba4da08a8d15473ec8d2ec1cbe7462682a86412cd6528e95fff2f149ac26b0563f1dff8df55578477fcfd07cb1faafb1f9255e7678d6636e
6
+ metadata.gz: 688f42b1815b6e574dbcea434a540db6b1d02ef4fd9d630e36e57cdd6c14890e97f489a967b7f889af61093b76cbc5424f6b89aebac56778764772f979a7237c
7
+ data.tar.gz: 2fb8c9d620e6ac68c17bb67883cf82d2a0be4411b205103aa38c22a12906004fef96a829fe76d93881439dbdce5f5a035e976cd5805ee91df3e093168018daaa
data/CHANGELOG.yml CHANGED
@@ -1,6 +1,8 @@
1
1
  %YAML 1.2
2
2
  ---
3
3
  changes:
4
+ 0.0.3:
5
+ - Fix for Guardfile that causes infinite loop.
4
6
  0.0.2:
5
7
  - Corrections and clarifications to gemspec.
6
8
  0.0.1:
@@ -1,8 +1,8 @@
1
1
  guard :julia do
2
2
  # Run all tests when [PackageName].jl changes.
3
- watch(%r{^src/(.*/)?(.*?[A-Z].*)\.jl}) { |m| "test/runtests.jl" }
3
+ watch(%r{^src/(.*/)?(.*?[A-Z].*)\.jl$}) { |m| "test/runtests.jl" }
4
4
  # Run respective test when a source file changes.
5
- watch(%r{^src/(.*/)?([^A-Z]*)\.jl}) { |m| "test/#{m[1]}test_#{m[2]}.jl"}
5
+ watch(%r{^src/(.*/)?([^A-Z]*)\.jl$}) { |m| "test/#{m[1]}test_#{m[2]}.jl"}
6
6
  # Run test file when it changes.
7
- watch(%r{^test/(.*/)?(.*)\.jl}) { |m| "test/#{m[1]}#{m[2]}.jl" }
7
+ watch(%r{^test/(.*/)?(.*)\.jl$}) { |m| "test/#{m[1]}#{m[2]}.jl" }
8
8
  end
@@ -1,6 +1,6 @@
1
1
  module Guard
2
2
  # Julia guard plugin version.
3
3
  module JuliaVersion
4
- VERSION = '0.0.2'
4
+ VERSION = '0.0.3'
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: guard-julia
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Samuel Jenkins
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-07-14 00:00:00.000000000 Z
11
+ date: 2014-07-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: guard