-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
any_login.gemspec
executable file
·26 lines (20 loc) · 954 Bytes
/
any_login.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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "any_login/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "any_login"
s.version = AnyLogin::VERSION
s.authors = ["Igor Kasyanchuk"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/igorkasyanchuk"
s.summary = "AnyLogin is created to speedup development process and allow developer's quickly login as any user in DB."
s.description = "Simply add this gem to your application and make your life easier with switching users."
s.license = "MIT"
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"]
s.test_files = Dir["test/**/*"]
s.required_ruby_version = '>= 3.0'
s.add_runtime_dependency 'rails', '>= 6.1'
s.add_development_dependency "appraisal"
s.add_development_dependency "multi_xml", "0.6.0"
end