Sha256: 07892fd75ef6c5c39548fd4297ff64e3dc721d0a2072c943d915c520a9ef4202
Contents?: true
Size: 878 Bytes
Versions: 4
Compression:
Stored size: 878 Bytes
Contents
# encoding: utf-8 begin require 'jeweler' Jeweler::Tasks.new do |s| s.name = "load_path_find" s.description = s.summary = "Convenient way to find stuff on the load path." s.email = "joshbuddy@gmail.com" s.homepage = "http://github.com/joshbuddy/load_path_find" s.authors = "Joshua Hull" s.files = FileList["[A-Z]*", "{lib,spec,rails}/**/*"] s.add_dependency 'dirge', '>=0.0.3' end Jeweler::GemcutterTasks.new rescue LoadError puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com" end require 'spec' require 'spec/rake/spectask' task :spec => 'spec:all' namespace(:spec) do Spec::Rake::SpecTask.new(:all) do |t| t.spec_opts ||= [] t.spec_opts << "-rubygems" t.spec_opts << "--options" << "spec/spec.opts" t.spec_files = FileList['spec/**/*_spec.rb'] end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
load_path_find-0.0.5 | Rakefile |
load_path_find-0.0.4 | Rakefile |
load_path_find-0.0.3 | Rakefile |
load_path_find-0.0.2 | Rakefile |