Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions Dangerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
puts "Running fastlane"

require 'snapshot'
options = {}
Snapshot.config = FastlaneCore::Configuration.create(Snapshot::Options.available_options, options)
Snapshot::Runner.new.work

puts 'running screen_grid'
screen_grid.run

puts "Running fastlane to generate and upload an ipa file..."

options = {
Expand Down
5 changes: 3 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
source "https://rubygems.org"

gem "fastlane"
gem "fastlane", git: "https://github.com/fastlane/fastlane", branch: "screen-grid"
gem "cocoapods"
gem "danger", git: "https://github.com/danger/danger"
gem "danger-device_grid"
gem "danger-device_grid", git: "https://github.com/fastlane/fastlane", branch: "screen-grid"
gem "danger-screen_grid", git: "https://github.com/fastlane/fastlane", branch: "screen-grid"
gem "bundler"

plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile')
Expand Down
Loading