Skip to content

Commit

Permalink
Break configuration attributes into multiple lines
Browse files Browse the repository at this point in the history
  • Loading branch information
gfontenot committed Mar 21, 2014
1 parent 42d7f8d commit 021d160
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions lib/liftoff/project_configuration.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,22 @@ module Liftoff
class ProjectConfiguration
LATEST_IOS = 7.0

attr_accessor :project_name, :company, :prefix, :configure_git, :warnings_as_errors, :enable_static_analyzer, :indentation_level, :warnings, :application_target_groups, :unit_test_target_groups, :use_cocoapods, :run_script_phases
attr_writer :author, :company_identifier, :use_tabs
attr_accessor :project_name,
:company,
:prefix,
:configure_git,
:warnings_as_errors,
:enable_static_analyzer,
:indentation_level,
:warnings,
:application_target_groups,
:unit_test_target_groups,
:use_cocoapods,
:run_script_phases

attr_writer :author,
:company_identifier,
:use_tabs

def initialize(liftoffrc)
deprecations = DeprecationManager.new
Expand Down

0 comments on commit 021d160

Please sign in to comment.