rspec_starter 1.7.1 → 1.7.2

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: 1947eae49107431f8c61def126cb43b29b32629cff7a2bee05797122feedf40d
4
- data.tar.gz: fa7e4572d94a5772d7cc381e38e6e439fde32e76b53600a0f180ae0dac5921b9
3
+ metadata.gz: 8937f395bb511a7b5493caff897279dcf34f66a5b352399fd6ad6f1bfd8f2075
4
+ data.tar.gz: dd793e301dd0a36fa5ce17dc637b8c96af3b4cd7601de9ed5cb7cb185720d710
5
5
  SHA512:
6
- metadata.gz: e01eca047641fc5580e601ad8f90b814b60d3965a4b45dfb2422ae3df33d1216f1e45a7a80c9b593370de371086b74f0ff0d43494f478ed511c98e4ab3628e79
7
- data.tar.gz: 25a3ca57549ba4c59b196b4d463a8988277f243040fe6231032a460602b6a82d6c110b6dc7c95f72fdb0762a83aac13beb5111363c475ee2693f0b3b57ec8a39
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.
@@ -1,3 +1,3 @@
1
1
  module RspecStarter
2
- VERSION = "1.7.1".freeze
2
+ VERSION = "1.7.2".freeze
3
3
  end
@@ -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('../', __dir__)
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('../', __dir__)
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('../', __dir__)
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.1
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-13 00:00:00.000000000 Z
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.0.4
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.