Skip to content

Commit

Permalink
Merge branch '0.5.0' into custom_options
Browse files Browse the repository at this point in the history
  • Loading branch information
leavez committed Apr 17, 2019
2 parents 3043ef2 + e2b96c4 commit 0af792f
Show file tree
Hide file tree
Showing 18 changed files with 814 additions and 14 deletions.
2 changes: 1 addition & 1 deletion cocoapods-binary.gemspec
Expand Up @@ -13,7 +13,7 @@ Gem::Specification.new do |spec|
spec.homepage = 'https://github.com/leavez/cocoapods-binary'
spec.license = 'MIT'

spec.files = `git ls-files`.split($/).reject{|f| f.start_with? "test/"}
spec.files = `git ls-files`.split($/).reject{|f| f.start_with?("test/") || f.start_with?('demo/')}
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
Expand Down
2 changes: 2 additions & 0 deletions demo/.bundle/config
@@ -0,0 +1,2 @@
---
BUNDLE_PATH: "./.bundler_cache"
50 changes: 50 additions & 0 deletions demo/.gitignore
@@ -0,0 +1,50 @@

# Created by https://www.gitignore.io/api/xcode,cocoapods
# Edit at https://www.gitignore.io/?templates=xcode,cocoapods

### CocoaPods ###
## CocoaPods GitIgnore Template

# CocoaPods - Only use to conserve bandwidth / Save time on Pushing
# - Also handy if you have a large number of dependant pods
# - AS PER https://guides.cocoapods.org/using/using-cocoapods.html NEVER IGNORE THE LOCK FILE
Pods/

### Xcode ###
# Xcode
#
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore

## User settings
xcuserdata/

## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
*.xcscmblueprint
*.xccheckout

## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
build/
DerivedData/
*.moved-aside
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3

### Xcode Patch ###
*.xcodeproj/*
!*.xcodeproj/project.pbxproj
!*.xcodeproj/xcshareddata/
!*.xcworkspace/contents.xcworkspacedata
/*.gcno
**/xcshareddata/WorkspaceSettings.xcsettings

# End of https://www.gitignore.io/api/xcode,cocoapods


# the bundler local cache
.bundler_cache/
7 changes: 7 additions & 0 deletions demo/Gemfile
@@ -0,0 +1,7 @@

# frozen_string_literal: true
source "https://rubygems.org"

gem 'cocoapods', '1.6.1'
gem 'cocoapods-binary', :path => "../"

84 changes: 84 additions & 0 deletions demo/Gemfile.lock
@@ -0,0 +1,84 @@
PATH
remote: ..
specs:
cocoapods-binary (0.4.3)
cocoapods (>= 1.5.0, < 2.0)
fourflusher (~> 2.0)

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.6.1)
activesupport (>= 4.0.2, < 5)
claide (>= 1.0.2, < 2.0)
cocoapods-core (= 1.6.1)
cocoapods-deintegrate (>= 1.0.2, < 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.1, < 2.0)
cocoapods-core (1.6.1)
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.8.2)
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.6.1)
cocoapods-binary!

BUNDLED WITH
2.0.1
12 changes: 12 additions & 0 deletions demo/Podfile
@@ -0,0 +1,12 @@
platform :ios, '9.0'
plugin 'cocoapods-binary'

use_frameworks!
all_binary!


target 'demo' do

pod 'Masonry'

end
16 changes: 16 additions & 0 deletions demo/Podfile.lock
@@ -0,0 +1,16 @@
PODS:
- Masonry (1.1.0)

DEPENDENCIES:
- Masonry

SPEC REPOS:
https://github.com/cocoapods/specs.git:
- Masonry

SPEC CHECKSUMS:
Masonry: 678fab65091a9290e40e2832a55e7ab731aad201

PODFILE CHECKSUM: 5daab9dbab4736d6a1b3df2ffa8d856285c16553

COCOAPODS: 1.6.1

0 comments on commit 0af792f

Please sign in to comment.