rspec_starter 1.7.1 → 1.7.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/CHANGELOG.md +4 -0
- data/lib/rspec_starter/version.rb +1 -1
- data/lib/templates/rails_engine_start_rspec +1 -1
- data/lib/templates/rails_start_rspec +1 -1
- data/lib/templates/start_rspec +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8937f395bb511a7b5493caff897279dcf34f66a5b352399fd6ad6f1bfd8f2075
|
4
|
+
data.tar.gz: dd793e301dd0a36fa5ce17dc637b8c96af3b4cd7601de9ed5cb7cb185720d710
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ca22f53b75552fed3d128ae7cf39c8240343729ea5a4dfb74437553aaee6f37599b36904ee42b0f7d781ea8b0d5f67b3d6714340a200e160a7d33c954844f2dd
|
7
|
+
data.tar.gz: e8cde31a63bf3a067b30cff2652f95489762451a50bba9fe9b2b03f3607fe73ff7451c40690d1bdb11c1e40898726332649dc314aa1b4ed0a2958ddf6808ddcc
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,10 @@
|
|
2
2
|
|
3
3
|
Issues marked as **(Internal)** mark internal development work. Issues are tracked at https://github.com/roberts1000/rspec_starter/issues.
|
4
4
|
|
5
|
+
## 1.7.2 (Dec 20, 2019)
|
6
|
+
|
7
|
+
1. [#84](../../issues/84) Removed unneeded `/` in templates.
|
8
|
+
|
5
9
|
## 1.7.1 (Dec 13, 2019)
|
6
10
|
|
7
11
|
1. [#80](../../issues/80) Fix call to missing `remove_dummy` method.
|
@@ -12,7 +12,7 @@ require "bundler/setup"
|
|
12
12
|
require "rspec_starter"
|
13
13
|
|
14
14
|
# The path to the application's root folder.
|
15
|
-
APP_ROOT = Pathname.new File.expand_path('
|
15
|
+
APP_ROOT = Pathname.new File.expand_path('..', __dir__)
|
16
16
|
|
17
17
|
# Create a custom task. For more information about custom tasks, see
|
18
18
|
# https://github.com/roberts1000/rspec_starter. Once defined, add
|
@@ -12,7 +12,7 @@ require "bundler/setup"
|
|
12
12
|
require "rspec_starter"
|
13
13
|
|
14
14
|
# The path to the application's root folder.
|
15
|
-
APP_ROOT = Pathname.new File.expand_path('
|
15
|
+
APP_ROOT = Pathname.new File.expand_path('..', __dir__)
|
16
16
|
|
17
17
|
# Create a custom task. For more information about custom tasks, see
|
18
18
|
# https://github.com/roberts1000/rspec_starter. Once defined, add
|
data/lib/templates/start_rspec
CHANGED
@@ -12,7 +12,7 @@ require "bundler/setup"
|
|
12
12
|
require "rspec_starter"
|
13
13
|
|
14
14
|
# The path to the application's root folder.
|
15
|
-
APP_ROOT = Pathname.new File.expand_path('
|
15
|
+
APP_ROOT = Pathname.new File.expand_path('..', __dir__)
|
16
16
|
|
17
17
|
# Create a custom task. For more information about custom tasks, see
|
18
18
|
# https://github.com/roberts1000/rspec_starter. Once defined, add
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rspec_starter
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.7.
|
4
|
+
version: 1.7.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Roberts
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-12-
|
11
|
+
date: 2019-12-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -195,7 +195,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
195
195
|
- !ruby/object:Gem::Version
|
196
196
|
version: '0'
|
197
197
|
requirements: []
|
198
|
-
rubygems_version: 3.
|
198
|
+
rubygems_version: 3.1.2
|
199
199
|
signing_key:
|
200
200
|
specification_version: 4
|
201
201
|
summary: A Ruby gem that helps run RSpec in a standard manner.
|