Rakefile in cocoapods-keys-1.2.1 vs Rakefile in cocoapods-keys-1.3.0
- old
+ new
@@ -4,11 +4,12 @@
dump_keys_source_file = "#{dump_keys_tool}.m"
file dump_keys_tool => dump_keys_source_file do
sh "xcrun clang -framework Foundation #{dump_keys_source_file} -o #{dump_keys_tool}"
end
-desc "Run tests"
+desc 'Run tests'
task :spec => dump_keys_tool do
- sh "bundle exec rspec spec/*_spec.rb"
+ sh 'bundle exec rspec spec/*_spec.rb'
+ sh 'bundle exec rubocop lib spec Rakefile'
end
task :default => :spec