Skip to content
This repository has been archived by the owner on Nov 22, 2020. It is now read-only.

Commit

Permalink
Updated Podfile, Gemfile, and README
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtSabintsev committed Sep 14, 2016
1 parent 65848c2 commit de05136
Show file tree
Hide file tree
Showing 3 changed files with 76 additions and 13 deletions.
69 changes: 69 additions & 0 deletions Gemfile.lock
@@ -0,0 +1,69 @@
GEM
remote: https://rubygems.org/
specs:
activesupport (4.2.7.1)
i18n (~> 0.7)
json (~> 1.7, >= 1.7.7)
minitest (~> 5.1)
thread_safe (~> 0.3, >= 0.3.4)
tzinfo (~> 1.1)
claide (1.0.0)
cocoapods (1.1.0.rc.2)
activesupport (>= 4.0.2, < 5)
claide (>= 1.0.0, < 2.0)
cocoapods-core (= 1.1.0.rc.2)
cocoapods-deintegrate (>= 1.0.1, < 2.0)
cocoapods-downloader (>= 1.1.1, < 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.0.0, < 2.0)
cocoapods-try (>= 1.1.0, < 2.0)
colored (~> 1.2)
escape (~> 0.0.4)
fourflusher (~> 1.0.1)
gh_inspector (~> 1.0)
molinillo (~> 0.5.1)
nap (~> 1.0)
xcodeproj (>= 1.3.1, < 2.0)
cocoapods-core (1.1.0.rc.2)
activesupport (>= 4.0.2, < 5)
fuzzy_match (~> 2.0.4)
nap (~> 1.0)
cocoapods-deintegrate (1.0.1)
cocoapods-downloader (1.1.1)
cocoapods-plugins (1.0.0)
nap
cocoapods-search (1.0.0)
cocoapods-stats (1.0.0)
cocoapods-trunk (1.0.0)
nap (>= 0.8, < 2.0)
netrc (= 0.7.8)
cocoapods-try (1.1.0)
colored (1.2)
escape (0.0.4)
fourflusher (1.0.1)
fuzzy_match (2.0.4)
gh_inspector (1.0.2)
i18n (0.7.0)
json (1.8.3)
minitest (5.9.0)
molinillo (0.5.1)
nap (1.1.0)
netrc (0.7.8)
thread_safe (0.3.5)
tzinfo (1.2.2)
thread_safe (~> 0.1)
xcodeproj (1.3.1)
activesupport (>= 3)
claide (>= 1.0.0, < 2.0)
colored (~> 1.2)

PLATFORMS
ruby

DEPENDENCIES
cocoapods (= 1.1.0.rc.2)

BUNDLED WITH
1.13.0
2 changes: 1 addition & 1 deletion Magic.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "Magic"
s.version = "2.1.0"
s.version = "3.0.0"
s.summary = "An alternative for Swift's print() along the lines of DLog."

s.description = <<-DESC
Expand Down
18 changes: 6 additions & 12 deletions README.md
Expand Up @@ -16,6 +16,9 @@ This extension was previously known as **PrintlnMagic**.
## Installation

### **CocoaPods**

For Swift 3 support:

``` ruby
pod 'Magic'
```
Expand All @@ -26,13 +29,10 @@ For Swift 2.3 support:
pod 'Magic', :git => 'https://github.com/ArtSabintsev/Magic.git', :branch => 'swift2.3'
```

For Swift 3 support:
### **Carthage**

```ruby
pod 'Magic', :git => 'https://github.com/ArtSabintsev/Magic.git', :branch => 'swift3'
```
For Swift 3 support:

### **Carthage**
``` swift
github "ArtSabintsev/Magic"
```
Expand All @@ -43,15 +43,9 @@ For Swift 2.3 support:
github "ArtSabintsev/Magic" "swift2.3"
```

For Swift 3 support:

``` swift
github "ArtSabintsev/Magic" "swift3"
```

### Swift Package Manager
``` swift
.Package(url: "https://github.com/ArtSabintsev/Magic.git", majorVersion: 2)
.Package(url: "https://github.com/ArtSabintsev/Magic.git", majorVersion: 3)
```

## Setup
Expand Down

0 comments on commit de05136

Please sign in to comment.