You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Before trying to setup GitHub Actions for this gem I tried it locally in an Ubuntu 22.10 based docker container after cloning the repo:
The ./bin/setup seemed to be successful, but showed me some warnings:
Using sumomo 0.8.22 from source at `.` and installing its executables
Bundle complete! 4 Gemfile dependencies, 364 gems now installed.
Use `bundle info [gemname]` to see where a bundled gem is installed.
Post-install message from trollop:
! The 'trollop' gem has been deprecated and has been replaced by 'optimist'.
! See: https://rubygems.org/gems/optimist
! And: https://github.com/ManageIQ/optimist
Post-install message from rubyzip:
RubyZip 3.0 is coming!
**********************
The public API of some Rubyzip classes has been modernized to use named
parameters for optional arguments. Please check your usage of the
following classes:
* `Zip::File`
* `Zip::Entry`
* `Zip::InputStream`
* `Zip::OutputStream`
Please ensure that your Gemfiles and .gemspecs are suitably restrictive
to avoid an unexpected breakage when 3.0 is released (e.g. ~> 2.3.0).
See https://github.com/rubyzip/rubyzip for details. The Changelog also
lists other enhancements and bugfixes that have been implemented since
version 2.3.0.
# Do any other automated setup that you need to do here
rake spec however failed:
/usr/bin/ruby3.0 -I/var/lib/gems/3.0.0/gems/rspec-support-3.12.0/lib:/var/lib/gems/3.0.0/gems/rspec-core-3.12.0/lib /var/lib/gems/3.0.0/gems/rspec-core-3.12.0/exe/rspec --pattern spec/\*\*\{,/\*/\*\*\}/\*_spec.rb
Sumomo
has a version number
does something useful (FAILED - 1)
Failures:
1) Sumomo does something useful
Failure/Error: expect(false).to eq(true)
expected: true
got: false
(compared using ==)
Diff:
@@ -1 +1 @@
-true
+false
# ./spec/sumomo_spec.rb:11:in `block (2 levels) in <top (required)>'
Finished in 0.0896 seconds (files took 1.23 seconds to load)
2 examples, 1 failure
Failed examples:
rspec ./spec/sumomo_spec.rb:10 # Sumomo does something useful
/usr/bin/ruby3.0 -I/var/lib/gems/3.0.0/gems/rspec-support-3.12.0/lib:/var/lib/gems/3.0.0/gems/rspec-core-3.12.0/lib /var/lib/gems/3.0.0/gems/rspec-core-3.12.0/exe/rspec --pattern spec/\*\*\{,/\*/\*\*\}/\*_spec.rb failed
Any steps I might have missed setting up the local development environment?
The text was updated successfully, but these errors were encountered:
Before trying to setup GitHub Actions for this gem I tried it locally in an Ubuntu 22.10 based docker container after cloning the repo:
The
./bin/setup
seemed to be successful, but showed me some warnings:rake spec
however failed:Any steps I might have missed setting up the local development environment?
The text was updated successfully, but these errors were encountered: