From b094b56b4eb6a0ca74dff2f73fb9b439c72570e9 Mon Sep 17 00:00:00 2001 From: grosser Date: Mon, 19 Nov 2012 10:07:20 -0800 Subject: [PATCH] make license easier to discover + visible on rubygems.org/automated tools + reduce noise in readme --- LICENSE => MIT-LICENSE | 0 README.md | 26 +------------------------- brakeman.gemspec | 1 + 3 files changed, 2 insertions(+), 25 deletions(-) rename LICENSE => MIT-LICENSE (100%) diff --git a/LICENSE b/MIT-LICENSE similarity index 100% rename from LICENSE rename to MIT-LICENSE diff --git a/README.md b/README.md index 86bdd64a..1efed532 100644 --- a/README.md +++ b/README.md @@ -149,28 +149,4 @@ The default config locations are `./config.yaml`, `~/.brakeman/`, and `/etc/brak The `-c` option can be used to specify a configuration file to use. -# License - -The MIT License - -Copyright (c) 2012, Twitter, Inc. - -Copyright (c) 2010-2012, YELLOWPAGES.COM, LLC - -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. +# License see MIT-LICENSE diff --git a/brakeman.gemspec b/brakeman.gemspec index 9e7dc747..97c272e8 100644 --- a/brakeman.gemspec +++ b/brakeman.gemspec @@ -9,6 +9,7 @@ Gem::Specification.new do |s| s.homepage = "http://brakemanscanner.org" s.files = ["bin/brakeman", "CHANGES", "WARNING_TYPES", "FEATURES", "README.md"] + Dir["lib/**/*"] s.executables = ["brakeman"] + s.license = "MIT" s.add_dependency "activesupport" s.add_dependency "i18n" s.add_dependency "ruby_parser", "2.3.1" -- GitLab