Sha256: ae25348c1db417ea36358122e8fb11dda99ab7482ce5c0d50c3def836eb19197
Contents?: true
Size: 808 Bytes
Versions: 2
Compression:
Stored size: 808 Bytes
Contents
begin require 'jeweler' Jeweler::Tasks.new do |s| s.name = "fuzzy_hash" s.description = s.summary = "A weird hash with special semantics for regex keys" s.email = "joshbuddy@gmail.com" s.homepage = "http://github.com/joshbuddy/fuzzy_hash" s.authors = ["Joshua Hull"] s.files = FileList["[A-Z]*", "{lib,spec}/**/*"] end 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
joshbuddy-fuzzy_hash-0.0.1 | Rakefile |
joshbuddy-fuzzy_hash-0.0.2 | Rakefile |