Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
KrauseFx committed Jan 30, 2015
1 parent 5c5a2f3 commit 100eaac
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
5 changes: 3 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
fastlane (0.1.2)
fastlane (0.1.3)
colored
commander (~> 4.2.0)
credentials_manager
Expand Down Expand Up @@ -43,14 +43,15 @@ GEM
colored
highline (~> 1.6.21)
security (~> 0.1.3)
deliver (0.7.2)
deliver (0.7.3)
capybara (~> 2.4.3)
colored
commander (~> 4.2.0)
credentials_manager
fastimage (~> 1.6.3)
highline (~> 1.6.21)
json
multi_json
nokogiri (~> 1.6.5)
plist (~> 3.1.0)
poltergeist (~> 1.5.1)
Expand Down
2 changes: 1 addition & 1 deletion lib/fastlane/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Fastlane
VERSION = "0.1.2"
VERSION = "0.1.3"
end
8 changes: 4 additions & 4 deletions spec/actions_specs/crashlytics_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
ipa_path: './fastlane/spec/fixtures/fastfiles/Fastfile1'
})
end").runner.execute(:test)
}.to raise_error("No Crashlytics path given or found, pass using `crashlytics_path: '/path'`".red)
}.to raise_error("No Crashlytics path given or found, pass using `crashlytics_path: 'path'`".red)
end

it "raises an error if the given crashlytics path was not found" do
Expand All @@ -23,7 +23,7 @@
ipa_path: './fastlane/spec/fixtures/fastfiles/Fastfile1'
})
end").runner.execute(:test)
}.to raise_error("No Crashlytics path given or found, pass using `crashlytics_path: '/path'`".red)
}.to raise_error("No Crashlytics path given or found, pass using `crashlytics_path: 'path'`".red)
end

it "raises an error if no api token was given" do
Expand Down Expand Up @@ -59,7 +59,7 @@
build_secret: 'wadus'
})
end").runner.execute(:test)
}.to raise_error("No IPA file given or found, pass using `ipa_path: '/path/app.ipa'`".red)
}.to raise_error("No IPA file given or found, pass using `ipa_path: 'path/app.ipa'`".red)
end

it "raises an error if the given ipa path was not found" do
Expand All @@ -72,7 +72,7 @@
ipa_path: './fastlane/wadus'
})
end").runner.execute(:test)
}.to raise_error("No IPA file given or found, pass using `ipa_path: '/path/app.ipa'`".red)
}.to raise_error("No IPA file given or found, pass using `ipa_path: 'path/app.ipa'`".red)
end

it "works with valid parameters" do
Expand Down

0 comments on commit 100eaac

Please sign in to comment.