https://github.com/simonswine/redmine_password_tool
Redmine Password Management Plugin
https://github.com/simonswine/redmine_password_tool
Last synced: about 2 months ago
JSON representation
Redmine Password Management Plugin
- Host: GitHub
- URL: https://github.com/simonswine/redmine_password_tool
- Owner: simonswine
- Created: 2013-09-15T16:32:27.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-04-22T23:17:50.000Z (about 10 years ago)
- Last Synced: 2025-04-27T00:07:09.327Z (about 2 months ago)
- Language: Ruby
- Size: 422 KB
- Stars: 6
- Watchers: 7
- Forks: 3
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# Redmine Passwort Tool Plugin
- Store passwords/other secrets crypted in database
- Customizable password entry templates
- Role based access per project---
## [Change log](CHANGELOG.md)
## Testing
### Summary
* [](https://travis-ci.org/simonswine/redmine_password_tool) on travis-ci.org (master branch)
### Test Policy
- Everything should be covered by tests
### Prepare test database
```
# Test Env
export RAILS_ENV=test# Drop Database
rake db:migrate# Upgrade Database Schema
rake db:test:load
rake db:test:prepare
rake redmine:plugins:migrate```
### Recreate test database
```
# Reset db completly
rake db:drop db:create db:migrate db:test:load db:test:prepare redmine:plugins:migrate redmine:load_default_data RAILS_ENV=test```
### Run test
```
rake redmine:plugins:test NAME=redmine_password_tool
```