rspec_starter 1.2.0 → 1.3.0
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/README.md +4 -4
- data/lib/rspec_starter/version.rb +1 -1
- data/rspec_starter.gemspec +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d99d0f90fe7834ef592e15c51aed9d93d79cd71081b9ac346d3135643972e4d5
|
4
|
+
data.tar.gz: b61ce900e7410266c6653cb027164d139a75eb175d166537fef020bd77cb9ebe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 90ab66a3a26602d9b2cde2e7d34e4933afb805ab5192e3d6f929818a25e8dbf8119fac310fac6a91222fe0b1669b574d71a3a016176de190aae664f453cdd944
|
7
|
+
data.tar.gz: 107a6e7e3a0e0f2d55cd72a94f32a844e56007ad5ce93fe5ff3dacae1ef3c822ebecb80ff843899b7ac5f73bb488d91ccb20b61fe0c6259b2b7d84f861f19af4
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -19,7 +19,7 @@ rspec_starter can currently perform the following steps (these steps can be togg
|
|
19
19
|
|
20
20
|
## Versioning Strategy
|
21
21
|
|
22
|
-
This gem uses [
|
22
|
+
This gem uses [Semantic Versioning 2.0.0](https://semver.org/spec/v2.0.0.html).
|
23
23
|
|
24
24
|
## Supported Ruby Versions
|
25
25
|
|
@@ -63,13 +63,13 @@ which tells start_rspec, to tell rspec, to only run the feature tests. Run the
|
|
63
63
|
|
64
64
|
## Configuration
|
65
65
|
|
66
|
-
The entire idea behind start_rspec is to standardize the process of starting application. You can modify the `bin/start_rspec` file to do whatever you want. If you open that file, you'll see that it does one thing - it calls the following command in the context of the root folder, of your project:
|
66
|
+
The entire idea behind start_rspec is to standardize the process of starting RSpec for an application. You can modify the `bin/start_rspec` file to do whatever you want. If you open that file, you'll see that it does one thing - it calls the following command in the context of the root folder, of your project:
|
67
67
|
|
68
68
|
RspecStarter.start(prepare_db: true, remove_tmp: true, allow_xvfb: true)
|
69
69
|
|
70
|
-
The arguments passed to `start_rspec`, represent the defaults you consider important for achieving a clean RSpec run. If your particular project doesn't have a DB, or you don't need it prepared before each Rspec run, you
|
70
|
+
The arguments passed to `start_rspec`, represent the defaults you consider important for achieving a clean RSpec run. If your particular project doesn't have a DB, or you don't need it prepared before each Rspec run, you can turn that step off by passing `prepare_db: false`.
|
71
71
|
|
72
|
-
Be careful about the steps you enable/disable inside the script file. **The goal is to define steps that help people, with limited knowledge of the project, successfully run RSpec.** It's best to have
|
72
|
+
Be careful about the steps you enable/disable inside the script file. **The goal is to define steps that help people, with limited knowledge of the project, successfully run RSpec.** It's best to have `bin/start_rspec` define the best way to run RSpec for newbies, then disable specific steps by passing in command line options on a per-run basis. Run `bin/start_rspec --help` to see a list of available options.
|
73
73
|
|
74
74
|
## Contributing
|
75
75
|
|
data/rspec_starter.gemspec
CHANGED
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.
|
4
|
+
version: 1.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Roberts
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-08-
|
11
|
+
date: 2018-08-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -86,14 +86,14 @@ dependencies:
|
|
86
86
|
requirements:
|
87
87
|
- - "~>"
|
88
88
|
- !ruby/object:Gem::Version
|
89
|
-
version: 2.
|
89
|
+
version: '2.0'
|
90
90
|
type: :runtime
|
91
91
|
prerelease: false
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
93
93
|
requirements:
|
94
94
|
- - "~>"
|
95
95
|
- !ruby/object:Gem::Version
|
96
|
-
version: 2.
|
96
|
+
version: '2.0'
|
97
97
|
description: A Ruby gem that helps run RSpec in a standard manner.
|
98
98
|
email:
|
99
99
|
- roberts@corlewsolutions.com
|