From bd7e3053dc1869599024804fcc55368ec2220bab Mon Sep 17 00:00:00 2001 From: Pierre Carrier Date: Sat, 21 Apr 2012 21:13:45 +0200 Subject: [PATCH] COPYING, .gemspec: move to ISC license --- COPYING | 15 ++++++++++++--- moob.gemspec | 32 ++++++++++++++++---------------- 2 files changed, 28 insertions(+), 19 deletions(-) diff --git a/COPYING b/COPYING index 56611ae..1282361 100644 --- a/COPYING +++ b/COPYING @@ -1,4 +1,13 @@ -Copyright (c) 2011, Pierre Carrier +Copyright (c) 2011-2012, Spotify AB -Permission is granted to use, copy, modify and/or distribute this work -and/or license, without conditions. +Permission to use, copy, modify, and/or distribute this software +for any purpose with or without fee is hereby granted, provided that +the above copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH +REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, +INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS +OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF +THIS SOFTWARE. \ No newline at end of file diff --git a/moob.gemspec b/moob.gemspec index 7d6cdb9..45c8d45 100644 --- a/moob.gemspec +++ b/moob.gemspec @@ -6,23 +6,23 @@ $:.unshift lib unless $:.include?(lib) require 'moob' Gem::Specification.new do |s| - s.name = 'moob' - s.version = Moob::VERSION.join '.' - s.platform = Gem::Platform::RUBY - s.authors = ['Pierre Carrier'] - s.email = ['pierre@gcarrier.fr'] - s.homepage = "http://github.com/pcarrier/moob" - s.summary = 'Manage Out-Of-Band!' - s.description = 'Control systems using Web-based out-of-band managers without a browser' - s.license = 'Public-domain-like' + s.name = 'moob' + s.version = Moob::VERSION.join '.' + s.platform = Gem::Platform::RUBY + s.authors = ['Pierre Carrier'] + s.email = ['pierre@gcarrier.fr'] + s.homepage = "http://github.com/pcarrier/moob" + s.summary = 'Manage Out-Of-Band!' + s.description = 'Control systems using Web-based out-of-band managers without a browser' + s.license = 'ISC' - s.required_rubygems_version = '>= 1.2.0' - s.rubyforge_project = 'moob' + s.required_rubygems_version = '>= 1.2.0' + s.rubyforge_project = 'moob' - s.add_dependency 'patron', '~> 0.4.14' - s.add_dependency 'json', '~> 1.5.3' + s.add_dependency 'patron', '~> 0.4.14' + s.add_dependency 'json', '~> 1.5.3' - s.files = Dir.glob("{bin,lib}/**/*") + %w(COPYING) - s.executables = ['moob'] - s.require_path = 'lib' + s.files = Dir.glob("{bin,lib}/**/*") + %w(COPYING) + s.executables = ['moob'] + s.require_path = 'lib' end