Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
dc1214f
Merge pull request #1 from expertiza/main
surabhi1914 Nov 20, 2025
813cafc
Created a CalibrationController to handle calibration review function…
Nov 21, 2025
5becfff
Added summary method
SpencerKersey Nov 25, 2025
86c6ba8
Added the to_calibrate value to each summary submission
SpencerKersey Nov 25, 2025
47251de
Added calibration aggregate report method
SiddhiKhairee Nov 28, 2025
1e10edd
Changes in the calibration aggregate report method
SiddhiKhairee Nov 28, 2025
f0bead1
changed questionnaire to question
SiddhiKhairee Nov 28, 2025
0cb0aa1
Removed unused serialize_review function
SpencerKersey Nov 28, 2025
3e6efa4
Added get submitted content code
Nov 29, 2025
ad75408
Merge branch 'Calibration-S' of https://github.com/surabhi1914/reimpl…
Nov 29, 2025
64d353e
Modified to_calibrate to for_calibration
Nov 30, 2025
ec0d051
Updated the get_submitted_files method to get the hyperlinks from the…
Dec 1, 2025
72d1d7d
corrected the submission logic in calibration_controller.rb
Dec 2, 2025
5b50280
Initial commit of Rspec testing for calibration controller
SpencerKersey Dec 2, 2025
97c442c
Added the method Calibration report for students
SiddhiKhairee Dec 2, 2025
57addbf
Updated the comparison logic for reviews
SiddhiKhairee Dec 2, 2025
12c81c6
Refractored Calibration aggregate report method
SiddhiKhairee Dec 2, 2025
b9ef32c
Added a helper method for aggregated report
SiddhiKhairee Dec 2, 2025
2d4926a
Changes in a route
SiddhiKhairee Dec 2, 2025
40a73ab
Minor changes in the route
SiddhiKhairee Dec 2, 2025
6826ffd
Renamed function names for clarity
Dec 2, 2025
785f5ef
Finished up calibration_controller_spec and added migration for for_c…
SpencerKersey Dec 2, 2025
473f1e3
Update dependencies and database schema
Dec 2, 2025
2f79359
Added commented out version of testing to use real hyperlink/file fun…
SpencerKersey Dec 3, 2025
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
47 changes: 23 additions & 24 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,30 +3,30 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }

ruby '3.4.5'

gem 'active_model_serializers', '~> 0.10.0'
gem 'bigdecimal' # Required for Ruby 3.4.5 compatibility
gem 'csv' # Required for Ruby 3.4.5 compatibility
gem 'date' # Required for Ruby 3.4.5 compatibility
gem 'delegate' # Required for Ruby 3.4.5 compatibility
gem 'faraday-retry' # Required for Faraday v2.0+ compatibility
gem 'forwardable' # Required for Ruby 3.4.5 compatibility
gem 'logger' # Required for Ruby 3.4.5 compatibility
gem 'mini_portile2', '~> 2.8' # Helps with native gem compilation
gem 'monitor' # Required for Ruby 3.4.5 compatibility
gem 'mutex_m' # Required for Ruby 3.4.5 compatibility
gem 'mysql2', '~> 0.5.7'
gem 'sqlite3', '~> 1.4' # Alternative for development
gem 'observer' # Required for Ruby 3.4.5 compatibility with Rails 8.0
gem 'ostruct' # Required for Ruby 3.4.5 compatibility
gem 'psych', '~> 5.2' # Ensure compatible psych version for Ruby 3.4.5
gem 'puma', '~> 6.4'
gem 'rails', '~> 8.0', '>= 8.0.1'
gem 'mini_portile2', '~> 2.8' # Helps with native gem compilation
gem 'observer' # Required for Ruby 3.4.5 compatibility with Rails 8.0
gem 'mutex_m' # Required for Ruby 3.4.5 compatibility
gem 'faraday-retry' # Required for Faraday v2.0+ compatibility
gem 'bigdecimal' # Required for Ruby 3.4.5 compatibility
gem 'csv' # Required for Ruby 3.4.5 compatibility
gem 'date' # Required for Ruby 3.4.5 compatibility
gem 'delegate' # Required for Ruby 3.4.5 compatibility
gem 'forwardable' # Required for Ruby 3.4.5 compatibility
gem 'logger' # Required for Ruby 3.4.5 compatibility
gem 'monitor' # Required for Ruby 3.4.5 compatibility
gem 'ostruct' # Required for Ruby 3.4.5 compatibility
gem 'set' # Required for Ruby 3.4.5 compatibility
gem 'singleton' # Required for Ruby 3.4.5 compatibility
gem 'timeout' # Required for Ruby 3.4.5 compatibility
gem 'uri' # Required for Ruby 3.4.5 compatibility
gem 'rswag-api'
gem 'rswag-ui'
gem 'active_model_serializers', '~> 0.10.0'
gem 'psych', '~> 5.2' # Ensure compatible psych version for Ruby 3.4.5
gem 'set' # Required for Ruby 3.4.5 compatibility
gem 'singleton' # Required for Ruby 3.4.5 compatibility
gem 'sqlite3', '~> 1.4' # Alternative for development
gem 'timeout' # Required for Ruby 3.4.5 compatibility
gem 'uri' # Required for Ruby 3.4.5 compatibility

# Build JSON APIs with ease [https://github.com/rails/jbuilder]
# gem "jbuilder"
Expand Down Expand Up @@ -55,20 +55,19 @@ gem 'lingua'
# This is a really small gem that can be used to retrieve objects from the database in the order of the list given
gem 'find_with_order'


group :development, :test do
gem 'database_cleaner-active_record'
gem 'debug', platforms: %i[mri mingw x64_mingw]
gem 'factory_bot_rails'
gem 'database_cleaner-active_record'
gem 'faker'
gem 'rspec-rails'
gem 'rswag-specs'
gem 'rubocop'
gem 'simplecov', require: false, group: :test
gem 'coveralls'
gem 'simplecov_json_formatter'
gem 'shoulda-matchers'
# gem 'coveralls'
gem 'danger'
gem 'shoulda-matchers'
gem 'simplecov_json_formatter'
end

group :development do
Expand Down
Loading