Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
The collection of helper methods to test git something.
# spec_helper.rb
require 'rspec/commit_specifier'
# repository_spec.rb
describe 'Repository' do
include RSpec::GitSpecifier # or RSpec.configuration.include RSpec::GitSpecifier
# it defines `commits` and other helper methods to test repository
describe 'commit messages' do
subject { commits.map(&:message) }
it { is_expected.to all(be) }
it { is_expected.to all(match(/\A.*(?:\n\Z|\n\n)/)) } # force second line to be blank
it { is_expected.to all(match(/\A.*[^.]\n/)) } # force first line to end with [^.]
# start with uppercase character or command
commands = %w(bundle rake rails guard sed)
it { is_expected.to all(match(/\A(?:[A-Z0-9]|#{commands.join('|')})/)) }
end
describe 'current branch name' do
subject { current_branch.name }
it { is_expected.to match(/[a-z0-9-]+/) }
end
end
FAQs
Unknown package
We found that rspec-git_specifier demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.