diff --git a/sqflite_darwin/darwin/sqflite_darwin.podspec b/sqflite_darwin/darwin/sqflite_darwin.podspec index d14cbac6..60a3a3e4 100644 --- a/sqflite_darwin/darwin/sqflite_darwin.podspec +++ b/sqflite_darwin/darwin/sqflite_darwin.podspec @@ -6,9 +6,10 @@ Pod::Spec.new do |s| s.version = '0.0.4' s.summary = 'An iOS and macOS implementation for the sqflite plugin.' s.description = <<-DESC -Access SQLite database. + An iOS and macOS implementation of the Flutter sqflite plugin to + Access SQLite database. DESC - s.homepage = 'https://github.com/tekartik/sqflite/sqflite_darwin' + s.homepage = 'https://github.com/tekartik/sqflite/tree/master/sqflite_darwin' s.license = { :type => 'BSD', :file => '../LICENSE' } s.author = { 'Tekartik' => 'alex@tekartik.com' } s.source = { :http => 'https://github.com/tekartik/sqflite/tree/master/sqflite_darwin' } diff --git a/sqflite_darwin/example/tool/run_podspec_lint.dart b/sqflite_darwin/example/tool/run_podspec_lint.dart new file mode 100644 index 00000000..74f54c21 --- /dev/null +++ b/sqflite_darwin/example/tool/run_podspec_lint.dart @@ -0,0 +1,6 @@ +import 'package:process_run/process_run.dart'; + +Future main(List args) async { + var shell = Shell(workingDirectory: '../darwin'); + await shell.run('pod spec lint --verbose'); +}