lib/snapshot/snapshot_file.rb in snapshot-0.6.1 vs lib/snapshot/snapshot_file.rb in snapshot-0.7.0
- old
+ new
@@ -51,9 +51,12 @@
raise "custom_args has to be an String".red unless value.kind_of?String
@config.custom_args = value
when :custom_build_args
raise "custom_build_args has to be an String".red unless value.kind_of?String
@config.custom_build_args = value
+ when :custom_run_args
+ raise "custom_run_args has to be an String".red unless value.kind_of?String
+ @config.custom_run_args = value
when :skip_alpha_removal
@config.skip_alpha_removal = true
when :clear_previous_screenshots
@config.clear_previous_screenshots = true
when :project_path
\ No newline at end of file