bbq-rspec 0.3.0 → 0.4.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: 4e7617712f73b5b7b340497577d207d4580d0d4ef5055ab3ff7a33f1f1b1f1e7
4
- data.tar.gz: a2098d9c920993d90bf8a87be822baceedcc2f783182b6419fc9e847e8d61280
3
+ metadata.gz: 56d68e9279d5d332e58536368b4e87d7fe491731b47a751b80271e4ae992364e
4
+ data.tar.gz: 5bc6af0cdbd1046c29462a7a37ea2d40b54163d1b693458ce8412104a02fc711
5
5
  SHA512:
6
- metadata.gz: 1b6edb1a6122f0b154caa09ad0e0a7a5264f6b4853c65488e126c0490e605d84f55e9586d1c2715b63fcd58e5d1648f178145de2414437a4a80f10e54aeec75a
7
- data.tar.gz: 27ebed9c4328a8c8b94ecce57e26ee56cffad37dea58728c7d7e7981971805212cbc76ab6b0586905a501a95de5bd8ef2fde00e198ddb1878dae1ea06858ac20
6
+ metadata.gz: bceb0546e2e402ab5bdcff7f321195562c72f52544b0b475c44fb41df6e29f96847410e68bfe69375fef983cf704cb7b73881c2e2653c9ad7e3032795548a4d9
7
+ data.tar.gz: a1098a53f8c207cb14b411a04e0de516d32bf8c0eb2ab44945c3dd3132203f002996b4aabc30e2bf9fa361239b57c822e4d08fac9986499cafc785098b9a812c
@@ -1,5 +1,6 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
3
  gemspec
4
+
4
5
  gem 'rspec', '~> 3.0'
5
- gem 'bbq-core', github: 'drugpl/bbq-core'
6
+ gem 'bbq-core', path: '../bbq-core'
@@ -0,0 +1,11 @@
1
+ GEM_VERSION = $(shell cat ../BBQ_VERSION)
2
+ GEM_NAME = bbq-rspec
3
+ REQUIRE = $(GEM_NAME)
4
+
5
+ include ../support/make/install.mk
6
+ include ../support/make/gem.mk
7
+ include ../support/make/help.mk
8
+
9
+ test: ## Run unit tests
10
+ @echo "Running unit tests"
11
+ @bundle exec rspec
@@ -18,9 +18,8 @@ Gem::Specification.new do |spec|
18
18
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
19
  spec.require_paths = ["lib"]
20
20
 
21
- spec.add_dependency "bbq-core", ">= 0.0"
21
+ spec.add_dependency "bbq-core", "= 0.4.0"
22
22
 
23
- spec.add_development_dependency "bundler", "~> 1.7"
24
- spec.add_development_dependency "rake", "~> 10.0"
25
- spec.add_development_dependency "rspec", ">= 2.0"
23
+ spec.add_development_dependency "rake"
24
+ spec.add_development_dependency "rspec", ">= 3.0"
26
25
  end
@@ -1,5 +1,5 @@
1
1
  module Bbq
2
2
  module RSpec
3
- VERSION = "0.3.0"
3
+ VERSION = "0.4.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,71 +1,57 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bbq-rspec
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - DRUG - Dolnośląska Grupa Użytkowników Ruby
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-03-09 00:00:00.000000000 Z
11
+ date: 2020-03-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bbq-core
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ">="
17
+ - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: '0.0'
19
+ version: 0.4.0
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ">="
24
+ - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: '0.0'
27
- - !ruby/object:Gem::Dependency
28
- name: bundler
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - "~>"
32
- - !ruby/object:Gem::Version
33
- version: '1.7'
34
- type: :development
35
- prerelease: false
36
- version_requirements: !ruby/object:Gem::Requirement
37
- requirements:
38
- - - "~>"
39
- - !ruby/object:Gem::Version
40
- version: '1.7'
26
+ version: 0.4.0
41
27
  - !ruby/object:Gem::Dependency
42
28
  name: rake
43
29
  requirement: !ruby/object:Gem::Requirement
44
30
  requirements:
45
- - - "~>"
31
+ - - ">="
46
32
  - !ruby/object:Gem::Version
47
- version: '10.0'
33
+ version: '0'
48
34
  type: :development
49
35
  prerelease: false
50
36
  version_requirements: !ruby/object:Gem::Requirement
51
37
  requirements:
52
- - - "~>"
38
+ - - ">="
53
39
  - !ruby/object:Gem::Version
54
- version: '10.0'
40
+ version: '0'
55
41
  - !ruby/object:Gem::Dependency
56
42
  name: rspec
57
43
  requirement: !ruby/object:Gem::Requirement
58
44
  requirements:
59
45
  - - ">="
60
46
  - !ruby/object:Gem::Version
61
- version: '2.0'
47
+ version: '3.0'
62
48
  type: :development
63
49
  prerelease: false
64
50
  version_requirements: !ruby/object:Gem::Requirement
65
51
  requirements:
66
52
  - - ">="
67
53
  - !ruby/object:Gem::Version
68
- version: '2.0'
54
+ version: '3.0'
69
55
  description: RSpec integration for bbq.
70
56
  email:
71
57
  - bbq@drug.org.pl
@@ -75,12 +61,9 @@ extra_rdoc_files: []
75
61
  files:
76
62
  - ".gitignore"
77
63
  - ".rspec"
78
- - ".travis.yml"
79
64
  - Contributing.md
80
- - Gemfile.rspec2
81
- - Gemfile.rspec3
82
- - LICENSE.txt
83
- - MIT-LICENSE
65
+ - Gemfile
66
+ - Makefile
84
67
  - README.md
85
68
  - Rakefile
86
69
  - bbq-rspec.gemspec
@@ -1,9 +0,0 @@
1
- rvm:
2
- - 1.9.3
3
- - 2.0.0
4
- - 2.1.4
5
- - rbx-19mode
6
-
7
- gemfile:
8
- - Gemfile.rspec2
9
- - Gemfile.rspec3
@@ -1,5 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- gemspec
4
- gem 'rspec', '~> 2.0'
5
- gem 'bbq-core', github: 'drugpl/bbq-core'
@@ -1,22 +0,0 @@
1
- Copyright (c) 2014 Jakub Kosinski
2
-
3
- MIT License
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining
6
- a copy of this software and associated documentation files (the
7
- "Software"), to deal in the Software without restriction, including
8
- without limitation the rights to use, copy, modify, merge, publish,
9
- distribute, sublicense, and/or sell copies of the Software, and to
10
- permit persons to whom the Software is furnished to do so, subject to
11
- the following conditions:
12
-
13
- The above copyright notice and this permission notice shall be
14
- included in all copies or substantial portions of the Software.
15
-
16
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -1,20 +0,0 @@
1
- Copyright 2011 DRUG, Dolnośląska Grupa Użytkowników Ruby
2
-
3
- Permission is hereby granted, free of charge, to any person obtaining
4
- a copy of this software and associated documentation files (the
5
- "Software"), to deal in the Software without restriction, including
6
- without limitation the rights to use, copy, modify, merge, publish,
7
- distribute, sublicense, and/or sell copies of the Software, and to
8
- permit persons to whom the Software is furnished to do so, subject to
9
- the following conditions:
10
-
11
- The above copyright notice and this permission notice shall be
12
- included in all copies or substantial portions of the Software.
13
-
14
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.