pundit_helpers 0.1.0 → 1.1.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
- SHA1:
3
- metadata.gz: ac42cf3f0853e9afe356ba5a054815a46649b48c
4
- data.tar.gz: 31344d02e93ca2b853446b13bb1e74fa9870e31f
2
+ SHA256:
3
+ metadata.gz: 7ec1a3ca2f6f4c400149f609889fadb35c99a6ad69381f4dc3a41290d5683008
4
+ data.tar.gz: 7c7029e01f9dc16d26b736824d4568001a0a76b6b6521e404caf38738797c0c4
5
5
  SHA512:
6
- metadata.gz: 21014937447000f7ddc72e97aa413c47e1cb6b5197af73112949d503d9f4d00b58b5d0b8bad130b9153d7ce12d952dd6cebfeb7276d94690fec180f3c1315c6b
7
- data.tar.gz: 8ee9e7efa46bceebeab247ed0e32373c5f3fd461384d37035da0137293c9de68090d4cbb20cd8093e54b4c8921dc5ba4438662d932213fb86c2eff2a5886bdff
6
+ metadata.gz: b4315b8aaa24c7dc7978dc8865502e5bf4b492332464c1a5156111a74e43a7719c88e3f2b1ee255067517c192fca8a515a01a38df1687949706f239bd8d82122
7
+ data.tar.gz: fc5a915ca1fedebff489bcb3d521defd1b513de6232644adc3ce119c0019c41119b7ea32bc00e841ec2227edb2bba688121788f30d0d229b376d30f2d034d48f
data/.gitignore CHANGED
@@ -3,7 +3,6 @@
3
3
  .bundle
4
4
  .config
5
5
  .yardoc
6
- Gemfile.lock
7
6
  InstalledFiles
8
7
  _yardoc
9
8
  coverage
data/CHANGELOG.md ADDED
@@ -0,0 +1,8 @@
1
+ # Changelog
2
+
3
+ ## 1.1.0
4
+ - Loosens pundit version restriction so can be used with newer versions of pundit
5
+
6
+ ## 1.0.0
7
+
8
+ - Change `current_user` usage to `pundit_user`
data/Gemfile.lock ADDED
@@ -0,0 +1,61 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ pundit_helpers (1.1.0)
5
+ pundit (>= 0.2.2)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ activesupport (7.1.5.1)
11
+ base64
12
+ benchmark (>= 0.3)
13
+ bigdecimal
14
+ concurrent-ruby (~> 1.0, >= 1.0.2)
15
+ connection_pool (>= 2.2.5)
16
+ drb
17
+ i18n (>= 1.6, < 2)
18
+ logger (>= 1.4.2)
19
+ minitest (>= 5.1)
20
+ mutex_m
21
+ securerandom (>= 0.3)
22
+ tzinfo (~> 2.0)
23
+ base64 (0.2.0)
24
+ benchmark (0.4.0)
25
+ bigdecimal (3.1.9)
26
+ concurrent-ruby (1.3.4)
27
+ connection_pool (2.5.0)
28
+ diff-lcs (1.5.1)
29
+ drb (2.2.1)
30
+ i18n (1.14.6)
31
+ concurrent-ruby (~> 1.0)
32
+ logger (1.6.4)
33
+ minitest (5.25.4)
34
+ mutex_m (0.3.0)
35
+ pundit (2.4.0)
36
+ activesupport (>= 3.0.0)
37
+ rake (13.2.1)
38
+ rspec (2.14.1)
39
+ rspec-core (~> 2.14.0)
40
+ rspec-expectations (~> 2.14.0)
41
+ rspec-mocks (~> 2.14.0)
42
+ rspec-core (2.14.8)
43
+ rspec-expectations (2.14.5)
44
+ diff-lcs (>= 1.1.3, < 2.0)
45
+ rspec-mocks (2.14.6)
46
+ securerandom (0.3.2)
47
+ tzinfo (2.0.6)
48
+ concurrent-ruby (~> 1.0)
49
+
50
+ PLATFORMS
51
+ arm64-darwin-23
52
+ ruby
53
+
54
+ DEPENDENCIES
55
+ bundler
56
+ pundit_helpers!
57
+ rake
58
+ rspec (~> 2.14.1)
59
+
60
+ BUNDLED WITH
61
+ 2.5.17
@@ -1,3 +1,3 @@
1
1
  module PunditHelpers
