Sha256: ba40a3011f11e9eed651dd6a8aa038c46439c891d518c66f1e295867b5022539
Contents?: true
Size: 1.31 KB
Versions: 4
Compression:
Stored size: 1.31 KB
Contents
# Contributing to Authlogic ## Issues ### Security Issues **Do not disclose security issues in public.** Instead, please email: ``` Ben Johnson <bjohnson@binarylogic.com>, Tieg Zaharia <tieg.zaharia@gmail.com> Jared Beck <jared@jaredbeck.com> ``` We will review security issues promptly. ### Non-Security Issues Please use github issues only for bug reports and feature requests. ### Usage Questions Please ask usage questions on [stackoverflow](http://stackoverflow.com/questions/tagged/authlogic). ## Development ### Testing Tests can be ran against different versions of Rails like so: ``` BUNDLE_GEMFILE=test/gemfiles/Gemfile.rails-3.2.x bundle install BUNDLE_GEMFILE=test/gemfiles/Gemfile.rails-3.2.x bundle exec rake ``` ### Linting Running `rake` also runs a linter, rubocop. Contributions must pass both the linter and the tests. The linter can be run on its own. ``` BUNDLE_GEMFILE=test/gemfiles/Gemfile.rails-3.2.x bundle exec rubocop ``` To run the tests without linting, use `rake test`. ``` BUNDLE_GEMFILE=test/gemfiles/Gemfile.rails-3.2.x bundle exec rake test ``` ### Release 1. Update version number in gemspec 1. Add release date to changelog entry 1. Commit 1. git tag -a -m "v3.6.0" "v3.6.0" 1. git push --tags origin 3-stable # or whatever branch 1. gem build authlogic.gemspec 1. gem push authlogic-3.6.0
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
authlogic-3.8.0 | CONTRIBUTING.md |
authlogic-3.7.0 | CONTRIBUTING.md |
authlogic-3.6.1 | CONTRIBUTING.md |
authlogic-3.6.0 | CONTRIBUTING.md |