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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 8b55cec134ee2e7bae28f294d61cf1054d28b315
4
- data.tar.gz: 07d923dd8824b41cedb29c5972adf1baf7bdffe5
2
+ SHA256:
3
+ metadata.gz: b3ee4a694d803c6759dba2988c5281e1994a1cb9857db577659576fc830b5874
4
+ data.tar.gz: 3ee4b2e32c5ce092a65ff2b9683fb77d7f8cbfde32f5b1fb62e4641768638d52
5
5
  SHA512:
6
- metadata.gz: 232141684b757559098bda0b58055797f3229fa78ba3c18d6e391d42818749031e104d3f2af5e3c6308f3594379917b9f27d7ae9432a582f9e343f2aafa9abc5
7
- data.tar.gz: 1b972c583f3024c949fdf8bdbe63038124fbd52bb563cb4fcc0e42a2c22a64858212721883be78e77e00c143206e650b9a652592b6de989a21eb8110c6ad7529
6
+ metadata.gz: 1707cd76cb626e1679ad1602be1ebb8e73e2ed77d548e2f2ffe81b53042517468c1a461ac73469501f22df00cdea5a6a28f8eb77571e06613b0a8d5c729843ca
7
+ data.tar.gz: a212448baa3256e4b23bf86cdec0eac8703e7d6704982bf890d5d9e5be9c284f0014ee2b231a3286758159442c52b21cd1206ee94c5440662b14b0391be71bfc
@@ -1,6 +1,10 @@
1
1
  ## CHANGELOG
2
2
 
3
+ ### 1.0.1
4
+
5
+ * Relax Ruby version requirement to allow Ruby 3.0
6
+
3
7
  ### 1.0.0
4
8
 
5
- * Inital release
9
+ * Initial release
6
10
 
@@ -1,4 +1,4 @@
1
- Copyright (c) 2015 Jan Lelis, mail@janlelis.de
1
+ Copyright (c) 2015 Jan Lelis, https://janlelis.com
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/README.md CHANGED
@@ -1,14 +1,13 @@
1
- # RSpec Clipboard Formatter [![[version]](https://badge.fury.io/rb/clipboard_formatter.svg)](http://badge.fury.io/rb/clipboard_formatter)
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 'rspec-clipboard'
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 <http://janlelis.com>. Released under the MIT license.
28
+ Copyright (C) 2015 Jan Lelis <https://janlelis.com>. Released under the MIT license.
30
29
 
@@ -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 = "mail@janlelis.de"
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 = "~> 2.0"
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
@@ -1,4 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  class ClipboardFormatter
2
- VERSION = "1.0.0".freeze
4
+ VERSION = "1.0.1"
3
5
  end
4
-
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.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: 2015-04-06 00:00:00.000000000 Z
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: mail@janlelis.de
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
- rubyforge_project:
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: