devloop 0.0.3 → 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +6 -2
- data/devloop.gemspec +2 -2
- data/lib/devloop/version.rb +1 -1
- metadata +8 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 91e4157cebedf7e64ae0993c9a71d455bbf9985e8a275eb88316693eb487d662
|
4
|
+
data.tar.gz: db2865a758fb9a3c5a00d93475bd38943c2f7e49c08368807e41dbb89505c8df
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f2ac525fddd4e4ca4e2dc1603393ba478ad99af47557824aacf6d4158b93b57c641f83c093d661fe923ef4cea75955cd581005b03f24bf195ed1b8df8f943a56
|
7
|
+
data.tar.gz: 2139a8f57bfd94e98d4a6ec179b8757d2d67f0d87fdff787f060a337be6a682973973377b8c3f4f3fa33beb7e761c87626b585ee6dc4562b1519de2bd5d31668
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Devloop
|
2
2
|
|
3
|
-
Devloop is an automated Rspec runner for Rails
|
3
|
+
Devloop is an automated Rspec runner for Rails apps inspired by [TLDR](https://github.com/tendersearls/tldr). The purpose of this tool is to provide continuous and instant feedback when working on the Rails app. It runs only specs from *lines* modified in the recent git commits. Even if you have a large `spec/user_spec.rb` file, you'll receive specs feedback in a fraction of a second on each file save.
|
4
4
|
|
5
5
|
## Installation
|
6
6
|
|
@@ -22,6 +22,10 @@ Now you can run:
|
|
22
22
|
bundle exec devloop
|
23
23
|
```
|
24
24
|
|
25
|
-
While this command it running it will automatically execute tests related to the
|
25
|
+
While this command it running it will automatically execute tests related to the recently modified lines of code from `specs/` folder.
|
26
|
+
|
27
|
+
Devloop will automatically detect if [Spring](https://github.com/rails/spring) is enabled for your Rails app. I've observed it reduces time needed to run specs by ~4x.
|
28
|
+
|
29
|
+
If currently there are no modified spec files, devloop will run tests based on changes in the most recent git commit.
|
26
30
|
|
27
31
|
This is in a very early stage of development so feedback is welcome.
|
data/devloop.gemspec
CHANGED
@@ -8,8 +8,8 @@ Gem::Specification.new do |s|
|
|
8
8
|
s.version = Devloop::VERSION
|
9
9
|
s.authors = ["pawurb"]
|
10
10
|
s.email = ["contact@pawelurbanek.com"]
|
11
|
-
s.summary =
|
12
|
-
s.description =
|
11
|
+
s.summary = "An automated test runner for Rails applications. Execute specs instantly based on a recent git diff output."
|
12
|
+
s.description = "Devloop is an automated Rspec runner for Rails app. The purpose of this tool is to provide continuous and instant feedback when working on Rails app. It runs only specs from lines modified in the recent git commits. Even if you have a large user_spec.rb file, you'll receive specs feedback in a fraction of a second on each file save."
|
13
13
|
s.homepage = "https://github.com/pawurb/devloop"
|
14
14
|
s.files = `git ls-files`.split("\n")
|
15
15
|
s.test_files = s.files.grep(%r{^(spec)/})
|
data/lib/devloop/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: devloop
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- pawurb
|
@@ -52,8 +52,11 @@ dependencies:
|
|
52
52
|
- - ">="
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '0'
|
55
|
-
description:
|
56
|
-
|
55
|
+
description: Devloop is an automated Rspec runner for Rails app. The purpose of this
|
56
|
+
tool is to provide continuous and instant feedback when working on Rails app. It
|
57
|
+
runs only specs from lines modified in the recent git commits. Even if you have
|
58
|
+
a large user_spec.rb file, you'll receive specs feedback in a fraction of a second
|
59
|
+
on each file save.
|
57
60
|
email:
|
58
61
|
- contact@pawelurbanek.com
|
59
62
|
executables:
|
@@ -98,7 +101,8 @@ requirements: []
|
|
98
101
|
rubygems_version: 3.5.4
|
99
102
|
signing_key:
|
100
103
|
specification_version: 4
|
101
|
-
summary:
|
104
|
+
summary: An automated test runner for Rails applications. Execute specs instantly
|
105
|
+
based on a recent git diff output.
|
102
106
|
test_files:
|
103
107
|
- spec/diff_parser_spec.rb
|
104
108
|
- spec/spec_helper.rb
|