Last active
February 19, 2017 03:03
-
-
Save speaktoalvin/32cd0bb1b0aeccbe39b26ef6e34ed446 to your computer and use it in GitHub Desktop.
Revisions
-
Alvin Varghese revised this gist
Feb 19, 2017 . 1 changed file with 2 additions and 7 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -24,21 +24,16 @@ Pod::Spec.new do |s| # For full-scale integration, such as the iOS app s.subspec 'MainSpec' do |core| # You can specify other CocoaPods rules in here core.resource_bundles = { 'MyFramework' => ['MyFramework/Assets/*.{jpg,png,realm}'] } end # For minimal integrations, like the watchOS widget s.subspec 'LiteSpec' do |lite| # You can specify other CocoaPod pods rules in here lite.resource_bundles = { 'MyFramework' => ['MyFramework/Assets/*.{realm}'] } -
Alvin Varghese created this gist
Feb 19, 2017 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,48 @@ Pod::Spec.new do |s| s.name = 'MyFramework' s.version = '0.1.0' s.summary = 'An iOS, watchOS and tvOS framework' s.description = <<-DESC An iOS, watchOS and tvOS framework DESC s.homepage = 'https://github.com/aaalveee/MyFramework' s.license = { :type => 'MIT', :file => 'LICENSE' } s.author = { 'Alvin Varghese' => '[email protected]' } s.source = { :git => 'https://github.com/aaalveee/MyFramework.git', :tag => s.version.to_s } s.ios.deployment_target = '10.2' s.watchos.deployment_target = '3.1' s.tvos.deployment_target = '10.1' s.source_files = 'MyFramework/Classes/**/*' s.frameworks = 'Foundation' s.dependency 'RealmSwift' s.source_files = 'MyFramework/Classes/*.{swift}' s.default_subspec = 'MainSpec' # For full-scale integration, such as the iOS app s.subspec 'MainSpec' do |core| # You can specify CocoaPod pod rules in here core.resource_bundles = { 'MyFramework' => ['MyFramework/Assets/*.{jpg,png,realm}'] } end # For minimal integrations, like the watchOS widget s.subspec 'LiteSpec' do |lite| # You can specify CocoaPod pod rules in here lite.resource_bundles = { 'MyFramework' => ['MyFramework/Assets/*.{realm}'] } end end