Skip to content

Commit

Permalink
Merge pull request #3 from cats-oss/pod
Browse files Browse the repository at this point in the history
Support CocoaPod
  • Loading branch information
shoheiyokoyama authored May 16, 2019
2 parents a43c7a8 + b3af323 commit 2dda7d2
Show file tree
Hide file tree
Showing 6 changed files with 102 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ DerivedData

# Bundler
.bundle
vendor/bundle

# Add this line if you want to avoid checking in source code from Carthage dependencies.
# Carthage/Checkouts
Expand Down
8 changes: 4 additions & 4 deletions Chausie.podspec
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
Pod::Spec.new do |s|
s.name = 'Chausie'
s.version = '0.1.0'
s.summary = 'A short description of Chausie.'
s.homepage = 'https://github.com/shoheiyokoyama/Chausie'
s.version = '0.1.1'
s.summary = 'Chausie provides a customizable view containers that manages navigation between pages of content. :cat:'
s.homepage = 'https://github.com/cats-oss/Chausie'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'shoheiyokoyama' => '[email protected]' }
s.source = { :git => 'https://github.com/shoheiyokoyama/Chausie.git', :tag => s.version.to_s }
s.source = { :git => 'https://github.com/cats-oss/Chausie.git', :tag => s.version.to_s }
s.ios.deployment_target = '11.0'
s.source_files = 'Chausie/**/*.swift'
s.swift_version = '5.0'
Expand Down
3 changes: 3 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
source "https://rubygems.org"

gem 'cocoapods', '1.7.0.rc.2'
76 changes: 76 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
GEM
remote: https://rubygems.org/
specs:
CFPropertyList (3.0.0)
activesupport (4.2.11.1)
i18n (~> 0.7)
minitest (~> 5.1)
thread_safe (~> 0.3, >= 0.3.4)
tzinfo (~> 1.1)
atomos (0.1.3)
claide (1.0.2)
cocoapods (1.7.0.rc.2)
activesupport (>= 4.0.2, < 5)
claide (>= 1.0.2, < 2.0)
cocoapods-core (= 1.7.0.rc.2)
cocoapods-deintegrate (>= 1.0.3, < 2.0)
cocoapods-downloader (>= 1.2.2, < 2.0)
cocoapods-plugins (>= 1.0.0, < 2.0)
cocoapods-search (>= 1.0.0, < 2.0)
cocoapods-stats (>= 1.0.0, < 2.0)
cocoapods-trunk (>= 1.3.1, < 2.0)
cocoapods-try (>= 1.1.0, < 2.0)
colored2 (~> 3.1)
escape (~> 0.0.4)
fourflusher (>= 2.2.0, < 3.0)
gh_inspector (~> 1.0)
molinillo (~> 0.6.6)
nap (~> 1.0)
ruby-macho (~> 1.4)
xcodeproj (>= 1.8.2, < 2.0)
cocoapods-core (1.7.0.rc.2)
activesupport (>= 4.0.2, < 6)
fuzzy_match (~> 2.0.4)
nap (~> 1.0)
cocoapods-deintegrate (1.0.4)
cocoapods-downloader (1.2.2)
cocoapods-plugins (1.0.0)
nap
cocoapods-search (1.0.0)
cocoapods-stats (1.1.0)
cocoapods-trunk (1.3.1)
nap (>= 0.8, < 2.0)
netrc (~> 0.11)
cocoapods-try (1.1.0)
colored2 (3.1.2)
concurrent-ruby (1.1.5)
escape (0.0.4)
fourflusher (2.2.0)
fuzzy_match (2.0.4)
gh_inspector (1.1.3)
i18n (0.9.5)
concurrent-ruby (~> 1.0)
minitest (5.11.3)
molinillo (0.6.6)
nanaimo (0.2.6)
nap (1.1.0)
netrc (0.11.0)
ruby-macho (1.4.0)
thread_safe (0.3.6)
tzinfo (1.2.5)
thread_safe (~> 0.1)
xcodeproj (1.9.0)
CFPropertyList (>= 2.3.3, < 4.0)
atomos (~> 0.1.3)
claide (>= 1.0.2, < 2.0)
colored2 (~> 3.1)
nanaimo (~> 0.2.6)

PLATFORMS
ruby

DEPENDENCIES
cocoapods (= 1.7.0.rc.2)

BUNDLED WITH
1.17.3
11 changes: 10 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,13 @@ test:
-configuration Debug \
-sdk iphonesimulator \
-destination 'platform=iOS Simulator,OS=12.2,name=iPhone 8' \
| xcpretty -c
| xcpretty -c

install-gems:
bundle install --path vendor/bundle

lint-lib:
bundle exec pod lib lint

release-pod:
bundle exec pod trunk push --allow-warnings
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,14 @@ See sample code [here](https://github.com/cats-oss/Chausie/tree/master/Examples/

## Installation

### CocoaPods

Gemini is available through [CocoaPods](http://cocoapods.org). To install it, simply add the following line to your Podfile:

```ruby
pod "Chausie"
```

### Carthage

Add the following line to your `Cartfile`:
Expand Down

0 comments on commit 2dda7d2

Please sign in to comment.