Skip to content

Commit

Permalink
Merge pull request #62 from CocoaPods/1_0
Browse files Browse the repository at this point in the history
Prepare for 1.0
  • Loading branch information
orta authored Apr 9, 2018
2 parents afcaa4d + 552a373 commit 97e3169
Show file tree
Hide file tree
Showing 3 changed files with 63 additions and 45 deletions.
79 changes: 40 additions & 39 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,78 +1,79 @@
PATH
remote: .
specs:
cocoapods-rome (0.8.0)
cocoapods-rome (1.0.0)
cocoapods (>= 1.1.0, < 2.0)
fourflusher (~> 2.0)

GEM
remote: https://rubygems.org/
specs:
CFPropertyList (2.3.5)
activesupport (4.2.7.1)
CFPropertyList (3.0.0)
activesupport (4.2.10)
i18n (~> 0.7)
json (~> 1.7, >= 1.7.7)
minitest (~> 5.1)
thread_safe (~> 0.3, >= 0.3.4)
tzinfo (~> 1.1)
atomos (0.1.2)
bacon (1.2.0)
claide (1.0.1)
cocoapods (1.2.0)
claide (1.0.2)
cocoapods (1.5.0)
activesupport (>= 4.0.2, < 5)
claide (>= 1.0.1, < 2.0)
cocoapods-core (= 1.2.0)
cocoapods-deintegrate (>= 1.0.1, < 2.0)
cocoapods-downloader (>= 1.1.3, < 2.0)
claide (>= 1.0.2, < 2.0)
cocoapods-core (= 1.5.0)
cocoapods-deintegrate (>= 1.0.2, < 2.0)
cocoapods-downloader (>= 1.2.0, < 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.1.2, < 2.0)
cocoapods-trunk (>= 1.3.0, < 2.0)
cocoapods-try (>= 1.1.0, < 2.0)
colored (~> 1.2)
colored2 (~> 3.1)
escape (~> 0.0.4)
fourflusher (~> 2.0.1)
gh_inspector (~> 1.0)
molinillo (~> 0.5.5)
molinillo (~> 0.6.5)
nap (~> 1.0)
ruby-macho (~> 0.2.5)
xcodeproj (>= 1.4.1, < 2.0)
cocoapods-core (1.2.0)
activesupport (>= 4.0.2, < 5)
ruby-macho (~> 1.1)
xcodeproj (>= 1.5.7, < 2.0)
cocoapods-core (1.5.0)
activesupport (>= 4.0.2, < 6)
fuzzy_match (~> 2.0.4)
nap (~> 1.0)
cocoapods-deintegrate (1.0.1)
cocoapods-downloader (1.1.3)
cocoapods-deintegrate (1.0.2)
cocoapods-downloader (1.2.0)
cocoapods-plugins (1.0.0)
nap
cocoapods-search (1.0.0)
cocoapods-stats (1.0.0)
cocoapods-trunk (1.1.2)
cocoapods-trunk (1.3.0)
nap (>= 0.8, < 2.0)
netrc (= 0.7.8)
netrc (~> 0.11)
cocoapods-try (1.1.0)
colored (1.2)
colored2 (3.1.2)
concurrent-ruby (1.0.5)
escape (0.0.4)
fourflusher (2.0.1)
fuzzy_match (2.0.4)
gh_inspector (1.0.3)
i18n (0.8.0)
json (1.8.6)
minitest (5.10.1)
molinillo (0.5.5)
nanaimo (0.2.3)
gh_inspector (1.1.3)
i18n (0.9.5)
concurrent-ruby (~> 1.0)
minitest (5.11.3)
molinillo (0.6.5)
nanaimo (0.2.5)
nap (1.1.0)
netrc (0.7.8)
netrc (0.11.0)
rake (11.2.2)
ruby-macho (0.2.6)
thread_safe (0.3.5)
tzinfo (1.2.2)
ruby-macho (1.1.0)
thread_safe (0.3.6)
tzinfo (1.2.5)
thread_safe (~> 0.1)
xcodeproj (1.4.2)
CFPropertyList (~> 2.3.3)
activesupport (>= 3)
claide (>= 1.0.1, < 2.0)
colored (~> 1.2)
nanaimo (~> 0.2.3)
xcodeproj (1.5.7)
CFPropertyList (>= 2.3.3, < 4.0)
atomos (~> 0.1.2)
claide (>= 1.0.2, < 2.0)
colored2 (~> 3.1)
nanaimo (~> 0.2.4)

PLATFORMS
ruby
Expand All @@ -84,4 +85,4 @@ DEPENDENCIES
rake

BUNDLED WITH
1.14.3
1.15.4
27 changes: 22 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,7 @@ Write a simple Podfile like this:
```ruby
platform :osx, '10.10'

plugin 'cocoapods-rome' {
dsym: true,
configuration: 'Release'
}
plugin 'cocoapods-rome'

target 'caesar' do
pod 'Alamofire'
Expand All @@ -40,6 +37,26 @@ and you will end up with dynamic frameworks:
$ tree Rome/
Rome/
└── Alamofire.framework
```

For your production builds, when you want dSYMs created and stored:

```ruby
platform :osx, '10.10'

plugin 'cocoapods-rome', {
dsym: true,
configuration: 'Release'
}

target 'caesar' do
pod 'Alamofire'
end
```

Resulting in:

```
$ tree dSYM/
dSYM/
├── iphoneos
Expand All @@ -62,7 +79,7 @@ dSYM/

The plugin allows you to provides hooks that will be called during the installation process.

### pre_compile
### `pre_compile`

This hook allows you to make any last changes to the generated Xcode project before the compilation of frameworks begins.

Expand Down
2 changes: 1 addition & 1 deletion lib/cocoapods-rome/gem_version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module CocoapodsRome
VERSION = "0.8.1"
VERSION = "1.0.0"
end

0 comments on commit 97e3169

Please sign in to comment.