Skip to content

Commit

Permalink
Added cocoapods specs
Browse files Browse the repository at this point in the history
  • Loading branch information
franzhcs committed Aug 5, 2013
1 parent a475c39 commit 0a1f612
Show file tree
Hide file tree
Showing 2 changed files with 124 additions and 0 deletions.
105 changes: 105 additions & 0 deletions FFCircularProgressView.podspec
@@ -0,0 +1,105 @@
#
# Be sure to run `pod spec lint FFCircularProgressView.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# To learn more about the attributes see http://docs.cocoapods.org/specification.html
#
Pod::Spec.new do |s|
s.name = "FFCircularProgressView"
s.version = "0.1"
s.summary = "An iOS 7-inspired blue circular progress view."
s.description = <<-DESC
This circular progress view is inspired by the new progress view in the App Store, iOS 7.
Also the colors are taken from the new mobile operative system by Apple Inc.
The progress view supports spinning and animates transition between progress 0 to 1.
DESC
s.homepage = "https://github.com/elbryan/FFCircularProgressView"
s.screenshots = "https://raw.github.com/elbryan/FFCircularProgressView/master/Media/ss1.png", "https://raw.github.com/elbryan/FFCircularProgressView/master/Media/ss2.png",
"https://raw.github.com/elbryan/FFCircularProgressView/master/Media/ss3.png", "https://raw.github.com/elbryan/FFCircularProgressView/master/Media/ss4.png"

# Specify the license type. CocoaPods detects automatically the license file if it is named
# 'LICENCE*.*' or 'LICENSE*.*', however if the name is different, specify it.
s.license = { :type => 'MIT', :file => 'LICENSE' }
# s.license = { :type => 'MIT (example)', :file => 'FILE_LICENSE' }

# Specify the authors of the library, with email addresses. You can often find
# the email addresses of the authors by using the SCM log. E.g. $ git log
#
s.author = { "Fabiano Francesconi" => "fabiano.francesconi@gmail.com" }
# s.authors = { "Fabiano Francesconi" => "fabiano.francesconi@gmail.com", "other author" => "and email address" }
#
# If absolutely no email addresses are available, then you can use this form instead.
#
# s.author = 'Fabiano Francesconi', 'other author'

# Specify the location from where the source should be retrieved.
#
s.source = { :git => "https://github.com/elbryan/FFCircularProgressView", :tag => s.version.to_s }


# If this Pod runs only on iOS or OS X, then specify the platform and
# the deployment target.
#
s.platform = :ios

# ――― MULTI-PLATFORM VALUES ――――――――――――――――――――――――――――――――――――――――――――――――― #

# If this Pod runs on both platforms, then specify the deployment
# targets.
#
# s.ios.deployment_target = '5.0'
# s.osx.deployment_target = '10.7'

# A list of file patterns which select the source files that should be
# added to the Pods project. If the pattern is a directory then the
# path will automatically have '*.{h,m,mm,c,cpp}' appended.
#
s.source_files = '*.{h,m}'
# s.exclude_files = 'Classes/Exclude'

# A list of file patterns which select the header files that should be
# made available to the application. If the pattern is a directory then the
# path will automatically have '*.h' appended.
#
# If you do not explicitly set the list of public header files,
# all headers of source_files will be made public.
#
# s.public_header_files = 'Classes/**/*.h'

# A list of resources included with the Pod. These are copied into the
# target bundle with a build phase script.
#
# s.resource = "icon.png"
# s.resources = "Resources/*.png"

# A list of paths to preserve after installing the Pod.
# CocoaPods cleans by default any file that is not used.
# Please don't include documentation, example, and test files.
#
# s.preserve_paths = "FilesToSave", "MoreFilesToSave"

# Specify a list of frameworks that the application needs to link
# against for this Pod to work.
#
s.framework = 'CoreGraphics', 'QuartzCore'
# s.frameworks = 'SomeFramework', 'AnotherFramework'

# Specify a list of libraries that the application needs to link
# against for this Pod to work.
#
# s.library = 'iconv'
# s.libraries = 'iconv', 'xml2'

# If this Pod uses ARC, specify it like so.
#
s.requires_arc = true

# If you need to specify any other build settings, add them to the
# xcconfig hash.
#
# s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2' }

# Finally, specify any Pods that this Pod depends on.
#
# s.dependency 'JSONKit', '~> 1.4'
end
19 changes: 19 additions & 0 deletions LICENSE
@@ -0,0 +1,19 @@
Copyright (c) 2013 Fabiano Francesconi

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

0 comments on commit 0a1f612

Please sign in to comment.