summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2011-06-22 09:01:11 +0200
committerJérémy Zurcher <jeremy@asynk.ch>2011-06-22 09:01:11 +0200
commitd9795a10412510cb13d0a81b5d8553e202195791 (patch)
tree3d0f8faddb7b74a594dd1db135af9199ff898bc4
parentcd7c334944d2989b25b24924d4c4716a406433bb (diff)
downloadskeletons-d9795a10412510cb13d0a81b5d8553e202195791.zip
skeletons-d9795a10412510cb13d0a81b5d8553e202195791.tar.gz
remove trailing spaces
-rw-r--r--MIT-LICENSE6
-rw-r--r--README.rdoc2
-rw-r--r--tasks/gem.rake2
-rw-r--r--tasks/helpers.rb2
-rw-r--r--tasks/rdoc.rake6
5 files changed, 8 insertions, 10 deletions
diff --git a/MIT-LICENSE b/MIT-LICENSE
index 825c5e9..5c2a345 100644
--- a/MIT-LICENSE
+++ b/MIT-LICENSE
@@ -6,13 +6,13 @@ 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 BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+THE AUTHORS 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.
diff --git a/README.rdoc b/README.rdoc
index 4576a17..fab41e4 100644
--- a/README.rdoc
+++ b/README.rdoc
@@ -12,8 +12,6 @@ FIXME
== SYNOPSIS:
- require 'efl-eet'
-
# TODO
For less minimalistic and more sane examples you may look at:
diff --git a/tasks/gem.rake b/tasks/gem.rake
index a3e76f3..e5e5d13 100644
--- a/tasks/gem.rake
+++ b/tasks/gem.rake
@@ -77,7 +77,7 @@ class GemPackageTask < Rake::PackageTask
end
end
end
-
+
def gem_file
if @gem_spec.platform == Gem::Platform::RUBY
"#{package_name}.gem"
diff --git a/tasks/helpers.rb b/tasks/helpers.rb
index b43117a..df5bd50 100644
--- a/tasks/helpers.rb
+++ b/tasks/helpers.rb
@@ -89,7 +89,7 @@ end
# files = []
# exclude = PROJ.exclude.dup
# comment = %r/^\s*#/
-#
+#
# # process the ignore file and add the items there to the exclude list
# if test(?f, PROJ.ignore_file)
# ary = []
diff --git a/tasks/rdoc.rake b/tasks/rdoc.rake
index cd47caa..98ef3b8 100644
--- a/tasks/rdoc.rake
+++ b/tasks/rdoc.rake
@@ -8,7 +8,7 @@ namespace :doc do
rdoc = PROJ.rdoc
rd.main = rdoc.main
rd.rdoc_dir = rdoc.dir
-
+
incl = Regexp.new(rdoc.include.join('|'))
excl = Regexp.new(rdoc.exclude.join('|'))
files = PROJ.gem.files.find_all do |fn|
@@ -24,12 +24,12 @@ namespace :doc do
rd.options << "-t #{title}"
rd.options.concat(rdoc.opts)
end
-
+
desc 'Generate ri locally for testing'
task :ri => :clobber_ri do
sh "#{RDOC} --ri -o ri ."
end
-
+
task :clobber_ri do
rm_r 'ri' rescue nil
end