rspec-daemon 0.1.0 → 0.1.1

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: ad0427bfd2ee9e38d83573209c7d4166e2679e8c4dcffbf4ca48f4312e4d3752
4
- data.tar.gz: 89a1eca7a74ad6b2242e5f5fe49a827e43b89ee785e6437a67476c4d6d97da98
3
+ metadata.gz: a3efd5ca1d1c2bcc0342da7e4192fee8f61f8485637cb26ffa73d95f1f558ca8
4
+ data.tar.gz: c009ccd587c484bfe7220a3a44e29246342f16537d6302d77479828ce6be8598
5
5
  SHA512:
6
- metadata.gz: 7863bb3e3b787ea85ebba9d5cd71b7960882504c7a0e538a1f1262bf1d5e991da725cbeb751d748dcda4496236feceb3929acc6748248cc970858e20cdadaee7
7
- data.tar.gz: 1a596832de5d47be88d9f151a87532ab721241ed87d7641474477e9fca7ea852ccb6f1dd6467ee0c152cf4b5acdec2defdc7d5397bff96f20c5857215fe9b4da
6
+ metadata.gz: 754281bbd83d5202af0c1afa1e8f646dc8f2c8625c0f5262cf71a645a104018b8f45bce7e228271631c9c1dc65f1c6ecfcf33604456d1699cce57983977608ef
7
+ data.tar.gz: a7888c58b3b4b43244a646d6274b594d5539c0978159e24192de85daf0393e31e09a95f9c1acb6d8e6829f85eb7cbaa7c5a53eeedd711dd6cb59f77d6a7fdb4c
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Rspec::Daemon
1
+ # RSpec::Daemon
2
2
 
3
3
  rspec-daemon is a gem to run specs at high speed.
4
4
 
@@ -8,14 +8,14 @@ https://gist.github.com/cumet04/71d7d76310f7cb436c68b57a7c99aae3
8
8
  ## Installation
9
9
 
10
10
  ```
11
- require 'rspec-daemon', require: false
11
+ gem install rspec-daemon
12
12
  ```
13
13
 
14
14
  ## Usage
15
15
 
16
-
17
16
  ```
18
- $ bundle ex rspec-daemon
17
+ $ cd YOUR_PROJECT
18
+ $ rspec-daemon
19
19
  ```
20
20
 
21
21
  ```
@@ -38,4 +38,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
38
38
 
39
39
  ## Code of Conduct
40
40
 
41
- Everyone interacting in the Rspec::Daemon project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/asonas/rspec-daemon/blob/master/CODE_OF_CONDUCT.md).
41
+ Everyone interacting in the RSpec::Daemon project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/asonas/rspec-daemon/blob/master/CODE_OF_CONDUCT.md).
data/example/user_spec.rb CHANGED
@@ -10,7 +10,7 @@ class User
10
10
  end
11
11
  end
12
12
 
13
- Rspec.describe "User" do
13
+ RSpec.describe "User" do
14
14
  describe "#age" do
15
15
  before do
16
16
  @user = User.new(Time.new(1988, 11, 7))
data/exe/rspec-daemon CHANGED
@@ -1,4 +1,4 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
3
  require 'rspec/daemon/cli'
4
- Rspec::Daemon::Cli.start
4
+ RSpec::Daemon::Cli.start
@@ -2,6 +2,6 @@
2
2
 
3
3
  module RSpec
4
4
  class Daemon
5
- VERSION = "0.1.0"
5
+ VERSION = "0.1.1"
6
6
  end
7
7
  end
data/lib/rspec/daemon.rb CHANGED
@@ -79,7 +79,7 @@ module RSpec
79
79
  end
80
80
 
81
81
  def cached_config
82
- @cached_config ||= Rspec::Daemon::Configuration.new
82
+ @cached_config ||= RSpec::Daemon::Configuration.new
83
83
  end
84
84
 
85
85
  RSpec::Core::BacktraceFormatter.class_eval do
data/sig/rspec/daemon.rbs CHANGED
@@ -1,4 +1,4 @@
1
- module Rspec
1
+ module RSpec
2
2
  module Daemon
3
3
  VERSION: String
4
4
  # See the writing guide of rbs: https://github.com/ruby/rbs#guides
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rspec-daemon
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yuya Fujiwara