-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[D-349] QueryDiet: Gems und Rails 8 (und Ruby 3.4) (#39)
- Loading branch information
Showing
167 changed files
with
482 additions
and
2,283 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,8 @@ doc | |
pkg | ||
*.gem | ||
.idea | ||
*.db | ||
*.log | ||
.bundle | ||
spec/support/database.yml | ||
.byebug_history |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
--color | ||
--require spec_helper |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
3.1.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Gemfile.7.0.sqlite |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,20 @@ | ||
source 'https://rubygems.org' | ||
|
||
gem 'sqlite3' | ||
# Runtime dependencies | ||
gem 'rails', '=6.1.2.1' | ||
|
||
# Development dependencies | ||
gem 'rspec' | ||
gem 'rspec-rails' | ||
gem 'sqlite3' | ||
gem 'database_cleaner' | ||
gem 'query_diet', :path => '../..' | ||
gem 'capybara' | ||
gem 'byebug' | ||
gem 'gemika' | ||
|
||
# For Ruby 3.1.1 | ||
gem 'matrix' | ||
gem 'net-smtp' | ||
|
||
# Gem under test | ||
gem 'query_diet', :path => '.' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,16 @@ | ||
source 'https://rubygems.org' | ||
|
||
gem 'sqlite3' | ||
# Runtime dependencies | ||
gem 'rails', '=7.0.1' | ||
|
||
# Development dependencies | ||
gem 'rspec' | ||
gem 'rspec-rails' | ||
gem 'sqlite3' | ||
gem 'database_cleaner' | ||
gem 'query_diet', :path => '../..' | ||
gem 'capybara' | ||
gem 'byebug' | ||
gem 'gemika' | ||
|
||
# Gem under test | ||
gem 'query_diet', :path => '.' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,16 @@ | ||
source 'https://rubygems.org' | ||
|
||
gem 'sqlite3', '~> 1.7' | ||
# Runtime dependencies | ||
gem 'rails', '=7.1.4' | ||
|
||
# Development dependencies | ||
gem 'rspec' | ||
gem 'rspec-rails' | ||
gem 'sqlite3', '~> 1.7' | ||
gem 'database_cleaner' | ||
gem 'query_diet', :path => '../..' | ||
gem 'capybara' | ||
gem 'byebug' | ||
gem 'gemika' | ||
|
||
# Gem under test | ||
gem 'query_diet', :path => '.' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,16 @@ | ||
source 'https://rubygems.org' | ||
|
||
gem 'sqlite3', '~> 1.7' | ||
# Runtime dependencies | ||
gem 'rails', '=7.2.1' | ||
|
||
# Development dependencies | ||
gem 'rspec' | ||
gem 'rspec-rails' | ||
gem 'sqlite3', '~> 1.7' | ||
gem 'database_cleaner' | ||
gem 'query_diet', :path => '../..' | ||
gem 'capybara' | ||
gem 'byebug' | ||
gem 'gemika' | ||
|
||
# Gem under test | ||
gem 'query_diet', :path => '.' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
source 'https://rubygems.org' | ||
|
||
# Runtime dependencies | ||
gem 'rails', '=8.0.1' | ||
|
||
# Development dependencies | ||
gem 'rspec' | ||
gem 'rspec-rails' | ||
gem 'sqlite3', '~> 2.4' | ||
gem 'database_cleaner' | ||
gem 'capybara' | ||
gem 'byebug' | ||
gem 'gemika' | ||
|
||
# Gem under test | ||
gem 'query_diet', :path => '.' |
Oops, something went wrong.