Sha256: ba8dbbdb54d4594596a4fd866d6b36fb530f4ca78025eb0a47c034b782f54d4b
Contents?: true
Size: 844 Bytes
Versions: 1
Compression:
Stored size: 844 Bytes
Contents
require 'rubygems' require 'lib/morph' begin require 'spec' rescue LoadError puts "\nYou need to install the rspec gem to perform meta operations on this gem" puts " sudo gem install rspec\n" end begin require 'echoe' Echoe.new("morph", Morph::VERSION) do |m| m.author = ["Rob McKinnon"] m.email = ["rob ~@nospam@~ rubyforge.org"] m.description = File.readlines("README").first m.rubyforge_name = "morph" m.rdoc_options << '--inline-source' m.rdoc_pattern = ["README", "CHANGELOG", "LICENSE"] m.dependencies = ["activesupport >=2.0.2"] end rescue LoadError puts "\nYou need to install the echoe gem to perform meta operations on this gem" puts " sudo gem install echoe\n\n" end desc "Open an irb session preloaded with this library" task :console do sh "irb -rubygems -r ./lib/morph.rb" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
morph-0.3.2 | Rakefile |