mirror of
https://github.com/varvet/pundit.git
synced 2022-11-09 12:30:11 -05:00
Build against ruby 2.3
This commit is contained in:
parent
b0bdfbc0db
commit
ac169b67d8
3 changed files with 5 additions and 2 deletions
|
@ -4,6 +4,7 @@ rvm:
|
|||
- 2.0.0
|
||||
- 2.1
|
||||
- 2.2
|
||||
- 2.3.0
|
||||
- jruby-19mode
|
||||
- rbx-2
|
||||
env:
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# frozen_string_literal: true
|
||||
require "pundit/version"
|
||||
require "pundit/policy_finder"
|
||||
require "active_support/concern"
|
||||
|
@ -8,7 +9,7 @@ require "active_support/dependencies/autoload"
|
|||
|
||||
# @api public
|
||||
module Pundit
|
||||
SUFFIX = "Policy"
|
||||
SUFFIX = "Policy".freeze
|
||||
|
||||
# @api private
|
||||
module Generators; end
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# frozen_string_literal: true
|
||||
module Pundit
|
||||
VERSION = "1.1.0"
|
||||
VERSION = "1.1.0".freeze
|
||||
end
|
||||
|
|
Loading…
Add table
Reference in a new issue