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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bd315f90c485333f7c0f4386b15c08920865b3e42906c8cc60bd081c7c466299
4
- data.tar.gz: 8561edca5696f4b1cccb46353717987b093b0820780e801be773196f39f4c0a6
3
+ metadata.gz: 91e4157cebedf7e64ae0993c9a71d455bbf9985e8a275eb88316693eb487d662
4
+ data.tar.gz: db2865a758fb9a3c5a00d93475bd38943c2f7e49c08368807e41dbb89505c8df
5
5
  SHA512:
6
- metadata.gz: c6ff478bdb188648ee16f025aada1d5381a373b9ab7095456fea0d2c66d14f53f617581017ba58504607c584b706ee74e68a7c61bfe2bf368e885c8ec27696b1
7
- data.tar.gz: 8bde33a6fa0a8b140441f4c5a839948e89d708163ffb30e755cd97f15f4a1252de8cedee8948e6f3cf2c5bf7d3eca6d989eb950918061747976961a6f428f2d8
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 app inspired by [TLDR](https://github.com/tendersearls/tldr). The purpose of this tool is to provide continous and instant feedback when working on Rails app. It run only specs from _lines_ modified in the recent git commits. It means that even if you have a large `spec/user_spec.rb` file, you'll receive specs feedback in fraction on a second on every file save.
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 recenly modified lines of code from `specs/` folder.
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 = %q{ Ruby test runner }
12
- s.description = %q{ This simple tool allows to run apps tests based on current git diff output. }
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)/})
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Devloop
4
- VERSION = "0.0.3"
4
+ VERSION = "0.0.4"
5
5
  end
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.3
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: " This simple tool allows to run apps tests based on current git diff
56
- output. "
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: Ruby test runner
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