Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 813 Bytes

File metadata and controls

35 lines (27 loc) · 813 Bytes

Development

Publishing as Ruby Gem

# [increment gem VERSION]
gem build quickery
gem push quickery-X.X.X.gem

Test

Setup

# setup development gems
bundle install
# setup Apprisal for testing different Rails versions below
bundle exec appraisal install
# to auto-test specs whenever a spec file has been modified:
bundle exec guard

# to manually run specs for a particular rails version (for more info: see Appraisals file):
bundle exec appraisal rails-5 rspec
# or
bundle exec appraisal rails-4 rspec