Skip to content

Commit cfb8577

Browse files
committed
Merge pull request #45 from usebutton/chris/fix_gemfile
Update dependencies to fix pod try
2 parents 5dafc50 + 46d1b33 commit cfb8577

File tree

4 files changed

+49
-24
lines changed

4 files changed

+49
-24
lines changed

DeepLinkSDK.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "DeepLinkSDK"
3-
s.version = "0.2.5"
3+
s.version = "0.2.6"
44
s.summary = "A splendid route-matching, block-based way to handle your deep links."
55
s.description = <<-DESC
66
The Button DeepLink SDK is a splendid route-handling block-based way to handle deep links. Rather than decide how to format your URLs, parse them, pass data, and navigate to specific content or perform actions, this SDK and a few lines of code will get you on your way.

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
source 'https://rubygems.org'
22

33
gem 'xcpretty'
4+
gem 'cocoapods'
45
gem 'slather'
5-
gem 'synx'

Gemfile.lock

Lines changed: 43 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,66 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
activesupport (4.1.8)
5-
i18n (~> 0.6, >= 0.6.9)
4+
activesupport (4.2.1)
5+
i18n (~> 0.7)
66
json (~> 1.7, >= 1.7.7)
77
minitest (~> 5.1)
8-
thread_safe (~> 0.1)
8+
thread_safe (~> 0.3, >= 0.3.4)
99
tzinfo (~> 1.1)
10-
clamp (0.6.3)
10+
claide (0.8.1)
11+
clamp (0.6.5)
12+
cocoapods (0.37.1)
13+
activesupport (>= 3.2.15)
14+
claide (~> 0.8.1)
15+
cocoapods-core (= 0.37.1)
16+
cocoapods-downloader (~> 0.9.0)
17+
cocoapods-plugins (~> 0.4.2)
18+
cocoapods-trunk (~> 0.6.0)
19+
cocoapods-try (~> 0.4.4)
20+
colored (~> 1.2)
21+
escape (~> 0.0.4)
22+
molinillo (~> 0.2.3)
23+
nap (~> 0.8)
24+
xcodeproj (~> 0.24.1)
25+
cocoapods-core (0.37.1)
26+
activesupport (>= 3.2.15)
27+
fuzzy_match (~> 2.0.4)
28+
nap (~> 0.8.0)
29+
cocoapods-downloader (0.9.0)
30+
cocoapods-plugins (0.4.2)
31+
nap
32+
cocoapods-trunk (0.6.0)
33+
nap (>= 0.8)
34+
netrc (= 0.7.8)
35+
cocoapods-try (0.4.4)
1136
colored (1.2)
12-
colorize (0.7.3)
13-
i18n (0.6.11)
14-
json (1.8.1)
37+
escape (0.0.4)
38+
fuzzy_match (2.0.4)
39+
i18n (0.7.0)
40+
json (1.8.2)
1541
mini_portile (0.6.2)
16-
minitest (5.4.3)
42+
minitest (5.6.1)
43+
molinillo (0.2.3)
44+
nap (0.8.0)
45+
netrc (0.7.8)
1746
nokogiri (1.6.6.2)
1847
mini_portile (~> 0.6.0)
19-
slather (1.5.5)
48+
slather (1.7.1)
2049
clamp (~> 0.6)
2150
nokogiri (~> 1.6.3)
22-
xcodeproj (~> 0.20.0)
23-
synx (0.0.54)
24-
clamp (~> 0.6)
25-
colorize (~> 0.7)
26-
xcodeproj (~> 0.20.0)
27-
thread_safe (0.3.4)
51+
xcodeproj (~> 0.24.1)
52+
thread_safe (0.3.5)
2853
tzinfo (1.2.2)
2954
thread_safe (~> 0.1)
30-
xcodeproj (0.20.2)
55+
xcodeproj (0.24.1)
3156
activesupport (>= 3)
3257
colored (~> 1.2)
33-
xcpretty (0.1.7)
58+
xcpretty (0.1.10)
3459

3560
PLATFORMS
3661
ruby
3762

3863
DEPENDENCIES
64+
cocoapods
3965
slather
40-
synx
4166
xcpretty

Podfile.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PODS:
2-
- DeepLinkSDK (0.2.5)
2+
- DeepLinkSDK (0.2.6)
33
- Expecta (1.0.0)
44
- KIF (3.2.2):
55
- KIF/XCTest (= 3.2.2)
@@ -16,13 +16,13 @@ DEPENDENCIES:
1616

1717
EXTERNAL SOURCES:
1818
DeepLinkSDK:
19-
:path: .
19+
:path: "."
2020

2121
SPEC CHECKSUMS:
22-
DeepLinkSDK: d93fc424591db607b27b67e04c64f904282ea18c
22+
DeepLinkSDK: 352e0366279e3904b6d5d6e87b16d1c962c3364c
2323
Expecta: 32604574add2c46a36f8d2f716b6c5736eb75024
2424
KIF: b0bd762b0c7890b04920cf618021d6d4fd5127bd
2525
OCMock: a10ea9f0a6e921651f96f78b6faee95ebc813b92
2626
Specta: 96fe05fe5c7348b5223f85e862904f6e832abb14
2727

28-
COCOAPODS: 0.37.0
28+
COCOAPODS: 0.37.1

0 commit comments

Comments
 (0)