18 lines
720 B
Ruby
18 lines
720 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'iActiveRecord'
|
|
s.version = '1.1.1'
|
|
s.license = 'MIT'
|
|
s.summary = 'ActiveRecord for iOS without CoreData, only SQLite.'
|
|
s.homepage = 'https://github.com/AlexDenisov/iActiveRecord'
|
|
s.description = %{
|
|
ActiveRecord for iOS without CoreData. Only SQLite.
|
|
For more details check Wiki on Github.
|
|
}
|
|
s.author = { 'Alex Denisov' => '1101.debian@gmail.com' }
|
|
s.source = { :git => 'https://github.com/AlexDenisov/iActiveRecord.git', :tag => '1.1.1'}
|
|
s.platform = :ios
|
|
s.source_files = 'iActiveRecord/*.{c,h,m}', 'iActiveRecord/deps/*.{c,h,m}'
|
|
s.library = 'sqlite3'
|
|
s.xcconfig = { 'GCC_PREPROCESSOR_DEFINITIONS' => 'SQLITE_CORE SQLITE_ENABLE_UNICODE' }
|
|
end
|