summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Bleything <ben@bleything.net>2010-01-08 08:34:38 -0800
committerBen Bleything <ben@bleything.net>2010-01-11 16:07:02 -0800
commit556e4f98eeab74be75e860cddfdb50a5799ccbce (patch)
treea92ac575aa70ed0ad9ad0715c3e37e5adc485c4f
parentae748c0236b562437f0703c435a28bfedf33bab0 (diff)
downloadplist-556e4f98eeab74be75e860cddfdb50a5799ccbce.tar.gz
rename MIT-LICENSE to LICENSE
-rw-r--r--LICENSE (renamed from MIT-LICENSE)0
-rw-r--r--README2
-rw-r--r--Rakefile4
3 files changed, 3 insertions, 3 deletions
diff --git a/MIT-LICENSE b/LICENSE
index c31ab2b..c31ab2b 100644
--- a/MIT-LICENSE
+++ b/LICENSE
diff --git a/README b/README
index ec47957..05b4cd0 100644
--- a/README
+++ b/README
@@ -31,6 +31,6 @@ Portions of the code (notably the Rakefile) contain code pulled and/or adapted f
=== MIT License
-:include: MIT-LICENSE
+:include: LICENSE
diff --git a/Rakefile b/Rakefile
index 19d9930..acfd5cf 100644
--- a/Rakefile
+++ b/Rakefile
@@ -32,7 +32,7 @@ RUBYFORGE_USER = ENV['RUBYFORGE_USER']
TEST_FILES = Dir.glob('test/test_*').delete_if { |item| item.include?( "\.svn" ) }
TEST_ASSETS = Dir.glob('test/assets/*').delete_if { |item| item.include?( "\.svn" ) }
LIB_FILES = Dir.glob('lib/**/*').delete_if { |item| item.include?( "\.svn" ) }
-RELEASE_FILES = [ "Rakefile", "README", "MIT-LICENSE", "docs/USAGE" ] + LIB_FILES + TEST_FILES + TEST_ASSETS
+RELEASE_FILES = [ "Rakefile", "README", "LICENSE", "docs/USAGE" ] + LIB_FILES + TEST_FILES + TEST_ASSETS
task :default => [ :test ]
# Run the unit tests
@@ -109,7 +109,7 @@ Rake::RDocTask.new { |rdoc|
rdoc.title = "All-purpose Property List manipulation library"
rdoc.options << '-SNmREADME'
rdoc.template = "docs/jamis-template.rb"
- rdoc.rdoc_files.include('README', 'MIT-LICENSE', 'CHANGELOG')
+ rdoc.rdoc_files.include('README', 'LICENSE', 'CHANGELOG')
rdoc.rdoc_files.include Dir.glob('docs/**').delete_if {|f| f.include? 'jamis' }
rdoc.rdoc_files.include('lib/**')
}