Skip to content
This repository has been archived by the owner on Nov 19, 2018. It is now read-only.

Commit

Permalink
Improved success outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
KrauseFx committed Mar 19, 2015
1 parent 706fdbf commit 9b5fa54
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/snapshot/snapfile_creator.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ def self.create(path)
File.write([path, 'snapshot-iPad.js'].join('/'), File.read("#{gem_path}/lib/assets/snapshot.js"))
File.write([path, 'SnapshotHelper.js'].join('/'), File.read("#{gem_path}/lib/assets/SnapshotHelper.js"))

puts "Successfully created SnapshotHelper.js '#{[path, 'SnapshotHelper.js'].join('/')}'".green
puts "Successfully created new UI Automation JS file at '#{[path, 'snapshot.js'].join('/')}'".green
puts "Successfully created new UI Automation JS file for iPad at '#{[path, 'snapshot-iPad.js'].join('/')}'".green
puts "Successfully created SnapshotHelper.js '#{File.join(path, 'SnapshotHelper.js')}'".green
puts "Successfully created new UI Automation JS file at '#{File.join(path, 'snapshot.js')}'".green
puts "Successfully created new UI Automation JS file for iPad at '#{File.join(path, 'snapshot-iPad.js')}'".green
puts "Successfully created new Snapfile at '#{snapfile_path}'".green
end
end
Expand Down

0 comments on commit 9b5fa54

Please sign in to comment.