2
- VERSION = "0.1.0"
2
+ VERSION = "1.1.0"
3
3
  end
@@ -2,6 +2,10 @@ require "pundit_helpers/version"
2
2
 
3
3
  module PunditHelpers
4
4
  def self.included(base)
5
+ unless ancestors.include?(Pundit)
6
+ include Pundit::Authorization
7
+ end
8
+
5
9
  methods = [:authorized?, :can?]
6
10
 
7
11
  if base.respond_to?(:helper_method)
@@ -27,7 +31,7 @@ module PunditHelpers
27
31
  # @return [Boolean]
28
32
  def authorized?(record, query=nil)
29
33
  begin
30
- authorize(record, query)
34
+ !!authorize(record, query)
31
35
  rescue Pundit::NotAuthorizedError
32
36
  false
33
37
  end
@@ -45,7 +49,7 @@ module PunditHelpers
45
49
  # @return [Boolean]
46
50
  def can?(query, record)
47
51
  query = "#{query}?"
48
- policy = Pundit.policy!(current_user, record)
52
+ policy = Pundit.policy!(pundit_user, record)
49
53
  !! policy.public_send(query)
50
54
  end
51
55
  end
@@ -18,9 +18,9 @@ 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 "pundit", "~> 0.2"
21
+ spec.add_dependency "pundit", ">= 0.2.2"
22
22
 
23
- spec.add_development_dependency "bundler", "~> 1.5"
23
+ spec.add_development_dependency "bundler"
24
24
  spec.add_development_dependency "rake"
25
25
  spec.add_development_dependency "rspec", "~> 2.14.1"
26
26
  end
@@ -6,8 +6,8 @@ class Harness
6
6
  @helper_methods = []
7
7
  end
8
8
 
9
- def current_user
10
- :spec_current_user
9
+ def pundit_user
10
+ :spec_pundit_user
11
11
  end
12
12
 
13
13
  def self.helper_methods
@@ -21,46 +21,68 @@ class Harness
21
21
  include PunditHelpers
22
22
  end
23
23
 
24
- describe PunditHelpers, "#authorized?" do
25
- it "is true if #authorize returns true" do
26
- harness = Harness.new
27
- record = double
28
- expect(harness).to receive(:authorize).with(record, :show?).and_return(true)
29
- expect(harness.authorized?(record, :show?)).to be_true
30
- end
24
+ class Post
25
+ end
31
26
 
32
- it "is false if #authorize raises Pundit::NotAuthorizedError" do
33
- harness = Harness.new
34
- record = double
35
- expect(harness).to receive(:authorize).with(record, :show?).and_raise(Pundit::NotAuthorizedError)
36
- expect(harness.authorized?(record, :show?)).to be_false
27
+ class PostPolicy < Struct.new(:user, :post)
28
+ def edit?
29
+ user == :mr_joe
37
30
  end
38
31
 
39
- it "is installed as a helper_method on module inclusion" do
40
- expect(Harness.helper_methods).to include(:authorized?)
32
+ def show?
33
+ true
41
34
  end
42
35
  end
43
36
 
44
- describe PunditHelpers, "#can?" do
45
- it "is true if the located policy permits the action" do
46
- record = double
47
- policy = double(:edit? => true)
48
- harness = Harness.new
37
+ describe PunditHelpers do
38
+ let(:harness) { Harness.new }
39
+ let(:record) { Post.new }
49
40
 
50
- expect(Pundit).to receive(:policy!).with(:spec_current_user, record).and_return(policy)
51
- expect(harness.can?(:edit, record)).to be_true
41
+ before do
42
+ allow(harness).to receive(:authorize).and_call_original
52
43
  end
