-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #85 from mezuro/update_meta_informations
Update meta informations
- Loading branch information
Showing
8 changed files
with
868 additions
and
196 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
# Revision history for Mezuro module KalibroConfigurations | ||
|
||
KalibroConfigurations is the configuration storage web service for Mezuro. | ||
|
||
## Unreleased | ||
|
||
- Add rubocop gem and configuration file | ||
- Make Travis fail if unit test coverage is below 100% | ||
- Cache bundle on travis | ||
- Update README | ||
- Create HACKING and CONTRIBUTING files | ||
|
||
## v2.1.0 - 30/03/2016 | ||
|
||
- Set development Ruby version to 2.3.0 | ||
- Add seeds for PHPMD configuration | ||
|
||
## v2.0.1 - 26/02/2016 | ||
|
||
- Fix default database.yml to avoid encoding conflicts in PostgreSQL | ||
|
||
## v2.0.0 - 27/01/2016 | ||
|
||
- Use new scope format for metric snapshots | ||
|
||
## v1.2.5 - 30/11/2015 | ||
|
||
- Fix Range validators | ||
|
||
## v1.2.4 - 25/11/2015 | ||
|
||
- Fix response status code | ||
|
||
## v1.2.3 - 09/11/2015 | ||
|
||
- Fix Procfile | ||
|
||
## v1.2.2 - 09/11/2015 | ||
|
||
- Foreman | ||
|
||
## v1.2.1 - 06/11/2015 | ||
|
||
- Backport for Ruby 2.0.0 | ||
- Fix seeds encoding | ||
|
||
## v1.2.0 - 14/10/2015 | ||
|
||
- Lists MetricConfigurations by type (Tree or Hotspot) | ||
- Improved test cases for KalibroRange | ||
|
||
## v1.1.1 - 09/09/2015 | ||
|
||
- Ruby and Gem updates | ||
- TestsController does not exist anymore under production | ||
|
||
## v1.1.0 - 27/08/2015 | ||
|
||
- Added support for Python metrics using the Radon collector | ||
- Added support for Hotspot metrics, that indicate positions in the code instead of measures | ||
- Added support for the Flay ruby collector, that finds duplicated code spots | ||
- Fixed bug where the Metric endpoint was returning undesired attributes for some metric types | ||
|
||
## v1.0.0 - 27/07/2015 | ||
|
||
First major release, with support for Java, C, C++ and Ruby metrics | ||
|
||
--- | ||
|
||
Kalibro Configurations. | ||
Copyright (C) 2015 The Mezuro Team | ||
|
||
This program is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU Affero General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
|
||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU Affero General Public License for more details. | ||
|
||
You should have received a copy of the GNU Affero General Public License | ||
along with this program. If not, see <http://www.gnu.org/licenses/>. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
### Contributing | ||
|
||
Please, have a look the wiki pages about development workflow and code standards: | ||
|
||
- https://github.com/mezuro/mezuro/wiki/Development-workflow | ||
- https://github.com/mezuro/mezuro/wiki/Standards | ||
|
||
Also, we have configured [rubocop](https://github.com/bbatsov/rubocop) to make it easier for developers to apply our code standards. | ||
|
||
You can run `rake rubocop` and look for offenses. |
Oops, something went wrong.