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: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,6 @@
yarn-debug.log*
.yarn-integrity
storage
.generators
.idea/
.rakeTasks
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ gem "reform-rails", "~> 0.1"
group :development, :test do
# Call "byebug" anywhere in the code to stop execution and get a debugger console
gem "bullet", "~> 5.7"
gem 'coveralls', require: false
gem "coveralls", require: false
gem "awesome_print"
gem "byebug", platforms: %i[mri mingw x64_mingw]
# Adds support for Capybara system testing and selenium driver
Expand Down
2 changes: 1 addition & 1 deletion app/concepts/crud/common/operations/persist.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class Persist < Trailblazer::Operation
# step Trailblazer::Operation::Policy::Pundit(XY, :create?)

step Contract::Build()
step Contract::Validate()
step Contract::Validate()
step Contract::Persist()
end
end
Expand Down
2 changes: 1 addition & 1 deletion spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration

require 'coveralls'
require "coveralls"
Coveralls.wear!

RSpec.configure do |config|
Expand Down