53
44
 
54
- it "is false if the located policy denies the action" do
55
- record = double
56
- policy = double(:edit? => false)
57
- harness = Harness.new
45
+ describe "#authorized?" do
46
+ context "when authorization succeeds" do
47
+ it "is true if #authorize returns true" do
48
+ expect(harness.authorized?(record, :show?)).to eq true
49
+ expect(harness).to have_received(:authorize).with(record, :show?)
50
+ end
51
+ end
58
52
 
59
- expect(Pundit).to receive(:policy!).with(:spec_current_user, record).and_return(policy)
60
- expect(harness.can?(:edit, record)).to be_false
53
+ context "when authorization fails" do
54
+ it "is false if #authorize raises Pundit::NotAuthorizedError" do
55
+ expect(harness.authorized?(record, :edit?)).to be false
56
+ expect(harness).to have_received(:authorize).with(record, :edit?)
57
+ end
58
+ end
59
+
60
+ it "is installed as a helper_method on module inclusion" do
61
+ expect(Harness.helper_methods).to include(:authorized?)
62
+ end
61
63
  end
62
64
 
63
- it "is installed as a helper_method on module inclusion" do
64
- expect(Harness.helper_methods).to include(:can?)
65
+ describe "#can?" do
66
+ let(:policy) { PostPolicy.new(:spec_pundit_user, record) }
67
+
68
+ before do
69
+ allow(Pundit).to receive(:policy!)
70
+ .with(:spec_pundit_user, record)
71
+ .and_return(policy)
72
+ end
73
+
74
+ it "is true if the located policy permits the action" do
75
+ expect(harness.can?(:show, record)).to be true
76
+ expect(Pundit).to have_received(:policy!).with(:spec_pundit_user, record)
77
+ end
78
+
79
+ it "is false if the located policy denies the action" do
80
+ expect(harness.can?(:edit, record)).to be false
81
+ expect(Pundit).to have_received(:policy!).with(:spec_pundit_user, record)
82
+ end
83
+
84
+ it "is installed as a helper_method on module inclusion" do
85
+ expect(Harness.helper_methods).to include(:can?)
86
+ end
65
87
  end
66
- end
88
+ end
metadata CHANGED
@@ -1,43 +1,43 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pundit_helpers
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brendon Murphy
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-12-10 00:00:00.000000000 Z
11
+ date: 2025-03-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pundit
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.2'
19
+ version: 0.2.2
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.2'
26
+ version: 0.2.2
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: bundler
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - "~>"
31
+ - - ">="
32
32
  - !ruby/object:Gem::Version
33
- version: '1.5'
33
+ version: '0'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - "~>"
38
+ - - ">="
39
39
  - !ruby/object:Gem::Version
40
- version: '1.5'
40
+ version: '0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: rake
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -66,7 +66,7 @@ dependencies:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
68
  version: 2.14.1
69
- description:
69
+ description:
70
70
  email:
71
71
  - xternal1+github@gmail.com
72
72
  executables: []
@@ -74,7 +74,9 @@ extensions: []
74
74
  extra_rdoc_files: []
75
75
  files:
76
76
  - ".gitignore"
77
+ - CHANGELOG.md
77
78
  - Gemfile
79
+ - Gemfile.lock
78
80
  - LICENSE.txt
79
81
  - README.md
80
82
  - Rakefile
@@ -86,7 +88,7 @@ homepage: ''
86
88
  licenses:
87
89
  - MIT
88
90
  metadata: {}
89
- post_install_message:
91
+ post_install_message:
90
92
  rdoc_options: []
91
93
  require_paths:
92
94
  - lib
@@ -101,9 +103,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
101
103
  - !ruby/object:Gem::Version
102
104
  version: '0'
103
105
  requirements: []
104
- rubyforge_project:
105
- rubygems_version: 2.2.2
106
- signing_key:
106
+ rubygems_version: 3.3.11
107
+ signing_key:
107
108
  specification_version: 4
108
109
  summary: ''
109
110
  test_files: