Skip to content

Commit ec5e7eb

Browse files
committed
Add podspec
1 parent 5b8a9e0 commit ec5e7eb

3 files changed

Lines changed: 28 additions & 1 deletion

File tree

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,9 @@ xcuserdata/
5555
*.xcscmblueprint
5656
UserInterfaceState.xcuserstate
5757

58-
#Carthage/Build
58+
## Carthage/Build
5959
Carthage
6060

61+
## Develop
62+
poddev
63+

.swift-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
4.0

MoreCodable.podspec

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
Pod::Spec.new do |s|
2+
s.name = 'MoreCodable'
3+
s.version = '0.1.0'
4+
s.summary = 'MoreCodable expands the possibilities of Codable.'
5+
6+
s.description = <<-DESC
7+
MoreCodable expands the possibilities of Codable.
8+
It contains DictionaryEncoder/Decoder, URLQueryItemsEncoder/Decoder, ObjectMerger and so on...
9+
DESC
10+
11+
s.homepage = 'https://github.com/tattn/MoreCodable'
12+
s.license = { :type => 'MIT', :file => 'LICENSE' }
13+
s.author = { 'git' => 'tanakasan2525@gmail.com' }
14+
s.source = { :git => 'https://github.com/tattn/MoreCodable.git', :tag => s.version.to_s }
15+
s.social_media_url = 'https://twitter.com/tanakasan2525'
16+
17+
s.ios.deployment_target = '8.0'
18+
19+
s.source_files = 'Sources/**/*'
20+
21+
s.public_header_files = 'Sources/**/*.h'
22+
s.frameworks = 'Foundation'
23+
end

0 commit comments

Comments
 (0)