banken-matchers 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: ab7b5ac381df0185252eaf5d4a0921812915d3b4b4373d3f8164affb266b2189
4
+ data.tar.gz: b2979af162c303ede5ecb4847129a77ee4bb979c85b5ef348b22bb7642a2d1ca
5
+ SHA512:
6
+ metadata.gz: 8592ff3e33aa6ebd0b5df6940d03b20315d802bcdc085fa7045ea32044c91ec3d680af7f401821c6878c058a37d18fd36b4a9c7e52d2811157fb911f239d30e6
7
+ data.tar.gz: 3f01c53b709a5fac517326b4d8339ec5122f94ecde06c04c58735576ec390d0534f189fed1d25717b4d6c8e0f3eba1d86bc167757b6980ccce546cad77357378
@@ -0,0 +1,11 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ # rspec failure tracking
11
+ .rspec_status
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
@@ -0,0 +1,6 @@
1
+ ---
2
+ language: ruby
3
+ cache: bundler
4
+ rvm:
5
+ - 2.6.5
6
+ before_install: gem install bundler -v 2.1.4
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in banken-matchers.gemspec
4
+ gemspec
@@ -0,0 +1,34 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ banken-matchers (0.1.0)
5
+ rspec (~> 3.0)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ diff-lcs (1.4.4)
11
+ rake (12.3.3)
12
+ rspec (3.9.0)
13
+ rspec-core (~> 3.9.0)
14
+ rspec-expectations (~> 3.9.0)
15
+ rspec-mocks (~> 3.9.0)
16
+ rspec-core (3.9.2)
17
+ rspec-support (~> 3.9.3)
18
+ rspec-expectations (3.9.2)
19
+ diff-lcs (>= 1.2.0, < 2.0)
20
+ rspec-support (~> 3.9.0)
21
+ rspec-mocks (3.9.1)
22
+ diff-lcs (>= 1.2.0, < 2.0)
23
+ rspec-support (~> 3.9.0)
24
+ rspec-support (3.9.3)
25
+
26
+ PLATFORMS
27
+ ruby
28
+
29
+ DEPENDENCIES
30
+ banken-matchers!
31
+ rake (~> 12.3)
32
+
33
+ BUNDLED WITH
34
+ 2.1.4
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2020 ichi
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,72 @@
1
+ # Banken::Matchers
2
+
3
+ Inspired by [pundit-matchers](https://github.com/chrisalley/pundit-matchers) gem.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'banken-matchers'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle install
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install banken-matchers
20
+
21
+ ## Configuration
22
+
23
+ ```ruby
24
+ Banken::Matchers.configure do |config|
25
+ config.user_alias = :account
26
+ end
27
+ ```
28
+
29
+ ## Usage
30
+
31
+ ### Mathers
32
+
33
+ - `permit_action(:action_name)`
34
+ - `forbid_action(:action_name)`
35
+
36
+ ## Example
37
+
38
+ ```ruby
39
+ RSpec.describe ArticleLoyalty, type: :loyalty do
40
+ subject { described_class.new(user, article) }
41
+
42
+ let(:article) { Artcle.create }
43
+
44
+ context 'user has normal role' do
45
+ let(:user) { User.create(role: :normal) }
46
+
47
+ it{ is_expected.to permit_action(:index) }
48
+ it{ is_expected.to forbid_action(:show) }
49
+ end
50
+
51
+ context 'user has admin role' do
52
+ let(:user) { User.create(role: :admin) }
53
+
54
+ it{ is_expected.to permit_action(:index) }
55
+ it{ is_expected.to permit_action(:show) }
56
+ end
57
+ end
58
+ ```
59
+
60
+ ## Development
61
+
62
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
63
+
64
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
65
+
66
+ ## Contributing
67
+
68
+ Bug reports and pull requests are welcome on GitHub at https://github.com/ichi/banken-matchers.
69
+
70
+ ## License
71
+
72
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
@@ -0,0 +1,29 @@
1
+ require_relative 'lib/banken/matchers/version'
2
+
3
+ Gem::Specification.new do |spec|
4
+ spec.name = "banken-matchers"
5
+ spec.version = Banken::Matchers::VERSION
6
+ spec.authors = ["ichi"]
7
+ spec.email = ["ichi.ttht.1@gmail.com"]
8
+
9
+ spec.summary = %q{Rspec matchers for banken loyalties.}
10
+ spec.description = %q{Rspec matchers for banken loyalties.}
11
+ spec.homepage = "https://github.com/ichi/banken-matchers"
12
+ spec.license = "MIT"
13
+ spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
14
+
15
+ spec.metadata["homepage_uri"] = spec.homepage
16
+ spec.metadata["source_code_uri"] = spec.homepage
17
+
18
+ # Specify which files should be added to the gem when it is released.
19
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
20
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
21
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
22
+ end
23
+ spec.bindir = "exe"
24
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
25
+ spec.require_paths = ["lib"]
26
+
27
+ spec.add_development_dependency "rake", "~> 12.3"
28
+ spec.add_dependency 'rspec', '~> 3.0'
29
+ end
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "banken/matchers"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,45 @@
1
+ module Banken
2
+ module Matchers
3
+ class Configuration
4
+ attr_accessor :user_alias
5
+
6
+ def initialize
7
+ @user_alias = :user
8
+ end
9
+ end
10
+
11
+ class << self
12
+ def configure
13
+ yield(configuration)
14
+ end
15
+
16
+ def configuration
17
+ @configuration ||= Banken::Matchers::Configuration.new
18
+ end
19
+ end
20
+ end
21
+ end
22
+
23
+ RSpec::Matchers.define(:permit_action) { |action|
24
+ include Banken::Matchers
25
+
26
+ match { |loyalty|
27
+ loyalty.public_send "#{action}?"
28
+ }
29
+
30
+ failure_message { |loyalty|
31
+ "#{loyalty.class} does not permit #{action} for #{loyalty.public_send(Banken::Matchers.configuration.user_alias).inspect}."
32
+ }
33
+ }
34
+
35
+ RSpec::Matchers.define(:forbid_action) { |action|
36
+ include Banken::Matchers
37
+
38
+ match { |loyalty|
39
+ ! loyalty.public_send "#{action}?"
40
+ }
41
+
42
+ failure_message { |loyalty|
43
+ "#{loyalty.class} does not forbid #{action} for #{loyalty.public_send(Banken::Matchers.configuration.user_alias).inspect}."
44
+ }
45
+ }
@@ -0,0 +1,5 @@
1
+ module Banken
2
+ module Matchers
3
+ VERSION = "0.1.0"
4
+ end
5
+ end
metadata ADDED
@@ -0,0 +1,86 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: banken-matchers
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - ichi
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2020-07-20 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rake
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '12.3'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '12.3'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rspec
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: Rspec matchers for banken loyalties.
42
+ email:
43
+ - ichi.ttht.1@gmail.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - ".gitignore"
49
+ - ".rspec"
50
+ - ".travis.yml"
51
+ - Gemfile
52
+ - Gemfile.lock
53
+ - LICENSE.txt
54
+ - README.md
55
+ - Rakefile
56
+ - banken-matchers.gemspec
57
+ - bin/console
58
+ - bin/setup
59
+ - lib/banken/matchers.rb
60
+ - lib/banken/matchers/version.rb
61
+ homepage: https://github.com/ichi/banken-matchers
62
+ licenses:
63
+ - MIT
64
+ metadata:
65
+ homepage_uri: https://github.com/ichi/banken-matchers
66
+ source_code_uri: https://github.com/ichi/banken-matchers
67
+ post_install_message:
68
+ rdoc_options: []
69
+ require_paths:
70
+ - lib
71
+ required_ruby_version: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: 2.3.0
76
+ required_rubygems_version: !ruby/object:Gem::Requirement
77
+ requirements:
78
+ - - ">="
79
+ - !ruby/object:Gem::Version
80
+ version: '0'
81
+ requirements: []
82
+ rubygems_version: 3.0.3
83
+ signing_key:
84
+ specification_version: 4
85
+ summary: Rspec matchers for banken loyalties.
86
+ test_files: []