guard-haskell 1.0.0 → 1.1.0
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 +8 -8
- data/README.md +6 -12
- data/lib/guard/haskell/templates/Guardfile +4 -0
- data/lib/guard/haskell/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
OTQ0ZGEwYjZhYWUzN2ZmMDAxZDU5YmEyNWZjYTMyMzMwMGNlZDI5Mw==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
ZWE4ZTUyODhjNTZmNzMxOTQyN2RlZmU4Y2U5Y2EyYTU0MzQ3MzY4Mg==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
MTA3YjUzNGQ2MmYxZjJjZWRhZjFiYTM4MDllMzAwOWRkMDNiMTZmMjY2MWQz
|
10
|
+
YmYyZjI2ODgwZGU1NjdlNGUwZDc5OWFhZWZjZGMyNTgxNTI3YmI1ZTBjYzUz
|
11
|
+
ZmQ2ZDAzYmU1ZmU1NjZkMDNkMWQwYmFlNmJhZDcwMTAyYWNjOGE=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
YjZkYTEyYzc5M2EzNGI5OGNlOTk0YzNhYTc0MWJlODk2NzU4MGQ2ZWExMDRl
|
14
|
+
YWZlZjNlNzI3M2JkODcwNjJkNTllM2Q5Njk2NWZhZTYzYjA3OTVhZTlmYTRi
|
15
|
+
NGVmODJmZDIxYWY5MjIyNTI3Y2M3MzQ2YzE4OGQxMGE1ZTFjOTA=
|
data/README.md
CHANGED
@@ -11,11 +11,7 @@ guard-haskell
|
|
11
11
|
|
12
12
|
```shell
|
13
13
|
% cabal install hspec
|
14
|
-
% gem install guard
|
15
|
-
% git clone https://github.com/supki/guard-haskell
|
16
|
-
% cd guard-haskell
|
17
|
-
% gem build guard-haskell.gemspec
|
18
|
-
% gem install guard-haskell-0.1.0.0.gem
|
14
|
+
% gem install guard-haskell
|
19
15
|
```
|
20
16
|
|
21
17
|
# Usage
|
@@ -40,9 +36,8 @@ Typical haskell project:
|
|
40
36
|
|
41
37
|
```ruby
|
42
38
|
guard :haskell do
|
43
|
-
watch(%r{
|
44
|
-
watch(%r{
|
45
|
-
watch(%r{src/.+.l?hs$})
|
39
|
+
watch(%r{test/.+Spec\.l?hs$})
|
40
|
+
watch(%r{src/.+\.l?hs$})
|
46
41
|
end
|
47
42
|
```
|
48
43
|
|
@@ -50,10 +45,9 @@ Customized haskell project:
|
|
50
45
|
|
51
46
|
```ruby
|
52
47
|
guard :haskell, all_on_pass: true, ghci_options: ["-DTEST"] do
|
53
|
-
watch(%r{
|
54
|
-
watch(%r{
|
55
|
-
watch(%r{
|
56
|
-
watch(%r{bin/.+.l?hs$})
|
48
|
+
watch(%r{test/.+Spec\.l?hs$})
|
49
|
+
watch(%r{lib/.+\.l?hs$})
|
50
|
+
watch(%r{bin/.+\.l?hs$})
|
57
51
|
end
|
58
52
|
```
|
59
53
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: guard-haskell
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matvey Aksenov
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-11-
|
11
|
+
date: 2013-11-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: guard
|
@@ -81,6 +81,7 @@ files:
|
|
81
81
|
- guard-haskell.gemspec
|
82
82
|
- lib/guard/haskell.rb
|
83
83
|
- lib/guard/haskell/repl.rb
|
84
|
+
- lib/guard/haskell/templates/Guardfile
|
84
85
|
- lib/guard/haskell/version.rb
|
85
86
|
- spec/haskell_spec.rb
|
86
87
|
- spec/spec_helper.rb
|