Rakefile in vkontakte_api-1.1 vs Rakefile in vkontakte_api-1.2

- old
+ new

@@ -1,13 +1,13 @@ require 'bundler/gem_tasks' desc 'Fires up the console with preloaded vkontakte_api' task :console do - sh 'pry -I ./lib/ -r ./lib/vkontakte_api.rb' + sh 'pry -I ./lib -r ./lib/vkontakte_api' end require 'rspec/core/rake_task' RSpec::Core::RakeTask.new do |t| t.rspec_opts = '--color --format doc' end -task :default => :spec +task default: :spec