-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #30 from the-grid/podspec
Podspec
- Loading branch information
Showing
6 changed files
with
24 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
github "edwardaux/Ogra" ~> 3.0.0 | ||
github "thoughtbot/Argo" ~> 3.0.0 | ||
github "thoughtbot/Swish" "b5235f052655c0f30b3eace45a414e51b8eceaf7" | ||
github "thoughtbot/Swish" ~> 1.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
github "thoughtbot/Argo" "v3.0.1" | ||
github "kylef/Mockingjay" "050f003777702972b0bf72dcdc26207ada566342" | ||
github "Quick/Nimble" "v4.0.1" | ||
github "Quick/Nimble" "v4.1.0" | ||
github "Quick/Quick" "v0.9.2" | ||
github "antitypical/Result" "2.0.0" | ||
github "antitypical/Result" "2.1.1" | ||
github "the-grid/MockingjayMatchers" "0.2.0" | ||
github "edwardaux/Ogra" "3.0.0" | ||
github "thoughtbot/Swish" "b5235f052655c0f30b3eace45a414e51b8eceaf7" | ||
github "thoughtbot/Swish" "v1.0.0" |
Submodule Nimble
updated
17 files
+1 −0 | .ruby-version | |
+15 −0 | .travis.yml | |
+2 −3 | CONTRIBUTING.md | |
+4 −0 | Gemfile | |
+63 −0 | Gemfile.lock | |
+1 −1 | Nimble.podspec | |
+77 −73 | Nimble.xcodeproj/project.pbxproj | |
+4 −1 | README.md | |
+1 −1 | Sources/Nimble/Adapters/ObjectiveC/NMBExceptionCapture.m | |
+2 −1 | Sources/Nimble/Expectation.swift | |
+4 −4 | Sources/Nimble/Matchers/BeCloseTo.swift | |
+4 −4 | Sources/Nimble/Matchers/Contain.swift | |
+1 −1 | Sources/Nimble/Nimble.h | |
+51 −0 | Tests/Nimble/Matchers/BeCloseToTest.swift | |
+18 −0 | Tests/Nimble/Matchers/ContainTest.swift | |
+4 −18 | script/release | |
+28 −3 | test |
Submodule Result
updated
13 files
Submodule Swish
updated
10 files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "Disc" | ||
s.version = "0.5.9" | ||
s.summary = "An API client for Grid Passport." | ||
s.homepage = "https://github.com/the-grid/Disc" | ||
s.license = { :type => "MIT" } | ||
s.author = { "Nick Velloff" => "[email protected]" } | ||
s.social_media_url = "https://twitter.com/nickvelloff" | ||
s.platform = :ios | ||
s.platform = :ios, "8.0" | ||
s.source = { :git => "https://github.com/the-grid/Disc.git", :tag => "#{s.version}" } | ||
s.source_files = "Classes", "Disc/**/*.swift" | ||
s.requires_arc = true | ||
s.dependency "Swish", "~> 1.0.0" | ||
s.dependency "Argo", "~> 3.0.0" | ||
s.dependency "Ogra", "~> 3.0.0" | ||
end |