Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions any_login.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ Gem::Specification.new do |s|
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/**/*"]
Copy link
Copy Markdown
Author

@yuri-zubov yuri-zubov Feb 1, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The test_files directive is no longer used by RubyGems.org.

s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "README.rdoc"]

s.required_ruby_version = '>= 3.0'

Expand Down
1 change: 1 addition & 0 deletions gemfiles/rails_8_0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ source "https://rubygems.org"

gem "rails", "~> 8.0.2"
gem "sqlite3", ">= 2.6.0"
gem "minitest", "~> 5.27"

group :development, :test do
gem "capybara"
Expand Down