Method: Toe::GemTask#gemspec
- Defined in:
- lib/toe/gem_task.rb
#gemspec(path) ⇒ Object
11 12 13 14 15 16 17 |
# File 'lib/toe/gem_task.rb', line 11 def gemspec(path) unless File.exists?(path) raise "no such gemspec: #{path}" end eval(File.read(path), TOPLEVEL_BINDING, path) end |