remove warnings and add a MIT-LICENSE file instead of just LICENSE
Didier Lafforgue
committed Mar 09, 2018
commit e28c081eec4197e32d065df99ee1c07757690245
Showing 4
changed files with
33 additions
and 27 deletions
LICENSE
+0
-20
| @@ | @@ -1,20 +0,0 @@ |
| - | The MIT License (MIT) |
| - | |
| - | Copyright (c) 2017 NoCoffee |
| - | |
| - | Permission is hereby granted, free of charge, to any person obtaining a copy of |
| - | this software and associated documentation files (the "Software"), to deal in |
| - | the Software without restriction, including without limitation the rights to |
| - | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of |
| - | the Software, and to permit persons to whom the Software is furnished to do so, |
| - | subject to the following conditions: |
| - | |
| - | The above copyright notice and this permission notice shall be included in all |
| - | copies or substantial portions of the Software. |
| - | |
| - | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| - | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS |
| - | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR |
| - | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER |
| - | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN |
| - | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
MIT-LICENSE
+20
-0
| @@ | @@ -0,0 +1,20 @@ |
| + | The MIT License (MIT) |
| + | |
| + | Copyright (c) 2018 NoCoffee |
| + | |
| + | Permission is hereby granted, free of charge, to any person obtaining a copy of |
| + | this software and associated documentation files (the "Software"), to deal in |
| + | the Software without restriction, including without limitation the rights to |
| + | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of |
| + | the Software, and to permit persons to whom the Software is furnished to do so, |
| + | subject to the following conditions: |
| + | |
| + | The above copyright notice and this permission notice shall be included in all |
| + | copies or substantial portions of the Software. |
| + | |
| + | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| + | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS |
| + | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR |
| + | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER |
| + | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN |
| + | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
README.md
+2
-2
| @@ | @@ -14,7 +14,7 @@ The rendering stack used by both Wagon and Engine (WIP). It includes: |
| ## Installation [WIP] | |
| gem install thin | |
| - | gem install locomotivecms_steam --pre |
| + | gem install locomotivecms_steam |
| ## Usage | |
| @@ | @@ -61,4 +61,4 @@ see the list in the issues section. |
| ## License | |
| - | Copyright (c) 2017 NoCoffee. MIT Licensed, see LICENSE for details. |
| + | Copyright (c) 2018 NoCoffee. MIT Licensed, see MIT-LICENSE for details. |
spec/spec_helper.rb
+11
-5
| @@ | @@ -1,12 +1,18 @@ |
| + | # require 'simplecov' |
| + | # require 'codeclimate-test-reporter' |
| + | # require 'coveralls' |
| + | # require 'simplecov' |
| + | # require 'coveralls' |
| + | |
| require 'simplecov' | |
| - | require 'codeclimate-test-reporter' |
| require 'coveralls' | |
| + | |
| SimpleCov.start do | |
| - | formatter SimpleCov::Formatter::MultiFormatter.new([ |
| - | SimpleCov::Formatter::HTMLFormatter, |
| - | CodeClimate::TestReporter::Formatter, |
| - | Coveralls::SimpleCov::Formatter]) |
| + | # formatter SimpleCov::Formatter::MultiFormatter.new([ |
| + | # SimpleCov::Formatter::HTMLFormatter, |
| + | # CodeClimate::TestReporter::Formatter, |
| + | # Coveralls::SimpleCov::Formatter]) |
| add_filter 'config/' | |
| add_filter 'example/' | |