Skip to content

Commit

Permalink
Merge pull request #156 from DeployGate/work/update_fastlane_gem
Browse files Browse the repository at this point in the history
Update fastlane gem
  • Loading branch information
henteko authored Dec 19, 2016
2 parents 8868563 + e6b8cbd commit 51de272
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
9 changes: 5 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@ env:
global:
secure: gGY+C54Cfp082o5Oaf6tZqzfOlXsWSMcVNvTpoOgMfJGsHo//d9t/si9Bn1pFaFyjJedW+IcC0pt+FcKVCDgnsUaL0Y0HT/ZsGkV8k7vv9F5nbHOde4nk189Sr2HtHR3wdr7KaMh2/DialisnqllxgzxA/wRLfHKsjqRsjWUw/VWL5E7Z734mzpTGE2mVJNRj02/cs0Y/izZgdi6wrt4lEZfxE3jS+QkJZHMjGNfcwvH26whU6oX1PiJ4o5xl0Rr8Q8xav3wbtTCcOJNPSeMkkiH5sSXuqrjI6kgwvjlByKhyg2Ws0GvZLxAfTml+Vo5po1uWsohdZJaJcEhd4GsGfbMZWCFuBP2mCE+gVmkkMeJxRKnWoi6NotgPmqG1JWlzGngDB/hJ4wuuh+swa0KJvZGiMEJ5P3GNydCybEPOsk1Ww+lUkXRHxD+/LW03EkxMd5LA3He/nYXz3pWCYA6qcFgrYMmq+3ozjSaQr+1d/Iu14Awv5+cwCltPfl5bERDno0jc0TdSs/7qplAL/efpjBsP7DkGE5r521gg8mIiXx509jU08i9S60SXiw0RBnYyjE5SzlsiOqaFdJxVygDGcDIAA/GTefLHO9i3SinZHFS6jr3Xi/vpOIc7Jz4W2Jmuqv+CJP4gspPoAxdWOE/QipTt0Jv4kCMf7dJwd9jaRc=
rvm:
- 2.2.0
- 2.2.0
before_install:
- gem install bundler
script:
- bundle exec rake
- bundle exec rake
deploy:
provider: rubygems
api_key:
Expand All @@ -15,5 +17,4 @@ deploy:
tags: true
repo: DeployGate/deploygate-cli
after_deploy:
- 'curl -X POST --data-urlencode "payload={\"text\": \"Released a deploygate gem in
<https://rubygems.org/gems/deploygate/|RubyGems>\"}" $SLACK_URL'
- 'curl -X POST --data-urlencode "payload={\"text\": \"Released a deploygate gem in <https://rubygems.org/gems/deploygate/|RubyGems>\"}" $SLACK_URL'
4 changes: 1 addition & 3 deletions deploygate.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,7 @@ POST_INSTALL_MESSAGE
spec.add_dependency 'workers'

# ios build
spec.add_dependency 'gym', '~> 1.9.0'
spec.add_dependency 'spaceship', '~> 0.32.4'
spec.add_dependency 'sigh', '~> 1.10.4'
spec.add_dependency 'fastlane', '~> 2.1.1'

spec.add_development_dependency "bundler"
spec.add_development_dependency "rake"
Expand Down
1 change: 1 addition & 0 deletions lib/deploygate/command_builder.rb
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,7 @@ def create_issue_url(command, error)
def error_handling(command, error)
STDERR.puts HighLine.color(I18n.t('command_builder.error_handling.message', message: error.message), HighLine::RED)

return if ENV['CI'] # When run ci server
return if error.kind_of?(DeployGate::NotIssueError)
puts ''
if HighLine.agree(I18n.t('command_builder.error_handling.agree')) {|q| q.default = "n"}
Expand Down
2 changes: 1 addition & 1 deletion lib/deploygate/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module DeployGate
VERSION = "0.4.1"
VERSION = '0.5.0'
end

0 comments on commit 51de272

Please sign in to comment.