-
Notifications
You must be signed in to change notification settings - Fork 466
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Environment Variables] Add support for scheme environment variables
- Loading branch information
Justin Martin
committed
Oct 26, 2015
1 parent
eedcb65
commit d39abc2
Showing
12 changed files
with
557 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,23 @@ | ||
# This configuration was generated by `rubocop --auto-gen-config` | ||
# on 2015-03-06 13:49:50 +0100 using RuboCop version 0.28.0. | ||
# This configuration was generated by | ||
# `rubocop --auto-gen-config` | ||
# on 2015-10-25 15:59:02 -0700 using RuboCop version 0.34.2. | ||
# The point is for the user to remove these configuration records | ||
# one by one as the offenses are removed from the code base. | ||
# Note that changes in the inspected code, or installation of new | ||
# versions of RuboCop, may require this file to be generated again. | ||
|
||
# Offense count: 499 | ||
# Offense count: 804 | ||
# Configuration parameters: AllowURI, URISchemes. | ||
Metrics/LineLength: | ||
Max: 186 | ||
|
||
# Offense count: 66 | ||
# Configuration parameters: CountComments. | ||
Metrics/MethodLength: | ||
Max: 46 | ||
|
||
# Offense count: 2 | ||
# Configuration parameters: CountKeywordArgs. | ||
Metrics/ParameterLists: | ||
Max: 7 | ||
|
||
# Offense count: 9 | ||
Metrics/PerceivedComplexity: | ||
Max: 16 | ||
|
||
# Offense count: 94 | ||
# Cop supports --auto-correct. | ||
# Configuration parameters: EnforcedStyle, SupportedStyles. | ||
Style/DotPosition: | ||
Enabled: false | ||
|
||
# Offense count: 1 | ||
Style/DoubleNegation: | ||
Enabled: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
require 'xcodeproj/scheme/xml_element_wrapper' | ||
|
||
module Xcodeproj | ||
class XCScheme | ||
VARIABLES_NODE = 'EnvironmentVariables' | ||
VARIABLE_NODE = 'EnvironmentVariable' | ||
|
||
# This class wraps the EnvironmentVariables node of a .xcscheme XML file. This | ||
# is just a container of EnvironmentVariable objects. It can either appear on a | ||
# LaunchAction or TestAction scheme group. | ||
# | ||
class EnvironmentVariables < XMLElementWrapper | ||
# @param [REXML::Element,Array{EnvironmentVariable},Array{Hash{String => String}}] node_or_target | ||
# The 'EnvironmentVariables' XML node that this object represents. | ||
# If nil, it will create a default XML node to use. | ||
# | ||
def initialize(node_or_target = nil) | ||
create_xml_element_with_fallback(node_or_target, VARIABLES_NODE) do | ||
@all_variables = [] | ||
node_or_target.each { |var| add_variable(var) } unless node_or_target.nil? | ||
end | ||
end | ||
|
||
# @return [Array{EnvironmentVariable}] | ||
# The key value pairs currently set in @xml_element | ||
# | ||
def all_variables | ||
@all_variables ||= @xml_element.get_elements(VARIABLE_NODE).map { |variable| EnvironmentVariable.new(variable) } | ||
end | ||
|
||
# @param [EnvironmentVariable,Hash{String => String}] variable | ||
# The key value pairs currently set in @xml_element | ||
# | ||
# @return [Array{EnvironmentVariable}] | ||
# The new set of environment variables after addition | ||
# | ||
def add_variable(variable) | ||
env_var = variable.is_a?(EnvironmentVariable) ? variable : EnvironmentVariable.new(variable) | ||
all_variables.each { |existing_var| remove_variable(existing_var) if existing_var.key == env_var.key } | ||
@xml_element.add_element(env_var.xml_element) | ||
@all_variables << env_var | ||
end | ||
|
||
# @param [EnvironmentVariable,Hash{String => String}] variable | ||
# The key value pairs currently set in @xml_element | ||
# | ||
# @return [Array{EnvironmentVariable}] | ||
# The new set of environment variables after removal | ||
# | ||
def remove_variable(variable) | ||
env_var = variable.is_a?(EnvironmentVariable) ? variable : all_variables.select { |var| var.key == variable[:key] }[0] | ||
raise "Unexpected parameter type: #{env_var.class}" unless env_var.is_a?(EnvironmentVariable) | ||
@xml_element.delete_element(env_var.xml_element) | ||
@all_variables -= [env_var] | ||
end | ||
|
||
# @param [EnvironmentVariable,Hash{String => String}] variable | ||
# The key value pairs currently set in @xml_element | ||
# | ||
def to_a | ||
all_variables.map(&:to_h) | ||
end | ||
end | ||
|
||
# This class wraps the EnvironmentVariable node of a .xcscheme XML file. | ||
# Environment variables are accessible via the NSDictionary returned from | ||
# [[NSProcessInfo processInfo] environment] in your app code. | ||
# | ||
class EnvironmentVariable < XMLElementWrapper | ||
# @param [REXML::Element,EnvironmentVariable,Hash{String => String}] value | ||
# The 'EnvironmentVariable' XML node that this object represents. | ||
# If nil, it will create a default XML node to use. If a hash, it | ||
# must contain keys 'key' and 'value', and optionally have 'enabled'. | ||
# If not supplied, it will default to being enabled. | ||
# | ||
def initialize(value) | ||
create_xml_element_with_fallback(value, VARIABLE_NODE) do | ||
raise "Must pass a Hash with 'key' and 'value'!" unless value.is_a?(Hash) && value.key?(:key) && value.key?(:value) | ||
|
||
@xml_element.attributes['key'] = value[:key] | ||
@xml_element.attributes['value'] = value[:value] | ||
@xml_element.attributes['isEnabled'] = value.key?(:enabled) ? bool_to_string(value[:enabled]) : bool_to_string(true) | ||
end | ||
end | ||
|
||
def key | ||
@xml_element.attributes['key'] | ||
end | ||
|
||
def key=(key) | ||
@xml_element.attributes['key'] = key | ||
end | ||
|
||
def value | ||
@xml_element.attributes['value'] | ||
end | ||
|
||
def value=(value) | ||
@xml_element.attributes['value'] = value | ||
end | ||
|
||
def enabled | ||
string_to_bool(@xml_element.attributes['isEnabled']) | ||
end | ||
|
||
def enabled=(enabled) | ||
@xml_element.attributes['isEnabled'] = bool_to_string(enabled) | ||
end | ||
|
||
# @return [Hash{:key => String, :value => String, :enabled => Boolean}] | ||
# The environment variable XML node with attributes converted to Hash keys | ||
def to_h | ||
{ :key => key, :value => value, :enabled => enabled } | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.