rinsed-org / rb-snowflake-client

pure ruby snowflake (REST API) client
MIT License
9 stars 11 forks source link

Delete and ignore Gemfile.lock #29

Closed fapapa closed 5 months ago

fapapa commented 9 months ago

The Gemfile.lock is not included in version control for gems because you generally want to test your gem against the latest versions of its dependencies to catch any issues before your gem users do.

fapapa commented 9 months ago

There's also an opportunity to remove dependencies from Gemfile that are also listed in the gemspec. In gems the Gemfile should only include dev/test dependencies that are not strictly required for development. If dev dependencies are required for development, they should be added to the gemspec with s.add_development_dependency ....