14 lines
443 B
Ruby
14 lines
443 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'FMDB'
|
|
s.version = '2.0'
|
|
s.summary = 'A Cocoa / Objective-C wrapper around SQLite.'
|
|
s.homepage = 'https://github.com/ccgus/fmdb'
|
|
s.license = 'MIT'
|
|
s.author = { 'August Mueller' => 'gus@flyingmeat.com' }
|
|
s.source = { :git => 'https://github.com/ccgus/fmdb.git',
|
|
:tag => 'v2.0' }
|
|
|
|
s.source_files = FileList['src/FM*.{h,m}'].exclude(/fmdb\.m/)
|
|
s.library = 'sqlite3'
|
|
end
|