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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 61bffc2f76a33c09a38be866331797dc051b315219dacd75841b0dde8891cd70
4
- data.tar.gz: 226666f610244306d49dde45f95b2dd769690b95d91b4e462cd3acf09be50f83
3
+ metadata.gz: d99d0f90fe7834ef592e15c51aed9d93d79cd71081b9ac346d3135643972e4d5
4
+ data.tar.gz: b61ce900e7410266c6653cb027164d139a75eb175d166537fef020bd77cb9ebe
5
5
  SHA512:
6
- metadata.gz: 51c90e1f3abd060014c34e20635e2d23bd1323bbb69b049c90befee67d66659d4663293d911a5642b045f9a0e7834b60385fe212021f787e28339d8179d17c55
7
- data.tar.gz: 67db3cb4a1b798296f7855d8a6fdce2941bf4c7fd2bb7701f637c10dbd8875a20a7f2c5edd2aed2d185090292ec69533a187bea7094e4027a9aba1d49dfacc10
6
+ metadata.gz: 90ab66a3a26602d9b2cde2e7d34e4933afb805ab5192e3d6f929818a25e8dbf8119fac310fac6a91222fe0b1669b574d71a3a016176de190aae664f453cdd944
7
+ data.tar.gz: 107a6e7e3a0e0f2d55cd72a94f32a844e56007ad5ce93fe5ff3dacae1ef3c822ebecb80ff843899b7ac5f73bb488d91ccb20b61fe0c6259b2b7d84f861f19af4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 1.3.0 (Aug 30, 2018)
4
+
5
+ 1. Change `cri` version to `~> 2.0`. (Issue #37)
6
+
3
7
  ## 1.2.0 (Aug 08, 2018)
4
8
 
5
9
  1. Remove rubocop_plus from Gemfile. (Issue #23)
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 [Semver](semver.org) 2.0.0.
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 could turn that step off by passing `prepare_db: false`.
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 the bin/start_rspec define the best way to run rspec for newbies. You can disable specific steps by passing in command line options. Run `bin/start_rspec --help` to see a list of available options.
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
 
@@ -1,3 +1,3 @@
1
1
  module RspecStarter
2
- VERSION = "1.2.0".freeze
2
+ VERSION = "1.3.0".freeze
3
3
  end
@@ -25,5 +25,5 @@ Gem::Specification.new do |spec|
25
25
  spec.add_development_dependency "rspec", "~> 3.0"
26
26
 
27
27
  spec.add_dependency "colorize", "~> 0.8.1"
28
- spec.add_dependency "cri", "~> 2.12.0"
28
+ spec.add_dependency "cri", "~> 2.0"
29
29
  end
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.2.0
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-14 00:00:00.000000000 Z
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.12.0
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.12.0
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