Skip to content

Commit

Permalink
Switched to bundler for dev.
Browse files Browse the repository at this point in the history
  • Loading branch information
jnunemaker committed Jan 22, 2011
1 parent 92f9047 commit 7dabbd9
Show file tree
Hide file tree
Showing 27 changed files with 42 additions and 2,678 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -1,3 +1,4 @@
.bundle
.svn
.svn/*
tmp/*
Expand Down
2 changes: 2 additions & 0 deletions Gemfile
@@ -0,0 +1,2 @@
source 'http://rubygems.org'
gemspec
14 changes: 14 additions & 0 deletions Gemfile.lock
@@ -0,0 +1,14 @@
PATH
remote: .
specs:
imanip (0.1.4)

GEM
remote: http://rubygems.org/
specs:

PLATFORMS
ruby

DEPENDENCIES
imanip!
19 changes: 0 additions & 19 deletions Manifest.txt

This file was deleted.

120 changes: 0 additions & 120 deletions README.txt

This file was deleted.

14 changes: 11 additions & 3 deletions Rakefile
@@ -1,4 +1,12 @@
require 'config/requirements'
require 'config/hoe' # setup Hoe + all gem configuration
require 'bundler'
Bundler::GemHelper.install_tasks

Dir['tasks/**/*.rake'].each { |rake| load rake }
require 'rake/testtask'
Rake::TestTask.new do |test|
test.libs << 'lib' << 'test'
test.pattern = 'test/**/test_*.rb'
test.ruby_opts = ['-rubygems']
test.verbose = true
end

task :default => :test
73 changes: 0 additions & 73 deletions config/hoe.rb

This file was deleted.

15 changes: 0 additions & 15 deletions config/requirements.rb

This file was deleted.

43 changes: 13 additions & 30 deletions imanip.gemspec
@@ -1,34 +1,17 @@
# encoding: UTF-8
require File.expand_path('../lib/imanip/version', __FILE__)

Gem::Specification.new do |s|
s.name = %q{imanip}
s.version = "0.1.4"
s.name = "imanip"
s.summary = "Super-quick image resizing using the ImageMagick command line tools"
s.description = "Super-quick image resizing using the ImageMagick command line tools"
s.email = "aaron@quirkey.com"
s.homepage = "http://quirkey.rubyforge.org"
s.authors = ["Aaron Quint"]
s.version = Imanip::Version

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Aaron Quint"]
s.date = %q{2008-10-16}
s.description = %q{Super-quick image resizing using the ImageMagick command line tools}
s.email = ["aaron@quirkey.com"]
s.extra_rdoc_files = ["History.txt", "License.txt", "Manifest.txt", "README.txt"]
s.files = ["History.txt", "License.txt", "Manifest.txt", "README.txt", "Rakefile", "config/hoe.rb", "config/requirements.rb", "init.rb", "install.rb", "lib/imanip.rb", "lib/imanip/errors.rb", "lib/imanip/image.rb", "lib/imanip/imanip_magick.rb", "lib/imanip/version.rb", "test/landscape_test.jpg", "test/portrait_test.jpg", "test/test_helper.rb", "test/test_imanip_magick.rb", "uninstall.rb"]
s.has_rdoc = true
s.homepage = %q{http://quirkey.rubyforge.org}
s.post_install_message = %q{}
s.rdoc_options = ["--main", "README.txt"]
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.rubyforge_project = %q{quirkey}
s.rubygems_version = %q{1.2.0}
s.summary = %q{Super-quick image resizing using the ImageMagick command line tools}
s.test_files = ["test/test_helper.rb", "test/test_imanip_magick.rb"]

if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 2

if current_version >= 3 then
s.add_development_dependency(%q<hoe>, [">= 1.7.0"])
else
s.add_dependency(%q<hoe>, [">= 1.7.0"])
end
else
s.add_dependency(%q<hoe>, [">= 1.7.0"])
end
end
2 changes: 0 additions & 2 deletions init.rb

This file was deleted.

1 change: 0 additions & 1 deletion install.rb

This file was deleted.

8 changes: 1 addition & 7 deletions lib/imanip/version.rb
@@ -1,9 +1,3 @@
module Imanip #:nodoc:
module VERSION #:nodoc:
MAJOR = 0
MINOR = 1
TINY = 4

STRING = [MAJOR, MINOR, TINY].join('.')
end
Version = '0.1.4'
end
10 changes: 0 additions & 10 deletions script/console

This file was deleted.

14 changes: 0 additions & 14 deletions script/destroy

This file was deleted.

14 changes: 0 additions & 14 deletions script/generate

This file was deleted.

0 comments on commit 7dabbd9

Please sign in to comment.