rspec-is_expected_block 3.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: e8b562f40a5132d16e69b7c5d85115f855196720
4
+ data.tar.gz: 35428c8f6b6dd8813f2b4603b9ab569f7ecca6d4
5
+ SHA512:
6
+ metadata.gz: f2f5650e4de71665e019ecd30f3a7ca46db2007514099e5f57f98e9329b8879020f5305cebeeb303ccca48a547ae5bfb8bb6b960c6f3e1176fc2ed340fb5a991
7
+ data.tar.gz: 378ee7e62a114e9f34333f70bb8e923351c73854450a1819c9210e9d0f27d62da0c34a5421713db405d691d648da05de2a5fea8ba0d76c0f6e477b2188641cf4
@@ -0,0 +1,12 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+
11
+ # rspec failure tracking
12
+ .rspec_status
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017 Christopher Aue
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,24 @@
1
+ # RSpec::IsExpectedBlock
2
+
3
+ Patches RSpec to redefine `is_expected` as `expect{ subject }`.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'rspec-is_expected_block'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install rspec-is_expected_block
20
+
21
+ ## License
22
+
23
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
24
+
@@ -0,0 +1,29 @@
1
+ require "rspec/is_expected_block/version"
2
+
3
+ require 'rspec/core'
4
+ module RSpec
5
+ module Core
6
+ module MemoizedHelpers
7
+ def is_expected
8
+ expect{ subject }
9
+ end
10
+ end
11
+ end
12
+ end
13
+
14
+ require 'rspec/expectations'
15
+ module RSpec
16
+ module Expectations
17
+ class BlockExpectationTarget
18
+ def to(matcher, message=nil, &block)
19
+ @target = @target.call unless supports_block_expectations?(matcher)
20
+ super
21
+ end
22
+
23
+ def not_to(matcher, message=nil, &block)
24
+ @target = @target.call unless supports_block_expectations?(matcher)
25
+ super
26
+ end
27
+ end
28
+ end
29
+ end
@@ -0,0 +1,5 @@
1
+ module RSpec
2
+ module IsExpectedBlock
3
+ VERSION = "3.0.0"
4
+ end
5
+ end
@@ -0,0 +1,21 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'rspec/is_expected_block/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "rspec-is_expected_block"
8
+ spec.version = RSpec::IsExpectedBlock::VERSION
9
+ spec.authors = ["Christopher Aue"]
10
+ spec.email = ["rubygems@christopheraue.net"]
11
+
12
+ spec.summary = %q{redefines is_expected as expect{ subject }}
13
+ spec.homepage = "https://github.com/christopheraue/ruby-rspec-is_expected_block"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.require_paths = ["lib"]
18
+
19
+ spec.add_dependency "rspec-core", "~> 3.0"
20
+ spec.add_dependency "rspec-expectations", "~> 3.0"
21
+ end
metadata ADDED
@@ -0,0 +1,79 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rspec-is_expected_block
3
+ version: !ruby/object:Gem::Version
4
+ version: 3.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Christopher Aue
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-06-06 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rspec-core
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '3.0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rspec-expectations
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '3.0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '3.0'
41
+ description:
42
+ email:
43
+ - rubygems@christopheraue.net
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - ".gitignore"
49
+ - Gemfile
50
+ - LICENSE.txt
51
+ - README.md
52
+ - lib/rspec/is_expected_block.rb
53
+ - lib/rspec/is_expected_block/version.rb
54
+ - rspec-is_expected_block.gemspec
55
+ homepage: https://github.com/christopheraue/ruby-rspec-is_expected_block
56
+ licenses:
57
+ - MIT
58
+ metadata: {}
59
+ post_install_message:
60
+ rdoc_options: []
61
+ require_paths:
62
+ - lib
63
+ required_ruby_version: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - ">="
66
+ - !ruby/object:Gem::Version
67
+ version: '0'
68
+ required_rubygems_version: !ruby/object:Gem::Requirement
69
+ requirements:
70
+ - - ">="
71
+ - !ruby/object:Gem::Version
72
+ version: '0'
73
+ requirements: []
74
+ rubyforge_project:
75
+ rubygems_version: 2.6.11
76
+ signing_key:
77
+ specification_version: 4
78
+ summary: redefines is_expected as expect{ subject }
79
+ test_files: []