Skip to content

Commit

Permalink
WIP: fixing more specs and models
Browse files Browse the repository at this point in the history
 * removing Sham
 * adding Faker gem
 * switching from custom made make! to build() using FactoryBot
 * fixing submissions link generator
  • Loading branch information
kigster committed Mar 17, 2024
1 parent 6b30327 commit 03daf16
Show file tree
Hide file tree
Showing 32 changed files with 700 additions and 261 deletions.
4 changes: 4 additions & 0 deletions .envrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
PATH_add bin
PATH_add /opt/homebrew/bin

pg_pkg=$(brew list -1 | grep postgresql | sort -n | tail -1)

[[ -n ${pg_pkg} ]] && PATH_add /opt/homebrew/opt/${pg_pkg}/bin

export brew_prefix="$(brew --prefix)"
export OBJC_DISABLE_INITIALIZE_FORK_SAFETY=YES

Expand Down
3 changes: 2 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

source 'https://rubygems.org'

gem 'rails', '~> 6.0.2'
gem 'rails', '~> 6.1'

gem 'annotate'
gem 'attribute_normalizer'
Expand Down Expand Up @@ -54,6 +54,7 @@ group :development do
end

group :test do
gem 'faker'
gem 'accept_values_for'
gem 'factory_bot_rails'
gem 'rspec-its'
Expand Down
Loading

0 comments on commit 03daf16

Please sign in to comment.