Rakefile in rbtelldus-0.1.0 vs Rakefile in rbtelldus-0.1.1

- old
+ new

@@ -20,18 +20,18 @@ end end desc 'build rtelldus for testing' task 'telldus:test' => 'telldus_core' do - Dir.chdir('ext/telldus') do + Dir.chdir('ext/rbtelldus') do run "ruby extconf.rb --with-telldus-dir=../../spec/mocks/telldus-mock" run "make" end end desc 'build telldus' task :telldus do - Dir.chdir('lib/telldus/ext') do + Dir.chdir('lib/rbtelldus/ext') do run "ruby extconf.rb" run "make" end end end