guard-julia 0.0.1 → 0.0.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
  SHA1:
3
- metadata.gz: c4dae592b4db8e802357b8d630cf98269ba68bab
4
- data.tar.gz: c3aa6141bb137975202c9465b367535a0845a125
3
+ metadata.gz: 5d32fb4ceb99977e6957adb6feed6ba1882a0856
4
+ data.tar.gz: 98d1f33933642762204549af2d7d14ddf449d673
5
5
  SHA512:
6
- metadata.gz: 35bc8190b13378cd9764485dc029d113ab6a2a696685901a7c23176db5b88123d028dc16965cd853ade91268bc06df09ac068165eff81c467801bc7e1d2784e1
7
- data.tar.gz: a76e4ec317fa51647f6bd8b2ca935630fa68049c78a89baad68902968fad8e8260234465506d1cf67f4b7a2f1ef8cc7c98cf442b984fe39a91d33269a0f8e5df
6
+ metadata.gz: 049edf296c1e7f9579ce6419221b27df5c642e71c5e350f5cd4eeb0d1de5f36b6e74d520937c5da3635a926fb2dfcfc8af1ea9f46fe5e3901e1055fdd474799f
7
+ data.tar.gz: ecf9c418dde6a4c5ba4da08a8d15473ec8d2ec1cbe7462682a86412cd6528e95fff2f149ac26b0563f1dff8df55578477fcfd07cb1faafb1f9255e7678d6636e
data/CHANGELOG.yml CHANGED
@@ -1,5 +1,7 @@
1
1
  %YAML 1.2
2
2
  ---
3
3
  changes:
4
- v0.0.0:
5
- - TODO(svs14): Update before release.
4
+ 0.0.2:
5
+ - Corrections and clarifications to gemspec.
6
+ 0.0.1:
7
+ - Initial release.
data/README.md CHANGED
@@ -21,7 +21,7 @@ Ruby must be installed, then run:
21
21
  $ cd /your/julia/project/dir
22
22
  $ bundle init
23
23
 
24
- Add this line to your application's Gemfile:
24
+ Add this line to your project's newly created Gemfile:
25
25
 
26
26
  gem 'guard-julia'
27
27
 
data/Rakefile CHANGED
@@ -5,3 +5,5 @@ Rake::TestTask.new do |t|
5
5
  t.libs << 'spec'
6
6
  t.pattern = 'spec/**/*_spec.rb'
7
7
  end
8
+
9
+ task default: [:test]
data/guard-julia.gemspec CHANGED
@@ -9,8 +9,8 @@ Gem::Specification.new do |spec|
9
9
  spec.authors = ['Samuel Jenkins']
10
10
  spec.email = ['svs14.41svs@gmail.com']
11
11
  spec.summary = 'Guard plugin for Julia language'
12
- spec.description = 'Guard::Julia automatically runs tests when files change'
13
- spec.homepage = 'https://rubygems.org/gems/guard-julia'
12
+ spec.description = 'Guard::Julia automatically runs tests when Julia source files change'
13
+ spec.homepage = 'https://github.com/svs14/guard-julia'
14
14
  spec.license = 'MIT'
15
15
 
16
16
  spec.files = `git ls-files -z`.split("\x0")
@@ -1,6 +1,6 @@
1
1
  module Guard
2
2
  # Julia guard plugin version.
3
3
  module JuliaVersion
4
- VERSION = '0.0.1'
4
+ VERSION = '0.0.2'
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: guard-julia
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Samuel Jenkins
@@ -38,7 +38,7 @@ dependencies:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: '1.5'
41
- description: Guard::Julia automatically runs tests when files change
41
+ description: Guard::Julia automatically runs tests when Julia source files change
42
42
  email:
43
43
  - svs14.41svs@gmail.com
44
44
  executables: []
@@ -62,7 +62,7 @@ files:
62
62
  - spec/guard/julia/version_spec.rb
63
63
  - spec/guard/julia_spec.rb
64
64
  - spec/spec_helper.rb
65
- homepage: https://rubygems.org/gems/guard-julia
65
+ homepage: https://github.com/svs14/guard-julia
66
66
  licenses:
67
67
  - MIT
68
68
  metadata: {}