Skip to content

Commit

Permalink
Switching to rim.
Browse files Browse the repository at this point in the history
  • Loading branch information
janfri committed Jul 9, 2012
1 parent ef2c115 commit 2169ffd
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 41 deletions.
27 changes: 0 additions & 27 deletions Manifest

This file was deleted.

26 changes: 12 additions & 14 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,25 +1,23 @@
require 'rubygems'
require 'echoe'
require 'rim'
require 'rim/check_version'
require 'rim/gem'
require 'rim/test'

Echoe.new('mini_exiftool') do |p|
p.author = 'Jan Friedrich'
$:.unshift 'lib'
require 'mini_exiftool'

Rim.setup do |p|
p.name = 'mini_exiftool'
p.version = MiniExiftool::VERSION
p.authors = 'Jan Friedrich'
p.email = 'janfri26@gmail.com'
p.summary = 'This library is wrapper for the Exiftool command-line application (http://www.sno.phy.queensu.ca/~phil/exiftool).'
p.url = 'http://gitorious.org/mini_exiftool'
p.rdoc_files = %w(README.rdoc Tutorial.rdoc lib/*.rb)
p.homepage = 'http://gitorious.org/mini_exiftool'
p.install_message = %q{
+-----------------------------------------------------------------------+
| Please ensure you have installed exiftool and it's found in your PATH |
| (Try "exiftool -ver" on your commandline). For more details see |
| http://www.sno.phy.queensu.ca/~phil/exiftool/install.html |
+-----------------------------------------------------------------------+
}
p.changelog = 'Changelog'
task :prerelease do
require "#{File.dirname(__FILE__)}/lib/mini_exiftool"
unless p.version == MiniExiftool::VERSION
$stderr.puts "Version conflict: Release version is #{p.version} but MiniExiftool::VERSION is #{MiniExiftool::VERSION}."
exit(1)
end
end
end

0 comments on commit 2169ffd

Please sign in to comment.