1
0
Fork 0
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:
Zach Taylor 2016-01-16 21:06:44 -06:00
parent b0bdfbc0db
commit ac169b67d8
3 changed files with 5 additions and 2 deletions

View file

@ -4,6 +4,7 @@ rvm:
- 2.0.0
- 2.1
- 2.2
- 2.3.0
- jruby-19mode
- rbx-2
env:

View file

@ -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

View file

@ -1,3 +1,4 @@
# frozen_string_literal: true
module Pundit
VERSION = "1.1.0"
VERSION = "1.1.0".freeze
end