Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/simonswine/redmine_password_tool
Redmine Password Management Plugin
https://github.com/simonswine/redmine_password_tool
Last synced: 27 days 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 (over 9 years ago)
- Last Synced: 2023-03-11T19:37:09.880Z (almost 2 years 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
* [![build status](https://secure.travis-ci.org/simonswine/redmine_password_tool.png)](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
```