clipboard_formatter 1.0.0 → 1.0.1
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 +5 -5
- data/CHANGELOG.md +5 -1
- data/MIT-LICENSE.txt +1 -1
- data/README.md +4 -5
- data/clipboard_formatter.gemspec +2 -2
- data/lib/clipboard_formatter/version.rb +3 -2
- metadata +5 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: b3ee4a694d803c6759dba2988c5281e1994a1cb9857db577659576fc830b5874
|
4
|
+
data.tar.gz: 3ee4b2e32c5ce092a65ff2b9683fb77d7f8cbfde32f5b1fb62e4641768638d52
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1707cd76cb626e1679ad1602be1ebb8e73e2ed77d548e2f2ffe81b53042517468c1a461ac73469501f22df00cdea5a6a28f8eb77571e06613b0a8d5c729843ca
|
7
|
+
data.tar.gz: a212448baa3256e4b23bf86cdec0eac8703e7d6704982bf890d5d9e5be9c284f0014ee2b231a3286758159442c52b21cd1206ee94c5440662b14b0391be71bfc
|
data/CHANGELOG.md
CHANGED
data/MIT-LICENSE.txt
CHANGED
data/README.md
CHANGED
@@ -1,14 +1,13 @@
|
|
1
|
-
# RSpec Clipboard Formatter [![[version]](https://badge.fury.io/rb/clipboard_formatter.svg)](
|
2
|
-
|
3
|
-
Copies the list of failed examples to your clipboard so that you can restart them easily.
|
1
|
+
# RSpec Clipboard Formatter [![[version]](https://badge.fury.io/rb/clipboard_formatter.svg)](https://badge.fury.io/rb/clipboard_formatter)
|
4
2
|
|
3
|
+
Copies the command to run all failed examples to your clipboard.
|
5
4
|
|
6
5
|
## Setup
|
7
6
|
|
8
7
|
Add the gem to your `Gemfile`:
|
9
8
|
|
10
9
|
```ruby
|
11
|
-
gem '
|
10
|
+
gem 'clipboard_formatter'
|
12
11
|
```
|
13
12
|
|
14
13
|
Add the formatter to your rspec options, e.g. in a `.rspec` file. You probably want to set it as an additional one, instead of the only one:
|
@@ -26,5 +25,5 @@ Run your RSpec suite, but let some tests fail. Then use your clipboard.
|
|
26
25
|
|
27
26
|
## MIT License
|
28
27
|
|
29
|
-
Copyright (C) 2015 Jan Lelis <
|
28
|
+
Copyright (C) 2015 Jan Lelis <https://janlelis.com>. Released under the MIT license.
|
30
29
|
|
data/clipboard_formatter.gemspec
CHANGED
@@ -8,7 +8,7 @@ Gem::Specification.new do |gem|
|
|
8
8
|
gem.summary = "A clipboard formatter for RSpec."
|
9
9
|
gem.description = "Copies the list of failed examples to your clipboard so that you can restart them easily."
|
10
10
|
gem.authors = ["Jan Lelis"]
|
11
|
-
gem.email = "
|
11
|
+
gem.email = "hi@ruby.consulting"
|
12
12
|
gem.homepage = "https://github.com/janlelis/clipboard_formatter"
|
13
13
|
gem.license = "MIT"
|
14
14
|
|
@@ -17,7 +17,7 @@ Gem::Specification.new do |gem|
|
|
17
17
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
18
18
|
gem.require_paths = ["lib"]
|
19
19
|
|
20
|
-
gem.required_ruby_version = "
|
20
|
+
gem.required_ruby_version = ">= 2.0"
|
21
21
|
gem.add_dependency 'rspec', '~> 3.0'
|
22
22
|
gem.add_dependency 'clipboard', '~> 1.0'
|
23
23
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: clipboard_formatter
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jan Lelis
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-12-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rspec
|
@@ -40,7 +40,7 @@ dependencies:
|
|
40
40
|
version: '1.0'
|
41
41
|
description: Copies the list of failed examples to your clipboard so that you can
|
42
42
|
restart them easily.
|
43
|
-
email:
|
43
|
+
email: hi@ruby.consulting
|
44
44
|
executables: []
|
45
45
|
extensions: []
|
46
46
|
extra_rdoc_files: []
|
@@ -63,7 +63,7 @@ require_paths:
|
|
63
63
|
- lib
|
64
64
|
required_ruby_version: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
|
-
- - "
|
66
|
+
- - ">="
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '2.0'
|
69
69
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
@@ -72,10 +72,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
72
72
|
- !ruby/object:Gem::Version
|
73
73
|
version: '0'
|
74
74
|
requirements: []
|
75
|
-
|
76
|
-
rubygems_version: 2.4.6
|
75
|
+
rubygems_version: 3.2.3
|
77
76
|
signing_key:
|
78
77
|
specification_version: 4
|
79
78
|
summary: A clipboard formatter for RSpec.
|
80
79
|
test_files: []
|
81
|
-
has_rdoc:
|