guides icon indicating copy to clipboard operation
guides copied to clipboard

last step should be rake build

Open pathsny opened this issue 15 years ago • 4 comments
trafficstars

not rake install

pathsny avatar Oct 16 '10 05:10 pathsny

There is no mention of rake install in the guide :( Could you please provide further context for this?

radar avatar Oct 16 '10 08:10 radar

I'm so sorry I meant rake release.

running rake release gives me rake aborted! Don't know how to build task 'release'

but running rake build gives me the gem in the pkg directory

pathsny avatar Oct 16 '10 08:10 pathsny

That's strange. What's your Rakefile look like?

radar avatar Oct 16 '10 08:10 radar

it was generated by bundler and I added a rspec task. This is it

require 'bundler' require 'rspec' require 'rspec/core/rake_task' Bundler::GemHelper.install_tasks

RSpec::Core::RakeTask.new do |t| t.rspec_opts = %w(-fs --color) end

pathsny avatar Oct 16 '10 09:10 pathsny