-
Notifications
You must be signed in to change notification settings - Fork 0
/
sixarm_ruby_current_user.gemspec
40 lines (28 loc) · 1.23 KB
/
sixarm_ruby_current_user.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# -*- coding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "sixarm_ruby_current_user"
s.summary = "SixArm.com → Ruby → CurrentUser"
s.description = "CurrentUser module to get and set a user in a Rails session"
s.version = "1.4.9"
s.author = "SixArm"
s.email = "sixarm@sixarm.com"
s.homepage = "http://sixarm.com/"
s.licenses = ["Apache-2.0", "Artistic-2.0", "BSD-3-Clause", "GPL-2.0", "GPL-3.0", "MIT", "MPL-2.0"]
s.signing_key = "/opt/key/sixarm/sixarm-ruby-gem-signing-20230504-private.pem"
s.cert_chain = ["/opt/key/sixarm/sixarm-ruby-gem-signing-20230504-public.pem"]
s.platform = Gem::Platform::RUBY
s.require_path = "lib"
s.files = [
"Rakefile",
"lib/#{s.name}.rb",
]
s.test_files = [
"test/sixarm_ruby_current_user_test.rb",
]
s.add_dependency('sixarm_ruby_active_record_mock', '>= 1.4.4', '<2') # test
s.add_development_dependency("minitest", ">= 5.12", "< 6")
s.add_development_dependency("sixarm_ruby_minitest_extensions", ">= 1.0.8", "< 2")
s.add_development_dependency("rake", ">= 12.3.3", "< 13")
s.add_development_dependency("simplecov", ">= 0.18.0", "< 2")
s.required_ruby_version = ">= 2.2"
end