Sha256: 2ee0b84025867350b399fb3088c3a08f662ed1b46add9f799e8a2faaa1004de7

Contents?: true

Size: 838 Bytes

Versions: 1

Compression:

Stored size: 838 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}/**/*"]
  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

1 entries across 1 versions & 1 rubygems

Version Path
load_path_find-0.0.1 Rakefile