Skip to content

Commit

Permalink
Add november podspec
Browse files Browse the repository at this point in the history
  • Loading branch information
ManueGE committed Oct 11, 2016
1 parent d5eb6a1 commit 1ca6153
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions November.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
Pod::Spec.new do |spec|

spec.name = "November"
spec.version = "1.0.0"
spec.summary = "A handy API to convert `Date` to `String` and back written in swift"
spec.description = <<-DESC
November provides a set of extensions to `Date` and `DateFormatter` to build a nice API which simplify the conversion from `Date` to `Strin and back.
Creating a `NSDateFormatter` is an expensive task. For this reason, **November** takes care of caching the created `DateFormatter` in order to reuse them along the lifecycle of your app.
DESC
spec.homepage = "https://github.com/ManueGE/November/"
spec.license = "MIT"


spec.author = "Manuel García-Estañ"
spec.social_media_url = "http://twitter.com/ManueGE"

spec.platform = :ios, "8.0"
spec.source = { :git => "https://github.com/ManueGE/November.git", :tag => "#{spec.version}" }

spec.requires_arc = true
spec.framework = "Foundation"

spec.source_files = "November/November/*.{swift}"

spec.pod_target_xcconfig = { 'SWIFT_VERSION' => '3.0' }

end

0 comments on commit 1ca6153

Please sign in to comment.