Skip to content

Commit

Permalink
fixing podspec
Browse files Browse the repository at this point in the history
  • Loading branch information
rafiki270 committed Apr 4, 2018
1 parent b3f7486 commit 73a45b9
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 187 deletions.
57 changes: 30 additions & 27 deletions Reloaded.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,36 +7,39 @@
#

Pod::Spec.new do |s|
s.name = 'Reloaded'
s.version = '0.0.1'
s.summary = 'A short description of Reloaded.'

# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
# * Try to keep it short, snappy and to the point.
# * Write the description between the DESC delimiters below.
# * Finally, don't worry about the indent, CocoaPods strips it!

s.description = <<-DESC
TODO: Add long description of the pod here.
s.name = 'Reloaded'
s.version = '1.0.0'
s.summary = 'Reloaded! Swift "ORM like" abstraction layer for CoreData'

# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
# * Try to keep it short, snappy and to the point.
# * Write the description between the DESC delimiters below.
# * Finally, don't worry about the indent, CocoaPods strips it!

s.description = <<-DESC
Using Reloaded is super simple, in the basic configuration you don't have to write a single line of setup you would probably otherwise have in your AppDelegate but you can obviously still leverage your apps delegate methods as you would otherwise.
DESC

s.homepage = 'https://github.com/LiveUI/Reloaded'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'rafiki270' => '[email protected]' }
s.source = { :git => 'https://github.com/LiveUI/Reloaded.git', :tag => s.version.to_s }
# s.social_media_url = 'https://twitter.com/rafiki270'
s.homepage = 'https://github.com/LiveUI/Reloaded'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'rafiki270' => '[email protected]' }
s.source = { :git => 'https://github.com/LiveUI/Reloaded.git', :tag => s.version.to_s }
# s.social_media_url = 'https://twitter.com/rafiki270'

s.ios.deployment_target = '10.0'
s.tvos.deployment_target = '10.0'
s.macos.deployment_target = '10.12'
s.watchos.deployment_target = '4.3'

s.ios.deployment_target = '10.0'
s.source_files = 'Classes/**/*'

s.source_files = 'Classes/**/*'

# s.resource_bundles = {
# 'Reloaded' => ['Reloaded/Assets/*.png']
# }
# s.resource_bundles = {
# 'Reloaded' => ['Reloaded/Assets/*.png']
# }

# s.public_header_files = 'Pod/Classes/**/*.h'
# s.frameworks = 'UIKit', 'MapKit'
# s.dependency 'AFNetworking', '~> 2.3'
# s.public_header_files = 'Pod/Classes/**/*.h'
# s.frameworks = 'UIKit', 'MapKit'
# s.dependency 'AFNetworking', '~> 2.3'
end

This file was deleted.

This file was deleted.

0 comments on commit 73a45b9

Please sign in to comment.