Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/dart3a' into dart3a
Browse files Browse the repository at this point in the history
  • Loading branch information
alextekartik committed Nov 6, 2024
2 parents d8dca31 + 10d7613 commit b084641
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
5 changes: 3 additions & 2 deletions sqflite_darwin/darwin/sqflite_darwin.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -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' => '[email protected]' }
s.source = { :http => 'https://github.com/tekartik/sqflite/tree/master/sqflite_darwin' }
Expand Down
6 changes: 6 additions & 0 deletions sqflite_darwin/example/tool/run_podspec_lint.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import 'package:process_run/process_run.dart';

Future<void> main(List<String> args) async {
var shell = Shell(workingDirectory: '../darwin');
await shell.run('pod spec lint --verbose');
}

0 comments on commit b084641

Please sign in to comment.