Skip to content

Commit 9c39d84

Browse files
Merge branch 'main' into origin
2 parents 01dd242 + 9361558 commit 9c39d84

File tree

12 files changed

+47
-3
lines changed

12 files changed

+47
-3
lines changed

ButtonClickStyle.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Pod::Spec.new do |s|
3232
# s.ios.deployment_target = '14.0'
3333
s.platform = :ios, "14.0"
3434

35-
s.source_files = 'Sources/**/*.{swift}'
35+
s.source_files = 'Source/**/*.{swift}'
3636

3737
# s.resource_bundles = {
3838
# 'ButtonClickStyle' => ['ButtonClickStyle/Assets/*.png']
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
#
2+
# Be sure to run `pod lib lint ButtonClickStyle.podspec' to ensure this is a
3+
# valid spec before submitting.
4+
#
5+
# Any lines starting with a # are optional, but their use is encouraged
6+
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
7+
#
8+
9+
Pod::Spec.new do |s|
10+
s.name = 'ButtonClickStyle'
11+
s.version = '1.0.3'
12+
s.summary = 'This is a customizable designable button view. Inside layer you can style button, create your own subviews. Choose 9 click animation styles'
13+
14+
# This description is used to generate tags and improve search results.
15+
# * Think: What does it do? Why did you write it? What is the focus?
16+
# * Try to keep it short, snappy and to the point.
17+
# * Write the description between the DESC delimiters below.
18+
# * Finally, don't worry about the indent, CocoaPods strips it!
19+
20+
s.description = <<-DESC
21+
'This is a customizable designable button view. Inside layer you can style button, create your own subviews. Choose 9 click animation styles'
22+
DESC
23+
24+
s.homepage = 'https://github.com/mrustaa/ButtonClickStyle'
25+
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
26+
s.license = { :type => 'MIT', :file => 'LICENSE' }
27+
s.author = { 'mrustaa' => 'rustamburger@gmail.com' }
28+
s.source = { :git => 'https://github.com/mrustaa/ButtonClickStyle.git', :tag => s.version.to_s }
29+
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
30+
s.swift_version = "5.0"
31+
32+
s.ios.deployment_target = '14.0'
33+
s.platform = :ios, "14.0"
34+
35+
s.source_files = 'ButtonClickStyle/**/*.{swift}'
36+
37+
# s.resource_bundles = {
38+
# 'ButtonClickStyle' => ['ButtonClickStyle/Assets/*.png']
39+
# }
40+
41+
# s.public_header_files = 'Pod/Classes/**/*.h'
42+
# s.frameworks = 'UIKit', 'MapKit'
43+
# s.dependency 'AFNetworking', '~> 2.3'
44+
end

Example/ButtonClickStyle.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,7 @@
200200
4A14CBC22803437C00DA8A68 /* ButtonClickStyle */ = {
201201
isa = PBXGroup;
202202
children = (
203+
4A62F30B2803115C00534ABA /* Utils */,
203204
4A14CBC32803437C00DA8A68 /* ButtonClick */,
204205
4A14CBCE2803437C00DA8A68 /* ButtonClickStyleAddViewsAnimation.swift */,
205206
4A14CBCF2803437C00DA8A68 /* Animations */,
@@ -259,9 +260,9 @@
259260
4A62F30B2803115C00534ABA /* Utils */ = {
260261
isa = PBXGroup;
261262
children = (
263+
4A62F3102803115C00534ABA /* LoadNib */,
262264
4A62F30C2803115C00534ABA /* Designable */,
263265
4A62F30F2803115C00534ABA /* DispatchQueue.swift */,
264-
4A62F3102803115C00534ABA /* LoadNib */,
265266
4A62F3132803115C00534ABA /* Font */,
266267
4A62F3162803115C00534ABA /* ScreenDevice.swift */,
267268
4A62F3172803115C00534ABA /* UIView+Positions.swift */,
@@ -552,7 +553,6 @@
552553
isa = PBXGroup;
553554
children = (
554555
4A62F3182803115C00534ABA /* UI */,
555-
4A62F30B2803115C00534ABA /* Utils */,
556556
607FACD51AFB9204008FA782 /* AppDelegate.swift */,
557557
607FACD71AFB9204008FA782 /* ViewController.swift */,
558558
4A62F3B82803122700534ABA /* SceneDelegate.swift */,

Example/ButtonClickStyle/Utils/Designable/DesignableLabel.swift renamed to Source/ButtonClickStyle/Utils/Designable/DesignableLabel.swift

File renamed without changes.

Example/ButtonClickStyle/Utils/Designable/DesignableView.swift renamed to Source/ButtonClickStyle/Utils/Designable/DesignableView.swift

File renamed without changes.
File renamed without changes.

Example/ButtonClickStyle/Utils/Font/Proxima Nova Bold.otf renamed to Source/ButtonClickStyle/Utils/Font/Proxima Nova Bold.otf

File renamed without changes.

Example/ButtonClickStyle/Utils/Font/Proxima Nova Semibold.otf renamed to Source/ButtonClickStyle/Utils/Font/Proxima Nova Semibold.otf

File renamed without changes.

Example/ButtonClickStyle/Utils/LoadNib/StoryboardController.swift renamed to Source/ButtonClickStyle/Utils/LoadNib/StoryboardController.swift

File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)