This repository has been archived by the owner on Jul 2, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
108 changed files
with
13,251 additions
and
10 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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
steps: | ||
- | ||
name: ":bundler: Update Bundler" | ||
command: .ci/scripts/update-bundler | ||
agents: | ||
name: "$BUILDKITE_AGENT_META_DATA_NAME" | ||
- | ||
name: ":fastlane: Test Mac OS X" | ||
command: .ci/scripts/test-osx | ||
agents: | ||
name: "$BUILDKITE_AGENT_META_DATA_NAME" | ||
- | ||
name: ":fastlane: Test iOS" | ||
command: .ci/scripts/test-ios | ||
agents: | ||
name: "$BUILDKITE_AGENT_META_DATA_NAME" | ||
- | ||
type: "waiter" | ||
- | ||
name: ":codecov: Send Coverage" | ||
command: .ci/scripts/send-coverage | ||
agents: | ||
name: "$BUILDKITE_AGENT_META_DATA_NAME" |
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,6 @@ | ||
#!/bin/bash | ||
|
||
set -eu | ||
|
||
# Makes sure all the steps run on this same agent | ||
sed "s/\$BUILDKITE_AGENT_META_DATA_NAME/$BUILDKITE_AGENT_META_DATA_NAME/" .ci/buildkite/pipeline.template.yml |
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,2 @@ | ||
#!/usr/bin/env bash | ||
bash <(curl -s https://codecov.io/bash) -D .ci/xcodebuild-data |
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,5 @@ | ||
#!/usr/bin/env bash | ||
source /usr/local/opt/chruby/share/chruby/chruby.sh | ||
chruby ruby | ||
bundle exec fastlane ios test | ||
|
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,4 @@ | ||
#!/usr/bin/env bash | ||
source /usr/local/opt/chruby/share/chruby/chruby.sh | ||
chruby ruby | ||
bundle exec fastlane mac test |
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,4 @@ | ||
#!/usr/bin/env bash | ||
source /usr/local/opt/chruby/share/chruby/chruby.sh | ||
chruby ruby | ||
bundle update && bundle exec fastlane enable_crash_reporting |
Empty file.
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,2 @@ | ||
app_identifier "me.danthorpe.Money" | ||
apple_id "[email protected]" |
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,28 @@ | ||
before_all do |lane| | ||
carthage(platform: "all") | ||
end | ||
|
||
platform :ios do | ||
|
||
desc "Runs all the tests" | ||
lane :test do | ||
xctest scheme: 'Money-iOS', | ||
sdk: 'iphonesimulator', | ||
destination: 'platform=iOS Simulator,name=iPhone 6,OS=9.1', | ||
destination_timeout: 120, | ||
derivedDataPath: '.ci/xcodebuild-data' | ||
end | ||
|
||
end | ||
|
||
platform :mac do | ||
|
||
desc "Runs all the tests" | ||
lane :test do | ||
xctest scheme: 'Money-OSX', | ||
sdk: 'macosx', | ||
destination: 'platform=OS X', | ||
derivedDataPath: '.ci/xcodebuild-data' | ||
end | ||
|
||
end |
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
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,11 @@ | ||
|
||
# 1.0.0 | ||
🎉🐝 Initial release of Money. | ||
|
||
- [x] DecimalNumberType with full support for mathematics operators | ||
- [x] Strongly typed ISO currencies | ||
- [x] Strongly typed ISO money type which conforms to DecimalNumberType | ||
- [x] Generic Foreign Exchange APIs | ||
- [x] Yahoo FX provider | ||
- [x] OpenExchangeRates.org FX provider | ||
- [x] 100% of code covered by tests |
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,4 @@ | ||
github "danthorpe/ValueCoding" | ||
github "antitypical/Result" >= 0.6 | ||
github "SwiftyJSON/SwiftyJSON" | ||
github "danthorpe/DVR" "DVR_27_restore_print_and_abort" |
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,4 @@ | ||
github "danthorpe/DVR" "f0195d81d27a7d7633bd8c89ac7baa986fe8a21f" | ||
github "antitypical/Result" "0.6.0-beta.6" | ||
github "SwiftyJSON/SwiftyJSON" "2.3.1" | ||
github "danthorpe/ValueCoding" "1.1.0" |
Oops, something went wrong.