Skip to content

Commit fe57cdb

Browse files
committed
ready for pods
1 parent 6e3329c commit fe57cdb

File tree

5 files changed

+46
-0
lines changed

5 files changed

+46
-0
lines changed

.swift-version

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

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
language: objective-c
2+
osx_image: xcode8
3+
script:
4+
- xcodebuild -scheme 'Objectification' -sdk iphonesimulator CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO test | xcpretty -c

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Updates
2+
## [v0.1.1](https://github.com/younatics/Stringfication/releases/tag/0.1.0)
3+
* Get pod website
4+
5+
## [v0.1.0](https://github.com/younatics/Stringfication/releases/tag/0.1.0)
6+
* Initial Commit

Objectification.podspec

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
#
2+
# Be sure to run `pod lib lint YNDropDownMenu.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 http://guides.cocoapods.org/syntax/podspec.html
7+
#
8+
9+
Pod::Spec.new do |s|
10+
s.name = 'Objectification'
11+
s.version = '0.1.0'
12+
s.summary = 'Get all your object when string is contained!'
13+
14+
s.description = <<-DESC
15+
Magic will be happened when you use Objectification!
16+
DESC
17+
18+
s.homepage = 'https://github.com/younatics/Objectification'
19+
s.license = { :type => 'MIT', :file => 'LICENSE' }
20+
s.author = { "Seungyoun Yi" => "[email protected]" }
21+
22+
s.source = { :git => 'https://github.com/younatics/Objectification.git', :tag => s.version.to_s }
23+
s.source_files = 'Objectification/*.swift'
24+
25+
s.ios.deployment_target = '8.0'
26+
27+
# s.public_header_files = 'Pod/Classes/**/*.h'
28+
s.frameworks = 'Foundation'
29+
s.requires_arc = true
30+
end

Package.swift

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import PackageDescription
2+
3+
let package = Package(
4+
name: "Objectification"
5+
)

0 commit comments

Comments
 (0)