starting_blocks-elixir 1.0.1 → 1.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 +4 -4
- data/README.md +19 -3
- data/starting_blocks-elixir.gemspec +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1ec411d49c2dd7347ad572ee39429dcfe4f5e522
|
|
4
|
+
data.tar.gz: 0b588f6ba43d1c2c7759b2bb12f756523915c22a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bcaed66901a66ac0d581af1752c279c39369f3d05df4fa5c616dc15ab5b13f237688a25e9bb4abd33b379bdf326295ae4f5b81c73a4c863d979a1c7b09171100
|
|
7
|
+
data.tar.gz: 0804eecfe232f8dfb807d1bb6c383f624e07816c2e3075481df232b6163b84dc4af934cf2f3d329362cdc2b97dfb4925864a0f146f8b8c6acc71367e0fa8728b
|
data/README.md
CHANGED
|
@@ -1,6 +1,20 @@
|
|
|
1
1
|
# StartingBlocks::Elixir
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Use [starting blocks](http://www.github.com/darrencauthon/starting_blocks) to run your Elixir tests.
|
|
4
|
+
|
|
5
|
+
As you edit files in your Elixir app, starting_blocks will run the tests automatically. You can use this plugin in addition to the other starting_block plugins, like adding a red/green/yellow light with [blinky](http://www.github.com/darrencauthon/starting_blocks-blinky) or notifications with [Growl](http://www.github.com/darrencauthon/starting_blocks-growl).
|
|
6
|
+
|
|
7
|
+
## Usage
|
|
8
|
+
|
|
9
|
+
Include "--elixir" when running starting blocks.
|
|
10
|
+
|
|
11
|
+
```
|
|
12
|
+
sb --elixir
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
Now when you update a test file or you edit a file with a similar name to a test file, the tests will be run.
|
|
16
|
+
|
|
17
|
+
*Note: When I say "tests will be run," I mean starting_blocks will run "mix test" for you.*
|
|
4
18
|
|
|
5
19
|
## Installation
|
|
6
20
|
|
|
@@ -16,9 +30,11 @@ Or install it yourself as:
|
|
|
16
30
|
|
|
17
31
|
$ gem install starting_blocks-elixir
|
|
18
32
|
|
|
19
|
-
##
|
|
33
|
+
## TODO
|
|
34
|
+
|
|
35
|
+
- [] Update to only run the affected tests. Currently, all tests are run for any update.
|
|
36
|
+
- [] Look for alternatives to using only "mix test"
|
|
20
37
|
|
|
21
|
-
TODO: Write usage instructions here
|
|
22
38
|
|
|
23
39
|
## Contributing
|
|
24
40
|
|
|
@@ -4,12 +4,12 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |spec|
|
|
6
6
|
spec.name = "starting_blocks-elixir"
|
|
7
|
-
spec.version = "1.0.
|
|
7
|
+
spec.version = "1.0.2"
|
|
8
8
|
spec.authors = ["Darren Cauthon"]
|
|
9
9
|
spec.email = ["darren@cauthon.com"]
|
|
10
10
|
spec.description = %q{Run your elixir tests automatically.}
|
|
11
11
|
spec.summary = %q{elixir support for starting_blocks}
|
|
12
|
-
spec.homepage = ""
|
|
12
|
+
spec.homepage = "http://www.github.com/darrencauthon/starting_blocks-elixir"
|
|
13
13
|
spec.license = "MIT"
|
|
14
14
|
|
|
15
15
|
spec.files = `git ls-files`.split($/)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: starting_blocks-elixir
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Darren Cauthon
|
|
@@ -81,7 +81,7 @@ files:
|
|
|
81
81
|
- lib/elixir_contract.rb
|
|
82
82
|
- lib/starting_blocks-elixir.rb
|
|
83
83
|
- starting_blocks-elixir.gemspec
|
|
84
|
-
homepage:
|
|
84
|
+
homepage: http://www.github.com/darrencauthon/starting_blocks-elixir
|
|
85
85
|
licenses:
|
|
86
86
|
- MIT
|
|
87
87
|
metadata: {}
|