objc2swift_assistant 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +10 -0
  3. data/.idea/.name +1 -0
  4. data/.idea/.rakeTasks +7 -0
  5. data/.idea/compiler.xml +22 -0
  6. data/.idea/copyright/profiles_settings.xml +3 -0
  7. data/.idea/dictionaries/ckornher.xml +7 -0
  8. data/.idea/encodings.xml +4 -0
  9. data/.idea/misc.xml +4 -0
  10. data/.idea/modules.xml +8 -0
  11. data/.idea/objc2swift_assistant.iml +103 -0
  12. data/.idea/runConfigurations/Console.xml +26 -0
  13. data/.idea/runConfigurations/assistant.xml +28 -0
  14. data/.idea/runConfigurations/help_text.xml +28 -0
  15. data/.idea/scopes/scope_settings.xml +5 -0
  16. data/.idea/uiDesigner.xml +124 -0
  17. data/.idea/vcs.xml +6 -0
  18. data/.idea/workspace.xml +1484 -0
  19. data/.rspec +2 -0
  20. data/.travis.yml +3 -0
  21. data/CODE_OF_CONDUCT.md +13 -0
  22. data/Gemfile +8 -0
  23. data/LICENSE.txt +21 -0
  24. data/README.md +83 -0
  25. data/Rakefile +1 -0
  26. data/bin/console +14 -0
  27. data/bin/objc2swift_assistant +50 -0
  28. data/bin/setup +7 -0
  29. data/lib/assistant.rb +110 -0
  30. data/lib/objc2swift_assistant/code_recognizer.rb +220 -0
  31. data/lib/objc2swift_assistant/file_hierarchical_config.rb +168 -0
  32. data/lib/objc2swift_assistant/file_sets.rb +577 -0
  33. data/lib/objc2swift_assistant/logging.rb +19 -0
  34. data/lib/objc2swift_assistant/objc_2_swift.rb +734 -0
  35. data/lib/objc2swift_assistant/objc_2_swift_block_conversion.rb +106 -0
  36. data/lib/objc2swift_assistant/objc_2_swift_configuration.rb +108 -0
  37. data/lib/objc2swift_assistant/objc_2_swift_type_mapping.rb +64 -0
  38. data/lib/objc2swift_assistant/objc_variable_types.rb +76 -0
  39. data/lib/objc2swift_assistant/processing_element.rb +32 -0
  40. data/lib/objc2swift_assistant/recognizers/at_sign_directives_recognizer.rb +41 -0
  41. data/lib/objc2swift_assistant/recognizers/category_recognizer.rb +72 -0
  42. data/lib/objc2swift_assistant/recognizers/enum_recognizer.rb +0 -0
  43. data/lib/objc2swift_assistant/recognizers/implementation_recognizer.rb +31 -0
  44. data/lib/objc2swift_assistant/recognizers/interface_recognizer.rb +37 -0
  45. data/lib/objc2swift_assistant/recognizers/method_recognizer.rb +190 -0
  46. data/lib/objc2swift_assistant/recognizers/pragma_mark_recognizer.rb +41 -0
  47. data/lib/objc2swift_assistant/recognizers/property_declaration_recognizer.rb +78 -0
  48. data/lib/objc2swift_assistant/recognizers/protocol_recognizer.rb +40 -0
  49. data/lib/objc2swift_assistant/recognizers/recognizer_keys.rb +26 -0
  50. data/lib/objc2swift_assistant/settings_file.rb +23 -0
  51. data/lib/objc2swift_assistant/swift_file_generator.rb +27 -0
  52. data/lib/objc2swift_assistant/version.rb +3 -0
  53. data/objc2swift_assistant.gemspec +31 -0
  54. metadata +128 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 64e11a7b29ae2dea36fdf050829fe37ad4650190
4
+ data.tar.gz: 407ae52c6ed50ab4b3241c66e497bbb63c3f87a3
5
+ SHA512:
6
+ metadata.gz: 5d5347e1094b2cf87b5cbc32285112b223ca8c65df5be8b2216a79ca1a136f7aa9eb511e35cf2cb2e1ed1be17cc4d449c6e057277c7c776cc3b8a73ef9adfb1c
7
+ data.tar.gz: fdcd0e7e34138ee6f0cf6cecc678ea053ed3a7ea74b7cfb221594534665688971d433d3ce78c913eab4cb899ab4e71a79d3806052793cd9599937346e6dc81e2
data/.gitignore ADDED
@@ -0,0 +1,10 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+
data/.idea/.name ADDED
@@ -0,0 +1 @@
1
+ objc2swift_assistant
data/.idea/.rakeTasks ADDED
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <Settings><!--This file was automatically generated by Ruby plugin.
3
+ You are allowed to:
4
+ 1. Remove rake task
5
+ 2. Add existing rake tasks
6
+ To add existing rake tasks automatically delete this file and reload the project.
7
+ --><RakeGroup description="" fullCmd="" taksId="rake"><RakeTask description="Build objc2swift_assistant-0.1.0.gem into the pkg directory" fullCmd="build" taksId="build" /><RakeTask description="Build and install objc2swift_assistant-0.1.0.gem into system gems" fullCmd="install" taksId="install" /><RakeTask description="Create tag v0.1.0 and build and push objc2swift_assistant-0.1.0.gem to Rubygems" fullCmd="release" taksId="release" /><RakeGroup description="" fullCmd="" taksId="release"><RakeTask description="" fullCmd="release:guard_clean" taksId="guard_clean" /><RakeTask description="" fullCmd="release:rubygem_push" taksId="rubygem_push" /><RakeTask description="" fullCmd="release:source_control_push" taksId="source_control_push" /></RakeGroup></RakeGroup></Settings>
@@ -0,0 +1,22 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="CompilerConfiguration">
4
+ <resourceExtensions />
5
+ <wildcardResourcePatterns>
6
+ <entry name="!?*.java" />
7
+ <entry name="!?*.form" />
8
+ <entry name="!?*.class" />
9
+ <entry name="!?*.groovy" />
10
+ <entry name="!?*.scala" />
11
+ <entry name="!?*.flex" />
12
+ <entry name="!?*.kt" />
13
+ <entry name="!?*.clj" />
14
+ <entry name="!?*.aj" />
15
+ </wildcardResourcePatterns>
16
+ <annotationProcessing>
17
+ <profile default="true" name="Default" enabled="false">
18
+ <processorPath useClasspath="true" />
19
+ </profile>
20
+ </annotationProcessing>
21
+ </component>
22
+ </project>
@@ -0,0 +1,3 @@
1
+ <component name="CopyrightManager">
2
+ <settings default="" />
3
+ </component>
@@ -0,0 +1,7 @@
1
+ <component name="ProjectDictionaryState">
2
+ <dictionary name="ckornher">
3
+ <words>
4
+ <w>nocode</w>
5
+ </words>
6
+ </dictionary>
7
+ </component>
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="Encoding" useUTFGuessing="true" native2AsciiForPropertiesFiles="false" />
4
+ </project>
data/.idea/misc.xml ADDED
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="ProjectRootManager" version="2" languageLevel="JDK_1_3" assert-keyword="false" jdk-15="false" project-jdk-name="ruby-2.0.0-p481" project-jdk-type="RUBY_SDK" />
4
+ </project>
data/.idea/modules.xml ADDED
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="ProjectModuleManager">
4
+ <modules>
5
+ <module fileurl="file://$PROJECT_DIR$/.idea/objc2swift_assistant.iml" filepath="$PROJECT_DIR$/.idea/objc2swift_assistant.iml" />
6
+ </modules>
7
+ </component>
8
+ </project>
@@ -0,0 +1,103 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <module type="RUBY_MODULE" version="4">
3
+ <component name="FacetManager">
4
+ <facet type="gem" name="Ruby Gem">
5
+ <configuration>
6
+ <option name="GEM_APP_ROOT_PATH" value="$MODULE_DIR$" />
7
+ <option name="GEM_APP_TEST_PATH" value="$MODULE_DIR$/test" />
8
+ <option name="GEM_APP_LIB_PATH" value="$MODULE_DIR$/lib" />
9
+ </configuration>
10
+ </facet>
11
+ </component>
12
+ <component name="ModuleRunConfigurationManager">
13
+ <configuration default="false" name="assistant" type="CommandRunConfigurationType" factoryName="Gem Command">
14
+ <module name="objc2swift_assistant" />
15
+ <COMMAND_RUN_CONFIGURATION NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
16
+ <COMMAND_RUN_CONFIGURATION NAME="WORK DIR" VALUE="$MODULE_DIR$" />
17
+ <COMMAND_RUN_CONFIGURATION NAME="SHOULD_USE_SDK" VALUE="false" />
18
+ <COMMAND_RUN_CONFIGURATION NAME="ALTERN_SDK_NAME" VALUE="" />
19
+ <COMMAND_RUN_CONFIGURATION NAME="myPassParentEnvs" VALUE="true" />
20
+ <envs />
21
+ <EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="true" />
22
+ <EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
23
+ <EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
24
+ <COVERAGE_PATTERN ENABLED="true">
25
+ <PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
26
+ </COVERAGE_PATTERN>
27
+ </EXTENSION>
28
+ <EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
29
+ <COMMAND_CONFIG_SETTINGS_ID NAME="GEM_NAME" VALUE="objc2swift_assistant" />
30
+ <COMMAND_CONFIG_SETTINGS_ID NAME="EXECUTABLE_NAME" VALUE="objc2swift_assistant" />
31
+ <COMMAND_CONFIG_SETTINGS_ID NAME="EXECUTABLE_ARGS" VALUE="generate --source $PROJECT_DIR$/../TestData/ObjC --dest $PROJECT_DIR$/../TestData/Swift --trace" />
32
+ <COMMAND_CONFIG_SETTINGS_ID NAME="WORKING_DIR" VALUE="generate --source $PROJECT_DIR$/../TestData/ObjC --dest $PROJECT_DIR$/../TestData/Swift --trace" />
33
+ <RunnerSettings RunnerId="RubyDebugRunner" />
34
+ <RunnerSettings RunnerId="RubyRunner" />
35
+ <ConfigurationWrapper RunnerId="RubyDebugRunner" />
36
+ <ConfigurationWrapper RunnerId="RubyRunner" />
37
+ <method />
38
+ </configuration>
39
+ <configuration default="false" name="help text" type="CommandRunConfigurationType" factoryName="Gem Command">
40
+ <module name="objc2swift_assistant" />
41
+ <COMMAND_RUN_CONFIGURATION NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
42
+ <COMMAND_RUN_CONFIGURATION NAME="WORK DIR" VALUE="$MODULE_DIR$" />
43
+ <COMMAND_RUN_CONFIGURATION NAME="SHOULD_USE_SDK" VALUE="false" />
44
+ <COMMAND_RUN_CONFIGURATION NAME="ALTERN_SDK_NAME" VALUE="" />
45
+ <COMMAND_RUN_CONFIGURATION NAME="myPassParentEnvs" VALUE="true" />
46
+ <envs />
47
+ <EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="true" />
48
+ <EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
49
+ <EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
50
+ <COVERAGE_PATTERN ENABLED="true">
51
+ <PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
52
+ </COVERAGE_PATTERN>
53
+ </EXTENSION>
54
+ <EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
55
+ <COMMAND_CONFIG_SETTINGS_ID NAME="GEM_NAME" VALUE="objc2swift_assistant" />
56
+ <COMMAND_CONFIG_SETTINGS_ID NAME="EXECUTABLE_NAME" VALUE="objc2swift_assistant" />
57
+ <COMMAND_CONFIG_SETTINGS_ID NAME="EXECUTABLE_ARGS" VALUE="--help generate" />
58
+ <COMMAND_CONFIG_SETTINGS_ID NAME="WORKING_DIR" VALUE="--help generate" />
59
+ <RunnerSettings RunnerId="RubyDebugRunner" />
60
+ <RunnerSettings RunnerId="RubyRunner" />
61
+ <ConfigurationWrapper RunnerId="RubyDebugRunner" />
62
+ <ConfigurationWrapper RunnerId="RubyRunner" />
63
+ <method />
64
+ </configuration>
65
+ <configuration default="false" name="Console" type="RubyRunConfigurationType" factoryName="Ruby">
66
+ <module name="objc2swift_assistant" />
67
+ <RUBY_RUN_CONFIG NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
68
+ <RUBY_RUN_CONFIG NAME="WORK DIR" VALUE="" />
69
+ <RUBY_RUN_CONFIG NAME="SHOULD_USE_SDK" VALUE="false" />
70
+ <RUBY_RUN_CONFIG NAME="ALTERN_SDK_NAME" VALUE="" />
71
+ <RUBY_RUN_CONFIG NAME="myPassParentEnvs" VALUE="true" />
72
+ <envs />
73
+ <EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
74
+ <EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
75
+ <EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
76
+ <COVERAGE_PATTERN ENABLED="true">
77
+ <PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
78
+ </COVERAGE_PATTERN>
79
+ </EXTENSION>
80
+ <EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
81
+ <RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="$MODULE_DIR$/bin/console" />
82
+ <RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="" />
83
+ <RunnerSettings RunnerId="RubyDebugRunner" />
84
+ <RunnerSettings RunnerId="RubyRunner" />
85
+ <ConfigurationWrapper RunnerId="RubyDebugRunner" />
86
+ <ConfigurationWrapper RunnerId="RubyRunner" />
87
+ <method />
88
+ </configuration>
89
+ </component>
90
+ <component name="NewModuleRootManager" inherit-compiler-output="false">
91
+ <content url="file://$MODULE_DIR$">
92
+ <sourceFolder url="file://$MODULE_DIR$/test" isTestSource="true" />
93
+ </content>
94
+ <orderEntry type="jdk" jdkName="rbenv: 2.2.0" jdkType="RUBY_SDK" />
95
+ <orderEntry type="sourceFolder" forTests="false" />
96
+ <orderEntry type="library" scope="PROVIDED" name="bundler (v1.9.2, rbenv: 2.2.0) [gem]" level="application" />
97
+ <orderEntry type="library" scope="PROVIDED" name="commander (v4.3.4, rbenv: 2.2.0) [gem]" level="application" />
98
+ <orderEntry type="library" scope="PROVIDED" name="highline (v1.7.2, rbenv: 2.2.0) [gem]" level="application" />
99
+ <orderEntry type="library" scope="PROVIDED" name="json (v1.8.3, rbenv: 2.2.0) [gem]" level="application" />
100
+ <orderEntry type="library" scope="PROVIDED" name="rake (v10.4.2, rbenv: 2.2.0) [gem]" level="application" />
101
+ <orderEntry type="library" scope="PROVIDED" name="swift_generator (v0.2.0, rbenv: 2.2.0) [gem]" level="application" />
102
+ </component>
103
+ </module>
@@ -0,0 +1,26 @@
1
+ <component name="ProjectRunConfigurationManager">
2
+ <configuration default="false" name="Console" type="RubyRunConfigurationType" factoryName="Ruby">
3
+ <module name="objc2swift_assistant" />
4
+ <RUBY_RUN_CONFIG NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
5
+ <RUBY_RUN_CONFIG NAME="WORK DIR" VALUE="" />
6
+ <RUBY_RUN_CONFIG NAME="SHOULD_USE_SDK" VALUE="false" />
7
+ <RUBY_RUN_CONFIG NAME="ALTERN_SDK_NAME" VALUE="" />
8
+ <RUBY_RUN_CONFIG NAME="myPassParentEnvs" VALUE="true" />
9
+ <envs />
10
+ <EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
11
+ <EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
12
+ <EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
13
+ <COVERAGE_PATTERN ENABLED="true">
14
+ <PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
15
+ </COVERAGE_PATTERN>
16
+ </EXTENSION>
17
+ <EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
18
+ <RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="$PROJECT_DIR$/bin/console" />
19
+ <RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="" />
20
+ <RunnerSettings RunnerId="RubyDebugRunner" />
21
+ <RunnerSettings RunnerId="RubyRunner" />
22
+ <ConfigurationWrapper RunnerId="RubyDebugRunner" />
23
+ <ConfigurationWrapper RunnerId="RubyRunner" />
24
+ <method />
25
+ </configuration>
26
+ </component>
@@ -0,0 +1,28 @@
1
+ <component name="ProjectRunConfigurationManager">
2
+ <configuration default="false" name="assistant" type="CommandRunConfigurationType" factoryName="Gem Command">
3
+ <module name="objc2swift_assistant" />
4
+ <COMMAND_RUN_CONFIGURATION NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
5
+ <COMMAND_RUN_CONFIGURATION NAME="WORK DIR" VALUE="$USER_HOME$/tmp/ScratchRuns" />
6
+ <COMMAND_RUN_CONFIGURATION NAME="SHOULD_USE_SDK" VALUE="false" />
7
+ <COMMAND_RUN_CONFIGURATION NAME="ALTERN_SDK_NAME" VALUE="" />
8
+ <COMMAND_RUN_CONFIGURATION NAME="myPassParentEnvs" VALUE="true" />
9
+ <envs />
10
+ <EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="true" />
11
+ <EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
12
+ <EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
13
+ <COVERAGE_PATTERN ENABLED="true">
14
+ <PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
15
+ </COVERAGE_PATTERN>
16
+ </EXTENSION>
17
+ <EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
18
+ <COMMAND_CONFIG_SETTINGS_ID NAME="GEM_NAME" VALUE="objc2swift_assistant" />
19
+ <COMMAND_CONFIG_SETTINGS_ID NAME="EXECUTABLE_NAME" VALUE="objc2swift_assistant" />
20
+ <COMMAND_CONFIG_SETTINGS_ID NAME="EXECUTABLE_ARGS" VALUE="generate --source $PROJECT_DIR$/../TestData/ObjC --dest $PROJECT_DIR$/../TestData/Swift --trace --config $PROJECT_DIR$/test/ExampleConfig.json --log none" />
21
+ <COMMAND_CONFIG_SETTINGS_ID NAME="WORKING_DIR" VALUE="generate --source $PROJECT_DIR$/../TestData/ObjC --dest $PROJECT_DIR$/../TestData/Swift --trace --config $PROJECT_DIR$/test/ExampleConfig.json --log none" />
22
+ <RunnerSettings RunnerId="RubyDebugRunner" />
23
+ <RunnerSettings RunnerId="RubyRunner" />
24
+ <ConfigurationWrapper RunnerId="RubyDebugRunner" />
25
+ <ConfigurationWrapper RunnerId="RubyRunner" />
26
+ <method />
27
+ </configuration>
28
+ </component>
@@ -0,0 +1,28 @@
1
+ <component name="ProjectRunConfigurationManager">
2
+ <configuration default="false" name="help text" type="CommandRunConfigurationType" factoryName="Gem Command">
3
+ <module name="objc2swift_assistant" />
4
+ <COMMAND_RUN_CONFIGURATION NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
5
+ <COMMAND_RUN_CONFIGURATION NAME="WORK DIR" VALUE="$USER_HOME$/tmp/ScratchRuns" />
6
+ <COMMAND_RUN_CONFIGURATION NAME="SHOULD_USE_SDK" VALUE="false" />
7
+ <COMMAND_RUN_CONFIGURATION NAME="ALTERN_SDK_NAME" VALUE="" />
8
+ <COMMAND_RUN_CONFIGURATION NAME="myPassParentEnvs" VALUE="true" />
9
+ <envs />
10
+ <EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="true" />
11
+ <EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
12
+ <EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
13
+ <COVERAGE_PATTERN ENABLED="true">
14
+ <PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
15
+ </COVERAGE_PATTERN>
16
+ </EXTENSION>
17
+ <EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
18
+ <COMMAND_CONFIG_SETTINGS_ID NAME="GEM_NAME" VALUE="objc2swift_assistant" />
19
+ <COMMAND_CONFIG_SETTINGS_ID NAME="EXECUTABLE_NAME" VALUE="objc2swift_assistant" />
20
+ <COMMAND_CONFIG_SETTINGS_ID NAME="EXECUTABLE_ARGS" VALUE="--help generate" />
21
+ <COMMAND_CONFIG_SETTINGS_ID NAME="WORKING_DIR" VALUE="--help generate" />
22
+ <RunnerSettings RunnerId="RubyDebugRunner" />
23
+ <RunnerSettings RunnerId="RubyRunner" />
24
+ <ConfigurationWrapper RunnerId="RubyDebugRunner" />
25
+ <ConfigurationWrapper RunnerId="RubyRunner" />
26
+ <method />
27
+ </configuration>
28
+ </component>
@@ -0,0 +1,5 @@
1
+ <component name="DependencyValidationManager">
2
+ <state>
3
+ <option name="SKIP_IMPORT_STATEMENTS" value="false" />
4
+ </state>
5
+ </component>
@@ -0,0 +1,124 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="Palette2">
4
+ <group name="Swing">
5
+ <item class="com.intellij.uiDesigner.HSpacer" tooltip-text="Horizontal Spacer" icon="/com/intellij/uiDesigner/icons/hspacer.png" removable="false" auto-create-binding="false" can-attach-label="false">
6
+ <default-constraints vsize-policy="1" hsize-policy="6" anchor="0" fill="1" />
7
+ </item>
8
+ <item class="com.intellij.uiDesigner.VSpacer" tooltip-text="Vertical Spacer" icon="/com/intellij/uiDesigner/icons/vspacer.png" removable="false" auto-create-binding="false" can-attach-label="false">
9
+ <default-constraints vsize-policy="6" hsize-policy="1" anchor="0" fill="2" />
10
+ </item>
11
+ <item class="javax.swing.JPanel" icon="/com/intellij/uiDesigner/icons/panel.png" removable="false" auto-create-binding="false" can-attach-label="false">
12
+ <default-constraints vsize-policy="3" hsize-policy="3" anchor="0" fill="3" />
13
+ </item>
14
+ <item class="javax.swing.JScrollPane" icon="/com/intellij/uiDesigner/icons/scrollPane.png" removable="false" auto-create-binding="false" can-attach-label="true">
15
+ <default-constraints vsize-policy="7" hsize-policy="7" anchor="0" fill="3" />
16
+ </item>
17
+ <item class="javax.swing.JButton" icon="/com/intellij/uiDesigner/icons/button.png" removable="false" auto-create-binding="true" can-attach-label="false">
18
+ <default-constraints vsize-policy="0" hsize-policy="3" anchor="0" fill="1" />
19
+ <initial-values>
20
+ <property name="text" value="Button" />
21
+ </initial-values>
22
+ </item>
23
+ <item class="javax.swing.JRadioButton" icon="/com/intellij/uiDesigner/icons/radioButton.png" removable="false" auto-create-binding="true" can-attach-label="false">
24
+ <default-constraints vsize-policy="0" hsize-policy="3" anchor="8" fill="0" />
25
+ <initial-values>
26
+ <property name="text" value="RadioButton" />
27
+ </initial-values>
28
+ </item>
29
+ <item class="javax.swing.JCheckBox" icon="/com/intellij/uiDesigner/icons/checkBox.png" removable="false" auto-create-binding="true" can-attach-label="false">
30
+ <default-constraints vsize-policy="0" hsize-policy="3" anchor="8" fill="0" />
31
+ <initial-values>
32
+ <property name="text" value="CheckBox" />
33
+ </initial-values>
34
+ </item>
35
+ <item class="javax.swing.JLabel" icon="/com/intellij/uiDesigner/icons/label.png" removable="false" auto-create-binding="false" can-attach-label="false">
36
+ <default-constraints vsize-policy="0" hsize-policy="0" anchor="8" fill="0" />
37
+ <initial-values>
38
+ <property name="text" value="Label" />
39
+ </initial-values>
40
+ </item>
41
+ <item class="javax.swing.JTextField" icon="/com/intellij/uiDesigner/icons/textField.png" removable="false" auto-create-binding="true" can-attach-label="true">
42
+ <default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1">
43
+ <preferred-size width="150" height="-1" />
44
+ </default-constraints>
45
+ </item>
46
+ <item class="javax.swing.JPasswordField" icon="/com/intellij/uiDesigner/icons/passwordField.png" removable="false" auto-create-binding="true" can-attach-label="true">
47
+ <default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1">
48
+ <preferred-size width="150" height="-1" />
49
+ </default-constraints>
50
+ </item>
51
+ <item class="javax.swing.JFormattedTextField" icon="/com/intellij/uiDesigner/icons/formattedTextField.png" removable="false" auto-create-binding="true" can-attach-label="true">
52
+ <default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1">
53
+ <preferred-size width="150" height="-1" />
54
+ </default-constraints>
55
+ </item>
56
+ <item class="javax.swing.JTextArea" icon="/com/intellij/uiDesigner/icons/textArea.png" removable="false" auto-create-binding="true" can-attach-label="true">
57
+ <default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
58
+ <preferred-size width="150" height="50" />
59
+ </default-constraints>
60
+ </item>
61
+ <item class="javax.swing.JTextPane" icon="/com/intellij/uiDesigner/icons/textPane.png" removable="false" auto-create-binding="true" can-attach-label="true">
62
+ <default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
63
+ <preferred-size width="150" height="50" />
64
+ </default-constraints>
65
+ </item>
66
+ <item class="javax.swing.JEditorPane" icon="/com/intellij/uiDesigner/icons/editorPane.png" removable="false" auto-create-binding="true" can-attach-label="true">
67
+ <default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
68
+ <preferred-size width="150" height="50" />
69
+ </default-constraints>
70
+ </item>
71
+ <item class="javax.swing.JComboBox" icon="/com/intellij/uiDesigner/icons/comboBox.png" removable="false" auto-create-binding="true" can-attach-label="true">
72
+ <default-constraints vsize-policy="0" hsize-policy="2" anchor="8" fill="1" />
73
+ </item>
74
+ <item class="javax.swing.JTable" icon="/com/intellij/uiDesigner/icons/table.png" removable="false" auto-create-binding="true" can-attach-label="false">
75
+ <default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
76
+ <preferred-size width="150" height="50" />
77
+ </default-constraints>
78
+ </item>
79
+ <item class="javax.swing.JList" icon="/com/intellij/uiDesigner/icons/list.png" removable="false" auto-create-binding="true" can-attach-label="false">
80
+ <default-constraints vsize-policy="6" hsize-policy="2" anchor="0" fill="3">
81
+ <preferred-size width="150" height="50" />
82
+ </default-constraints>
83
+ </item>
84
+ <item class="javax.swing.JTree" icon="/com/intellij/uiDesigner/icons/tree.png" removable="false" auto-create-binding="true" can-attach-label="false">
85
+ <default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
86
+ <preferred-size width="150" height="50" />
87
+ </default-constraints>
88
+ </item>
89
+ <item class="javax.swing.JTabbedPane" icon="/com/intellij/uiDesigner/icons/tabbedPane.png" removable="false" auto-create-binding="true" can-attach-label="false">
90
+ <default-constraints vsize-policy="3" hsize-policy="3" anchor="0" fill="3">
91
+ <preferred-size width="200" height="200" />
92
+ </default-constraints>
93
+ </item>
94
+ <item class="javax.swing.JSplitPane" icon="/com/intellij/uiDesigner/icons/splitPane.png" removable="false" auto-create-binding="false" can-attach-label="false">
95
+ <default-constraints vsize-policy="3" hsize-policy="3" anchor="0" fill="3">
96
+ <preferred-size width="200" height="200" />
97
+ </default-constraints>
98
+ </item>
99
+ <item class="javax.swing.JSpinner" icon="/com/intellij/uiDesigner/icons/spinner.png" removable="false" auto-create-binding="true" can-attach-label="true">
100
+ <default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1" />
101
+ </item>
102
+ <item class="javax.swing.JSlider" icon="/com/intellij/uiDesigner/icons/slider.png" removable="false" auto-create-binding="true" can-attach-label="false">
103
+ <default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1" />
104
+ </item>
105
+ <item class="javax.swing.JSeparator" icon="/com/intellij/uiDesigner/icons/separator.png" removable="false" auto-create-binding="false" can-attach-label="false">
106
+ <default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3" />
107
+ </item>
108
+ <item class="javax.swing.JProgressBar" icon="/com/intellij/uiDesigner/icons/progressbar.png" removable="false" auto-create-binding="true" can-attach-label="false">
109
+ <default-constraints vsize-policy="0" hsize-policy="6" anchor="0" fill="1" />
110
+ </item>
111
+ <item class="javax.swing.JToolBar" icon="/com/intellij/uiDesigner/icons/toolbar.png" removable="false" auto-create-binding="false" can-attach-label="false">
112
+ <default-constraints vsize-policy="0" hsize-policy="6" anchor="0" fill="1">
113
+ <preferred-size width="-1" height="20" />
114
+ </default-constraints>
115
+ </item>
116
+ <item class="javax.swing.JToolBar$Separator" icon="/com/intellij/uiDesigner/icons/toolbarSeparator.png" removable="false" auto-create-binding="false" can-attach-label="false">
117
+ <default-constraints vsize-policy="0" hsize-policy="0" anchor="0" fill="1" />
118
+ </item>
119
+ <item class="javax.swing.JScrollBar" icon="/com/intellij/uiDesigner/icons/scrollbar.png" removable="false" auto-create-binding="true" can-attach-label="false">
120
+ <default-constraints vsize-policy="6" hsize-policy="0" anchor="0" fill="2" />
121
+ </item>
122
+ </group>
123
+ </component>
124
+ </project>
data/.idea/vcs.xml ADDED
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="VcsDirectoryMappings">
4
+ <mapping directory="$PROJECT_DIR$" vcs="Git" />
5
+ </component>
6
+ </project>
@@ -0,0 +1,1484 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="ChangeListManager">
4
+ <list default="true" id="5874346e-d205-48c5-ae02-287e8ba86377" name="Default" comment="">
5
+ <change type="MODIFICATION" beforePath="$PROJECT_DIR$/lib/assistant.rb" afterPath="$PROJECT_DIR$/lib/assistant.rb" />
6
+ <change type="MODIFICATION" beforePath="$PROJECT_DIR$/lib/objc2swift_assistant/file_sets.rb" afterPath="$PROJECT_DIR$/lib/objc2swift_assistant/file_sets.rb" />
7
+ <change type="MODIFICATION" beforePath="$PROJECT_DIR$/objc2swift_assistant.gemspec" afterPath="$PROJECT_DIR$/objc2swift_assistant.gemspec" />
8
+ <change type="MODIFICATION" beforePath="$PROJECT_DIR$/.idea/objc2swift_assistant.iml" afterPath="$PROJECT_DIR$/.idea/objc2swift_assistant.iml" />
9
+ <change type="MODIFICATION" beforePath="$PROJECT_DIR$/bin/objc2swift_assistant" afterPath="$PROJECT_DIR$/bin/objc2swift_assistant" />
10
+ <change type="MODIFICATION" beforePath="$PROJECT_DIR$/lib/objc2swift_assistant/objc_2_swift_configuration.rb" afterPath="$PROJECT_DIR$/lib/objc2swift_assistant/objc_2_swift_configuration.rb" />
11
+ <change type="MODIFICATION" beforePath="$PROJECT_DIR$/lib/objc2swift_assistant/version.rb" afterPath="$PROJECT_DIR$/lib/objc2swift_assistant/version.rb" />
12
+ <change type="MODIFICATION" beforePath="$PROJECT_DIR$/.idea/workspace.xml" afterPath="$PROJECT_DIR$/.idea/workspace.xml" />
13
+ </list>
14
+ <ignored path="objc2swift_assistant.iws" />
15
+ <ignored path=".idea/workspace.xml" />
16
+ <ignored path=".idea/dataSources.local.xml" />
17
+ <option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" />
18
+ <option name="TRACKING_ENABLED" value="true" />
19
+ <option name="SHOW_DIALOG" value="false" />
20
+ <option name="HIGHLIGHT_CONFLICTS" value="true" />
21
+ <option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
22
+ <option name="LAST_RESOLUTION" value="IGNORE" />
23
+ </component>
24
+ <component name="ChangesViewManager" flattened_view="true" show_ignored="false" />
25
+ <component name="CoverageDataManager">
26
+ <SUITE FILE_PATH="coverage/objc2swift_assistant@assistant__structure_.coverage" NAME="assistant (structure) Coverage Results" MODIFIED="1437344998546" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$USER_HOME$/tmp/ScratchRuns" MODULE_NAME="objc2swift_assistant" />
27
+ <SUITE FILE_PATH="coverage/objc2swift_assistant@Unnamed.coverage" NAME="Unnamed Coverage Results" MODIFIED="1427998399305" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="" MODULE_NAME="objc2swift_assistant" />
28
+ <SUITE FILE_PATH="coverage/objc2swift_assistant@assistant__nocode.coverage" NAME="assistant -nocode Coverage Results" MODIFIED="1437340431833" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$USER_HOME$/tmp/ScratchRuns" MODULE_NAME="objc2swift_assistant" />
29
+ <SUITE FILE_PATH="coverage/objc2swift_assistant@assistant__log_.coverage" NAME="assistant (log) Coverage Results" MODIFIED="1437703455213" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$USER_HOME$/tmp/ScratchRuns" MODULE_NAME="objc2swift_assistant" />
30
+ <SUITE FILE_PATH="coverage/objc2swift_assistant@assistant.coverage" NAME="assistant Coverage Results" MODIFIED="1437340451406" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$USER_HOME$/tmp/ScratchRuns" MODULE_NAME="objc2swift_assistant" />
31
+ <SUITE FILE_PATH="coverage/objc2swift_assistant@Console.coverage" NAME="Console Coverage Results" MODIFIED="1428015469704" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="" MODULE_NAME="objc2swift_assistant" />
32
+ <SUITE FILE_PATH="coverage/objc2swift_assistant@BNRDTM_2_Swift.coverage" NAME="BNRDTM 2 Swift Coverage Results" MODIFIED="1436676707598" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$USER_HOME$/tmp/ScratchRuns" MODULE_NAME="objc2swift_assistant" />
33
+ <SUITE FILE_PATH="coverage/objc2swift_assistant@objc2swift_assistant.coverage" NAME="assistant Coverage Results" MODIFIED="1428015606315" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="objc2swift_assistant" />
34
+ <SUITE FILE_PATH="coverage/objc2swift_assistant@help_text.coverage" NAME="help text Coverage Results" MODIFIED="1437339789687" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$USER_HOME$/tmp/ScratchRuns" MODULE_NAME="objc2swift_assistant" />
35
+ </component>
36
+ <component name="CreatePatchCommitExecutor">
37
+ <option name="PATCH_PATH" value="" />
38
+ </component>
39
+ <component name="DatabaseView">
40
+ <option name="FLATTEN" value="false" />
41
+ <option name="GROUP_BY_TYPE" value="true" />
42
+ <option name="SORT_CHILDREN" value="false" />
43
+ <option name="SHOW_TABLE_CONSTRAINTS" value="true" />
44
+ </component>
45
+ <component name="ExecutionTargetManager" SELECTED_TARGET="default_target" />
46
+ <component name="FavoritesManager">
47
+ <favorites_list name="objc2swift_assistant" />
48
+ </component>
49
+ <component name="FileEditorManager">
50
+ <leaf>
51
+ <file leaf-file-name="file_sets.rb" pinned="false" current-in-tab="false">
52
+ <entry file="file://$PROJECT_DIR$/lib/objc2swift_assistant/file_sets.rb">
53
+ <provider selected="true" editor-type-id="text-editor">
54
+ <state vertical-scroll-proportion="-12.703704">
55
+ <caret line="59" column="35" selection-start-line="59" selection-start-column="35" selection-end-line="59" selection-end-column="35" />
56
+ <folding />
57
+ </state>
58
+ </provider>
59
+ </entry>
60
+ </file>
61
+ <file leaf-file-name="objc2swift_assistant" pinned="false" current-in-tab="false">
62
+ <entry file="file://$PROJECT_DIR$/bin/objc2swift_assistant">
63
+ <provider selected="true" editor-type-id="text-editor">
64
+ <state vertical-scroll-proportion="0.0">
65
+ <caret line="8" column="0" selection-start-line="8" selection-start-column="0" selection-end-line="8" selection-end-column="0" />
66
+ <folding />
67
+ </state>
68
+ </provider>
69
+ </entry>
70
+ </file>
71
+ <file leaf-file-name="objc2swift_assistant.gemspec" pinned="false" current-in-tab="false">
72
+ <entry file="file://$PROJECT_DIR$/objc2swift_assistant.gemspec">
73
+ <provider selected="true" editor-type-id="text-editor">
74
+ <state vertical-scroll-proportion="0.0">
75
+ <caret line="17" column="25" selection-start-line="17" selection-start-column="25" selection-end-line="17" selection-end-column="25" />
76
+ <folding />
77
+ </state>
78
+ </provider>
79
+ </entry>
80
+ </file>
81
+ <file leaf-file-name="version.rb" pinned="false" current-in-tab="false">
82
+ <entry file="file://$PROJECT_DIR$/lib/objc2swift_assistant/version.rb">
83
+ <provider selected="true" editor-type-id="text-editor">
84
+ <state vertical-scroll-proportion="0.0">
85
+ <caret line="1" column="16" selection-start-line="1" selection-start-column="16" selection-end-line="1" selection-end-column="16" />
86
+ <folding />
87
+ </state>
88
+ </provider>
89
+ </entry>
90
+ </file>
91
+ <file leaf-file-name=".travis.yml" pinned="false" current-in-tab="false">
92
+ <entry file="file://$PROJECT_DIR$/.travis.yml">
93
+ <provider selected="true" editor-type-id="text-editor">
94
+ <state vertical-scroll-proportion="0.0">
95
+ <caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
96
+ <folding />
97
+ </state>
98
+ </provider>
99
+ </entry>
100
+ </file>
101
+ <file leaf-file-name="Gemfile" pinned="false" current-in-tab="true">
102
+ <entry file="file://$PROJECT_DIR$/Gemfile">
103
+ <provider selected="true" editor-type-id="text-editor">
104
+ <state vertical-scroll-proportion="0.2020202">
105
+ <caret line="8" column="0" selection-start-line="8" selection-start-column="0" selection-end-line="8" selection-end-column="0" />
106
+ <folding />
107
+ </state>
108
+ </provider>
109
+ </entry>
110
+ </file>
111
+ <file leaf-file-name="assistant.rb" pinned="false" current-in-tab="false">
112
+ <entry file="file://$PROJECT_DIR$/lib/assistant.rb">
113
+ <provider selected="true" editor-type-id="text-editor">
114
+ <state vertical-scroll-proportion="0.0">
115
+ <caret line="97" column="0" selection-start-line="97" selection-start-column="0" selection-end-line="97" selection-end-column="0" />
116
+ <folding />
117
+ </state>
118
+ </provider>
119
+ </entry>
120
+ </file>
121
+ <file leaf-file-name="objc_2_swift_configuration.rb" pinned="false" current-in-tab="false">
122
+ <entry file="file://$PROJECT_DIR$/lib/objc2swift_assistant/objc_2_swift_configuration.rb">
123
+ <provider selected="true" editor-type-id="text-editor">
124
+ <state vertical-scroll-proportion="0.0">
125
+ <caret line="50" column="0" selection-start-line="50" selection-start-column="0" selection-end-line="50" selection-end-column="0" />
126
+ <folding />
127
+ </state>
128
+ </provider>
129
+ </entry>
130
+ </file>
131
+ </leaf>
132
+ </component>
133
+ <component name="Git.Settings">
134
+ <option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
135
+ </component>
136
+ <component name="GradleLocalSettings">
137
+ <option name="externalProjectsViewState">
138
+ <projects_view />
139
+ </option>
140
+ </component>
141
+ <component name="IdeDocumentHistory">
142
+ <option name="CHANGED_PATHS">
143
+ <list>
144
+ <option value="$PROJECT_DIR$/spec/objc2swift_assistant_spec.rb" />
145
+ <option value="$PROJECT_DIR$/exe/objc2swift_assistant" />
146
+ <option value="$PROJECT_DIR$/lib/objc2swift_assistant.rb" />
147
+ <option value="$PROJECT_DIR$/bin/console" />
148
+ <option value="$PROJECT_DIR$/.gitignore" />
149
+ <option value="$PROJECT_DIR$/lib/objc2swift_assistant/settings_file.rb" />
150
+ <option value="$PROJECT_DIR$/lib/objc2swift_assistant/swift_file_generator.rb" />
151
+ <option value="$PROJECT_DIR$/lib/objc2swift_assistant/recognizers/ImplementationRecognizer.rb" />
152
+ <option value="$PROJECT_DIR$/lib/objc2swift_assistant/recognizers/NSEnumRecognizer.rb" />
153
+ <option value="$PROJECT_DIR$/Gemfile.lock" />
154
+ <option value="$PROJECT_DIR$/Gemfile" />
155
+ <option value="$PROJECT_DIR$/lib/objc2swift_assistant/recognized_objective_c.rb" />
156
+ <option value="$PROJECT_DIR$/lib/objc2swift_assistant/objective_c_2_swift.rb" />
157
+ <option value="$PROJECT_DIR$/lib/objc2swift_assistant/recognizers/category_implementation_recognizer.rb" />
158
+ <option value="$PROJECT_DIR$/lib/objc2swift_assistant/file_sets/objc_file_set.rb" />
159
+ <option value="$USER_HOME$/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/swift_generator-0.1.1/lib/swift_generator/code_generation/swift_class_generation.rb" />
160
+ <option value="$USER_HOME$/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/swift_generator-0.1.2/lib/swift_generator/code_generation/swift_class_generation.rb" />
161
+ <option value="$PROJECT_DIR$/lib/objc2swift_assistant/file_hierarchical_settings.rb" />
162
+ <option value="$PROJECT_DIR$/lib/objc2swift_assistant/objc_2_swift_block_converter.rb" />
163
+ <option value="$USER_HOME$/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/swift_generator-0.1.3/lib/swift_generator/code_generation/swift_class_generation.rb" />
164
+ <option value="$PROJECT_DIR$/lib/objc2swift_assistant/objc_2_swift_type_mapping.rb" />
165
+ <option value="$PROJECT_DIR$/lib/objc2swift_assistant/objc_2_swift_block_conversion.rb" />
166
+ <option value="$PROJECT_DIR$/lib/objc2swift_assistant/objc_2_swift_config.rb" />
167
+ <option value="$PROJECT_DIR$/lib/objc2swift_assistant/objc_variable_types.rb" />
168
+ <option value="$USER_HOME$/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/swift_generator-0.1.4/lib/swift_generator/code_generation/swift_file_template.rb" />
169
+ <option value="$USER_HOME$/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/swift_generator-0.1.5/lib/swift_generator/code_generation/swift_file_template.rb" />
170
+ <option value="$PROJECT_DIR$/README.md" />
171
+ <option value="$PROJECT_DIR$/test/ExampleConfig.json" />
172
+ <option value="$PROJECT_DIR$/lib/objc2swift_assistant/recognizers/pragma_mark_recognizer.rb" />
173
+ <option value="$PROJECT_DIR$/lib/objc2swift_assistant/processing_element.rb" />
174
+ <option value="$PROJECT_DIR$/lib/objc2swift_assistant/recognizers/interface_recognizer.rb" />
175
+ <option value="$PROJECT_DIR$/lib/objc2swift_assistant/recognizers/protocol_recognizer.rb" />
176
+ <option value="$PROJECT_DIR$/lib/objc2swift_assistant/recognizers/category_recognizer.rb" />
177
+ <option value="$PROJECT_DIR$/lib/objc2swift_assistant/recognizers/implementation_recognizer.rb" />
178
+ <option value="$PROJECT_DIR$/lib/objc2swift_assistant/recognizers/method_recognizer.rb" />
179
+ <option value="$PROJECT_DIR$/lib/objc2swift_assistant/recognizers/property_declaration_recognizer.rb" />
180
+ <option value="$PROJECT_DIR$/lib/objc2swift_assistant/logging.rb" />
181
+ <option value="$PROJECT_DIR$/lib/objc2swift_assistant/recognizers/at_sign_directives_recognizer.rb" />
182
+ <option value="$PROJECT_DIR$/lib/objc2swift_assistant/recognizers/recognizer_keys.rb" />
183
+ <option value="$USER_HOME$/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/swift_generator-0.1.6/lib/swift_generator/code_generation/swift_file_template.rb" />
184
+ <option value="$PROJECT_DIR$/lib/objc2swift_assistant/code_recognizer.rb" />
185
+ <option value="$PROJECT_DIR$/lib/objc2swift_assistant/file_hierarchical_config.rb" />
186
+ <option value="$PROJECT_DIR$/lib/objc2swift_assistant/objc_2_swift.rb" />
187
+ <option value="$PROJECT_DIR$/objc2swift_assistant.gemspec" />
188
+ <option value="$PROJECT_DIR$/lib/assistant.rb" />
189
+ <option value="$PROJECT_DIR$/lib/objc2swift_assistant/objc_2_swift_configuration.rb" />
190
+ <option value="$PROJECT_DIR$/lib/objc2swift_assistant/file_sets.rb" />
191
+ <option value="$PROJECT_DIR$/bin/objc2swift_assistant" />
192
+ <option value="$PROJECT_DIR$/lib/objc2swift_assistant/version.rb" />
193
+ </list>
194
+ </option>
195
+ </component>
196
+ <component name="JsBuildToolGruntFileManager" detection-done="true" />
197
+ <component name="JsGulpfileManager">
198
+ <detection-done>true</detection-done>
199
+ </component>
200
+ <component name="MavenImportPreferences">
201
+ <option name="generalSettings">
202
+ <MavenGeneralSettings>
203
+ <option name="mavenHome" value="Bundled (Maven 3)" />
204
+ </MavenGeneralSettings>
205
+ </option>
206
+ </component>
207
+ <component name="NamedScopeManager">
208
+ <order />
209
+ </component>
210
+ <component name="ProjectFrameBounds">
211
+ <option name="y" value="23" />
212
+ <option name="width" value="1920" />
213
+ <option name="height" value="1173" />
214
+ </component>
215
+ <component name="ProjectLevelVcsManager" settingsEditedManually="true">
216
+ <OptionsSetting value="true" id="Add" />
217
+ <OptionsSetting value="true" id="Remove" />
218
+ <OptionsSetting value="true" id="Checkout" />
219
+ <OptionsSetting value="true" id="Update" />
220
+ <OptionsSetting value="true" id="Status" />
221
+ <OptionsSetting value="true" id="Edit" />
222
+ <ConfirmationsSetting value="0" id="Add" />
223
+ <ConfirmationsSetting value="0" id="Remove" />
224
+ </component>
225
+ <component name="ProjectView">
226
+ <navigator currentView="ProjectPane" proportions="" version="1">
227
+ <flattenPackages />
228
+ <showMembers />
229
+ <showModules />
230
+ <showLibraryContents />
231
+ <hideEmptyPackages />
232
+ <abbreviatePackageNames />
233
+ <autoscrollToSource />
234
+ <autoscrollFromSource />
235
+ <sortByType />
236
+ </navigator>
237
+ <panes>
238
+ <pane id="ProjectPane">
239
+ <subPane>
240
+ <PATH>
241
+ <PATH_ELEMENT>
242
+ <option name="myItemId" value="objc2swift_assistant" />
243
+ <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
244
+ </PATH_ELEMENT>
245
+ </PATH>
246
+ <PATH>
247
+ <PATH_ELEMENT>
248
+ <option name="myItemId" value="objc2swift_assistant" />
249
+ <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
250
+ </PATH_ELEMENT>
251
+ <PATH_ELEMENT>
252
+ <option name="myItemId" value="objc2swift_assistant" />
253
+ <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
254
+ </PATH_ELEMENT>
255
+ </PATH>
256
+ <PATH>
257
+ <PATH_ELEMENT>
258
+ <option name="myItemId" value="objc2swift_assistant" />
259
+ <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
260
+ </PATH_ELEMENT>
261
+ <PATH_ELEMENT>
262
+ <option name="myItemId" value="objc2swift_assistant" />
263
+ <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
264
+ </PATH_ELEMENT>
265
+ <PATH_ELEMENT>
266
+ <option name="myItemId" value="lib" />
267
+ <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
268
+ </PATH_ELEMENT>
269
+ </PATH>
270
+ <PATH>
271
+ <PATH_ELEMENT>
272
+ <option name="myItemId" value="objc2swift_assistant" />
273
+ <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
274
+ </PATH_ELEMENT>
275
+ <PATH_ELEMENT>
276
+ <option name="myItemId" value="objc2swift_assistant" />
277
+ <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
278
+ </PATH_ELEMENT>
279
+ <PATH_ELEMENT>
280
+ <option name="myItemId" value="lib" />
281
+ <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
282
+ </PATH_ELEMENT>
283
+ <PATH_ELEMENT>
284
+ <option name="myItemId" value="objc2swift_assistant" />
285
+ <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
286
+ </PATH_ELEMENT>
287
+ </PATH>
288
+ <PATH>
289
+ <PATH_ELEMENT>
290
+ <option name="myItemId" value="objc2swift_assistant" />
291
+ <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
292
+ </PATH_ELEMENT>
293
+ <PATH_ELEMENT>
294
+ <option name="myItemId" value="objc2swift_assistant" />
295
+ <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
296
+ </PATH_ELEMENT>
297
+ <PATH_ELEMENT>
298
+ <option name="myItemId" value="bin" />
299
+ <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
300
+ </PATH_ELEMENT>
301
+ </PATH>
302
+ </subPane>
303
+ </pane>
304
+ <pane id="Scratches" />
305
+ <pane id="Scope" />
306
+ <pane id="PackagesPane" />
307
+ </panes>
308
+ </component>
309
+ <component name="PropertiesComponent">
310
+ <property name="WebServerToolWindowFactoryState" value="false" />
311
+ <property name="recentsLimit" value="5" />
312
+ <property name="FullScreen" value="false" />
313
+ <property name="last_opened_file_path" value="$USER_HOME$/tmp/ScratchRuns" />
314
+ <property name="restartRequiresConfirmation" value="true" />
315
+ <property name="options.lastSelected" value="preferences.pluginManager" />
316
+ <property name="options.splitter.main.proportions" value="0.3" />
317
+ <property name="options.splitter.details.proportions" value="0.2" />
318
+ <property name="SearchEverywhereHistoryKey" value="&#9;FILE&#9;file:///Users/ckornher/Dev/Projects/SwiftTools/objc2swift_assistant/lib/objc2swift_assistant/code_recognizer.rb" />
319
+ <property name="settings.editor.selected.configurable" value="preferences.pluginManager" />
320
+ <property name="settings.editor.splitter.proportion" value="0.2" />
321
+ <property name="aspect.path.notification.shown" value="true" />
322
+ <property name="project.structure.last.edited" value="Modules" />
323
+ <property name="project.structure.proportion" value="0.0" />
324
+ <property name="project.structure.side.proportion" value="0.0" />
325
+ </component>
326
+ <component name="RecentsManager">
327
+ <key name="MoveFile.RECENT_KEYS">
328
+ <recent name="$PROJECT_DIR$/lib/objc2swift_assistant" />
329
+ <recent name="$PROJECT_DIR$/lib/objc2swift_assistant/file_sets" />
330
+ <recent name="$PROJECT_DIR$/bin" />
331
+ </key>
332
+ </component>
333
+ <component name="RunManager" selected="Gem Command.assistant (log)">
334
+ <configuration default="true" type="AndroidRunConfigurationType" factoryName="Android Application">
335
+ <module name="" />
336
+ <option name="ACTIVITY_CLASS" value="" />
337
+ <option name="MODE" value="default_activity" />
338
+ <option name="DEPLOY" value="true" />
339
+ <option name="ARTIFACT_NAME" value="" />
340
+ <option name="TARGET_SELECTION_MODE" value="EMULATOR" />
341
+ <option name="USE_LAST_SELECTED_DEVICE" value="false" />
342
+ <option name="PREFERRED_AVD" value="" />
343
+ <option name="USE_COMMAND_LINE" value="true" />
344
+ <option name="COMMAND_LINE" value="" />
345
+ <option name="WIPE_USER_DATA" value="false" />
346
+ <option name="DISABLE_BOOT_ANIMATION" value="false" />
347
+ <option name="NETWORK_SPEED" value="full" />
348
+ <option name="NETWORK_LATENCY" value="none" />
349
+ <option name="CLEAR_LOGCAT" value="false" />
350
+ <option name="SHOW_LOGCAT_AUTOMATICALLY" value="true" />
351
+ <option name="FILTER_LOGCAT_AUTOMATICALLY" value="true" />
352
+ <method />
353
+ </configuration>
354
+ <configuration default="true" type="AndroidTestRunConfigurationType" factoryName="Android Tests">
355
+ <module name="" />
356
+ <option name="TESTING_TYPE" value="0" />
357
+ <option name="INSTRUMENTATION_RUNNER_CLASS" value="" />
358
+ <option name="METHOD_NAME" value="" />
359
+ <option name="CLASS_NAME" value="" />
360
+ <option name="PACKAGE_NAME" value="" />
361
+ <option name="TARGET_SELECTION_MODE" value="EMULATOR" />
362
+ <option name="USE_LAST_SELECTED_DEVICE" value="false" />
363
+ <option name="PREFERRED_AVD" value="" />
364
+ <option name="USE_COMMAND_LINE" value="true" />
365
+ <option name="COMMAND_LINE" value="" />
366
+ <option name="WIPE_USER_DATA" value="false" />
367
+ <option name="DISABLE_BOOT_ANIMATION" value="false" />
368
+ <option name="NETWORK_SPEED" value="full" />
369
+ <option name="NETWORK_LATENCY" value="none" />
370
+ <option name="CLEAR_LOGCAT" value="false" />
371
+ <option name="SHOW_LOGCAT_AUTOMATICALLY" value="true" />
372
+ <option name="FILTER_LOGCAT_AUTOMATICALLY" value="true" />
373
+ <method />
374
+ </configuration>
375
+ <configuration default="true" type="Application" factoryName="Application">
376
+ <extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" />
377
+ <option name="MAIN_CLASS_NAME" />
378
+ <option name="VM_PARAMETERS" />
379
+ <option name="PROGRAM_PARAMETERS" />
380
+ <option name="WORKING_DIRECTORY" />
381
+ <option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
382
+ <option name="ALTERNATIVE_JRE_PATH" />
383
+ <option name="ENABLE_SWING_INSPECTOR" value="false" />
384
+ <option name="ENV_VARIABLES" />
385
+ <option name="PASS_PARENT_ENVS" value="true" />
386
+ <module name="" />
387
+ <envs />
388
+ <method />
389
+ </configuration>
390
+ <configuration default="true" type="BashConfigurationType" factoryName="Bash">
391
+ <option name="INTERPRETER_OPTIONS" value="" />
392
+ <option name="INTERPRETER_PATH" value="/bin/bash" />
393
+ <option name="WORKING_DIRECTORY" value="" />
394
+ <option name="PARENT_ENVS" value="true" />
395
+ <option name="SCRIPT_NAME" value="" />
396
+ <option name="PARAMETERS" value="" />
397
+ <module name="" />
398
+ <envs />
399
+ <method />
400
+ </configuration>
401
+ <configuration default="true" type="CommandRunConfigurationType" factoryName="Gem Command">
402
+ <module name="" />
403
+ <COMMAND_RUN_CONFIGURATION NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
404
+ <COMMAND_RUN_CONFIGURATION NAME="WORK DIR" VALUE="" />
405
+ <COMMAND_RUN_CONFIGURATION NAME="SHOULD_USE_SDK" VALUE="false" />
406
+ <COMMAND_RUN_CONFIGURATION NAME="ALTERN_SDK_NAME" VALUE="" />
407
+ <COMMAND_RUN_CONFIGURATION NAME="myPassParentEnvs" VALUE="true" />
408
+ <envs />
409
+ <EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
410
+ <EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
411
+ <EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
412
+ <COVERAGE_PATTERN ENABLED="true">
413
+ <PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
414
+ </COVERAGE_PATTERN>
415
+ </EXTENSION>
416
+ <EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
417
+ <COMMAND_CONFIG_SETTINGS_ID NAME="GEM_NAME" VALUE="" />
418
+ <COMMAND_CONFIG_SETTINGS_ID NAME="EXECUTABLE_NAME" VALUE="" />
419
+ <COMMAND_CONFIG_SETTINGS_ID NAME="EXECUTABLE_ARGS" VALUE="" />
420
+ <COMMAND_CONFIG_SETTINGS_ID NAME="WORKING_DIR" VALUE="" />
421
+ <method />
422
+ </configuration>
423
+ <configuration default="true" type="CucumberJavaRunConfigurationType" factoryName="Cucumber java">
424
+ <extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" />
425
+ <option name="myFilePath" />
426
+ <option name="GLUE" />
427
+ <option name="myNameFilter" />
428
+ <option name="myGeneratedName" />
429
+ <option name="MAIN_CLASS_NAME" />
430
+ <option name="VM_PARAMETERS" />
431
+ <option name="PROGRAM_PARAMETERS" />
432
+ <option name="WORKING_DIRECTORY" />
433
+ <option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
434
+ <option name="ALTERNATIVE_JRE_PATH" />
435
+ <option name="ENABLE_SWING_INSPECTOR" value="false" />
436
+ <option name="ENV_VARIABLES" />
437
+ <option name="PASS_PARENT_ENVS" value="true" />
438
+ <module name="" />
439
+ <envs />
440
+ <method />
441
+ </configuration>
442
+ <configuration default="true" type="FlashRunConfigurationType" factoryName="Flash App">
443
+ <option name="BCName" value="" />
444
+ <option name="IOSSimulatorSdkPath" value="" />
445
+ <option name="adlOptions" value="" />
446
+ <option name="airProgramParameters" value="" />
447
+ <option name="appDescriptorForEmulator" value="Android" />
448
+ <option name="debugTransport" value="USB" />
449
+ <option name="debuggerSdkRaw" value="BC SDK" />
450
+ <option name="emulator" value="NexusOne" />
451
+ <option name="emulatorAdlOptions" value="" />
452
+ <option name="fastPackaging" value="true" />
453
+ <option name="fullScreenHeight" value="0" />
454
+ <option name="fullScreenWidth" value="0" />
455
+ <option name="launchUrl" value="false" />
456
+ <option name="launcherParameters">
457
+ <LauncherParameters>
458
+ <option name="browser" value="a7bb68e0-33c0-4d6f-a81a-aac1fdb870c8" />
459
+ <option name="launcherType" value="OSDefault" />
460
+ <option name="newPlayerInstance" value="false" />
461
+ <option name="playerPath" value="/Applications/Flash Player Debugger.app" />
462
+ </LauncherParameters>
463
+ </option>
464
+ <option name="mobileRunTarget" value="Emulator" />
465
+ <option name="moduleName" value="" />
466
+ <option name="overriddenMainClass" value="" />
467
+ <option name="overriddenOutputFileName" value="" />
468
+ <option name="overrideMainClass" value="false" />
469
+ <option name="runTrusted" value="true" />
470
+ <option name="screenDpi" value="0" />
471
+ <option name="screenHeight" value="0" />
472
+ <option name="screenWidth" value="0" />
473
+ <option name="url" value="http://" />
474
+ <option name="usbDebugPort" value="7936" />
475
+ <method />
476
+ </configuration>
477
+ <configuration default="true" type="FlexUnitRunConfigurationType" factoryName="FlexUnit" appDescriptorForEmulator="Android" class_name="" emulatorAdlOptions="" method_name="" package_name="" scope="Class">
478
+ <option name="BCName" value="" />
479
+ <option name="launcherParameters">
480
+ <LauncherParameters>
481
+ <option name="browser" value="a7bb68e0-33c0-4d6f-a81a-aac1fdb870c8" />
482
+ <option name="launcherType" value="OSDefault" />
483
+ <option name="newPlayerInstance" value="false" />
484
+ <option name="playerPath" value="/Applications/Flash Player Debugger.app" />
485
+ </LauncherParameters>
486
+ </option>
487
+ <option name="moduleName" value="" />
488
+ <option name="trusted" value="true" />
489
+ <method />
490
+ </configuration>
491
+ <configuration default="true" type="GradleRunConfiguration" factoryName="Gradle">
492
+ <ExternalSystemSettings>
493
+ <option name="executionName" />
494
+ <option name="externalProjectPath" />
495
+ <option name="externalSystemIdString" value="GRADLE" />
496
+ <option name="scriptParameters" />
497
+ <option name="taskDescriptions">
498
+ <list />
499
+ </option>
500
+ <option name="taskNames">
501
+ <list />
502
+ </option>
503
+ <option name="vmOptions" />
504
+ </ExternalSystemSettings>
505
+ <method />
506
+ </configuration>
507
+ <configuration default="true" type="GrailsRunConfigurationType" factoryName="Grails">
508
+ <module name="" />
509
+ <setting name="vmparams" value="" />
510
+ <setting name="cmdLine" value="run-app" />
511
+ <setting name="depsClasspath" value="false" />
512
+ <setting name="passParentEnv" value="true" />
513
+ <extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" />
514
+ <setting name="launchBrowser" value="false" />
515
+ <method />
516
+ </configuration>
517
+ <configuration default="true" type="JUnit" factoryName="JUnit">
518
+ <extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" />
519
+ <module name="" />
520
+ <option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
521
+ <option name="ALTERNATIVE_JRE_PATH" />
522
+ <option name="PACKAGE_NAME" />
523
+ <option name="MAIN_CLASS_NAME" />
524
+ <option name="METHOD_NAME" />
525
+ <option name="TEST_OBJECT" value="class" />
526
+ <option name="VM_PARAMETERS" />
527
+ <option name="PARAMETERS" />
528
+ <option name="WORKING_DIRECTORY" />
529
+ <option name="ENV_VARIABLES" />
530
+ <option name="PASS_PARENT_ENVS" value="true" />
531
+ <option name="TEST_SEARCH_SCOPE">
532
+ <value defaultName="singleModule" />
533
+ </option>
534
+ <envs />
535
+ <patterns />
536
+ <method />
537
+ </configuration>
538
+ <configuration default="true" type="JarApplication" factoryName="JAR Application">
539
+ <extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" />
540
+ <envs />
541
+ <method />
542
+ </configuration>
543
+ <configuration default="true" type="JavascriptDebugType" factoryName="JavaScript Debug">
544
+ <method />
545
+ </configuration>
546
+ <configuration default="true" type="NodeJSConfigurationType" factoryName="Node.js" working-dir="">
547
+ <method />
548
+ </configuration>
549
+ <configuration default="true" type="RSpecRunConfigurationType" factoryName="RSpec">
550
+ <predefined_log_file id="RUBY_RSPEC" enabled="true" />
551
+ <module name="" />
552
+ <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
553
+ <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
554
+ <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
555
+ <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
556
+ <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
557
+ <envs />
558
+ <EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
559
+ <EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
560
+ <EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
561
+ <COVERAGE_PATTERN ENABLED="true">
562
+ <PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
563
+ </COVERAGE_PATTERN>
564
+ </EXTENSION>
565
+ <EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
566
+ <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
567
+ <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
568
+ <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="" />
569
+ <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
570
+ <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="" />
571
+ <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
572
+ <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="" />
573
+ <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
574
+ <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_SPEC_RUNNER" VALUE="false" />
575
+ <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
576
+ <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
577
+ <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
578
+ <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
579
+ <method />
580
+ </configuration>
581
+ <configuration default="true" type="RubyRunConfigurationType" factoryName="Ruby">
582
+ <module name="" />
583
+ <RUBY_RUN_CONFIG NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
584
+ <RUBY_RUN_CONFIG NAME="WORK DIR" VALUE="" />
585
+ <RUBY_RUN_CONFIG NAME="SHOULD_USE_SDK" VALUE="false" />
586
+ <RUBY_RUN_CONFIG NAME="ALTERN_SDK_NAME" VALUE="" />
587
+ <RUBY_RUN_CONFIG NAME="myPassParentEnvs" VALUE="true" />
588
+ <envs />
589
+ <EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
590
+ <EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
591
+ <EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
592
+ <COVERAGE_PATTERN ENABLED="true">
593
+ <PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
594
+ </COVERAGE_PATTERN>
595
+ </EXTENSION>
596
+ <EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
597
+ <RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="" />
598
+ <RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="" />
599
+ <method />
600
+ </configuration>
601
+ <configuration default="true" type="ScalaTestRunConfiguration" factoryName="ScalaTest">
602
+ <extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" />
603
+ <extension name="scalaCoverage" />
604
+ <module name="" />
605
+ <setting name="path" value="" />
606
+ <setting name="package" value="" />
607
+ <setting name="vmparams" value="" />
608
+ <setting name="params" value="" />
609
+ <setting name="workingDirectory" value="$PROJECT_DIR$" />
610
+ <setting name="searchForTest" value="Across module dependencies" />
611
+ <setting name="testName" value="" />
612
+ <setting name="testKind" value="Class" />
613
+ <setting name="showProgressMessages" value="true" />
614
+ <envs />
615
+ <method />
616
+ </configuration>
617
+ <configuration default="true" type="Specs2RunConfiguration" factoryName="Specs2">
618
+ <extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" />
619
+ <extension name="scalaCoverage" />
620
+ <module name="" />
621
+ <setting name="path" value="" />
622
+ <setting name="package" value="" />
623
+ <setting name="vmparams" value="" />
624
+ <setting name="params" value="" />
625
+ <setting name="workingDirectory" value="$PROJECT_DIR$" />
626
+ <setting name="searchForTest" value="Across module dependencies" />
627
+ <setting name="testName" value="" />
628
+ <setting name="testKind" value="Class" />
629
+ <setting name="showProgressMessages" value="true" />
630
+ <envs />
631
+ <method />
632
+ </configuration>
633
+ <configuration default="true" type="SpringBootApplicationConfigurationType" factoryName="Spring Boot">
634
+ <extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" />
635
+ <module name="" />
636
+ <envs />
637
+ <method />
638
+ </configuration>
639
+ <configuration default="true" type="TestNG" factoryName="TestNG">
640
+ <extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" />
641
+ <module name="" />
642
+ <option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
643
+ <option name="ALTERNATIVE_JRE_PATH" />
644
+ <option name="SUITE_NAME" />
645
+ <option name="PACKAGE_NAME" />
646
+ <option name="MAIN_CLASS_NAME" />
647
+ <option name="METHOD_NAME" />
648
+ <option name="GROUP_NAME" />
649
+ <option name="TEST_OBJECT" value="CLASS" />
650
+ <option name="VM_PARAMETERS" />
651
+ <option name="PARAMETERS" />
652
+ <option name="WORKING_DIRECTORY" />
653
+ <option name="OUTPUT_DIRECTORY" />
654
+ <option name="ANNOTATION_TYPE" />
655
+ <option name="ENV_VARIABLES" />
656
+ <option name="PASS_PARENT_ENVS" value="true" />
657
+ <option name="TEST_SEARCH_SCOPE">
658
+ <value defaultName="singleModule" />
659
+ </option>
660
+ <option name="USE_DEFAULT_REPORTERS" value="false" />
661
+ <option name="PROPERTIES_FILE" />
662
+ <envs />
663
+ <properties />
664
+ <listeners />
665
+ <method />
666
+ </configuration>
667
+ <configuration default="true" type="TestUnitRunConfigurationType" factoryName="Test::Unit/Shoulda/Minitest">
668
+ <predefined_log_file id="RUBY_TESTUNIT" enabled="true" />
669
+ <module name="" />
670
+ <RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
671
+ <RTEST_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
672
+ <RTEST_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
673
+ <RTEST_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
674
+ <RTEST_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
675
+ <envs />
676
+ <EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
677
+ <EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
678
+ <EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
679
+ <COVERAGE_PATTERN ENABLED="true">
680
+ <PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
681
+ </COVERAGE_PATTERN>
682
+ </EXTENSION>
683
+ <EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
684
+ <RTEST_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
685
+ <RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
686
+ <RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="" />
687
+ <RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_METHOD_NAME" VALUE="" />
688
+ <RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
689
+ <RTEST_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
690
+ <RTEST_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
691
+ <RTEST_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
692
+ <RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_OPTIONS" VALUE="" />
693
+ <method />
694
+ </configuration>
695
+ <configuration default="true" type="js.build_tools.gulp" factoryName="Gulp.js">
696
+ <node-options />
697
+ <gulpfile />
698
+ <tasks />
699
+ <arguments />
700
+ <pass-parent-envs>true</pass-parent-envs>
701
+ <envs />
702
+ <method />
703
+ </configuration>
704
+ <configuration default="true" type="osgi.bnd.run" factoryName="Run Launcher">
705
+ <method />
706
+ </configuration>
707
+ <configuration default="true" type="osgi.bnd.run" factoryName="Test Launcher (JUnit)">
708
+ <method />
709
+ </configuration>
710
+ <configuration default="true" type="uTestRunConfiguration" factoryName="utest">
711
+ <extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" />
712
+ <extension name="scalaCoverage" />
713
+ <module name="" />
714
+ <setting name="path" value="" />
715
+ <setting name="package" value="" />
716
+ <setting name="vmparams" value="" />
717
+ <setting name="params" value="" />
718
+ <setting name="workingDirectory" value="$PROJECT_DIR$" />
719
+ <setting name="searchForTest" value="Across module dependencies" />
720
+ <setting name="testName" value="" />
721
+ <setting name="testKind" value="Class" />
722
+ <setting name="showProgressMessages" value="true" />
723
+ <envs />
724
+ <method />
725
+ </configuration>
726
+ <configuration default="false" name="assistant (structure)" type="CommandRunConfigurationType" factoryName="Gem Command">
727
+ <module name="objc2swift_assistant" />
728
+ <COMMAND_RUN_CONFIGURATION NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
729
+ <COMMAND_RUN_CONFIGURATION NAME="WORK DIR" VALUE="$USER_HOME$/tmp/ScratchRuns" />
730
+ <COMMAND_RUN_CONFIGURATION NAME="SHOULD_USE_SDK" VALUE="false" />
731
+ <COMMAND_RUN_CONFIGURATION NAME="ALTERN_SDK_NAME" VALUE="" />
732
+ <COMMAND_RUN_CONFIGURATION NAME="myPassParentEnvs" VALUE="true" />
733
+ <envs />
734
+ <EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="true" />
735
+ <EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
736
+ <EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
737
+ <COVERAGE_PATTERN ENABLED="true">
738
+ <PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
739
+ </COVERAGE_PATTERN>
740
+ </EXTENSION>
741
+ <EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
742
+ <COMMAND_CONFIG_SETTINGS_ID NAME="GEM_NAME" VALUE="objc2swift_assistant" />
743
+ <COMMAND_CONFIG_SETTINGS_ID NAME="EXECUTABLE_NAME" VALUE="objc2swift_assistant" />
744
+ <COMMAND_CONFIG_SETTINGS_ID NAME="EXECUTABLE_ARGS" VALUE="generate --structure errors --source $PROJECT_DIR$/../TestData/ObjC --dest $PROJECT_DIR$/../TestData/Swift --trace --config $PROJECT_DIR$/test/ExampleConfig.json --log none" />
745
+ <COMMAND_CONFIG_SETTINGS_ID NAME="WORKING_DIR" VALUE="generate --structure errors --source $PROJECT_DIR$/../TestData/ObjC --dest $PROJECT_DIR$/../TestData/Swift --trace --config $PROJECT_DIR$/test/ExampleConfig.json --log none" />
746
+ <method />
747
+ </configuration>
748
+ <configuration default="false" name="assistant (log)" type="CommandRunConfigurationType" factoryName="Gem Command">
749
+ <module name="objc2swift_assistant" />
750
+ <COMMAND_RUN_CONFIGURATION NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
751
+ <COMMAND_RUN_CONFIGURATION NAME="WORK DIR" VALUE="$USER_HOME$/tmp/ScratchRuns" />
752
+ <COMMAND_RUN_CONFIGURATION NAME="SHOULD_USE_SDK" VALUE="false" />
753
+ <COMMAND_RUN_CONFIGURATION NAME="ALTERN_SDK_NAME" VALUE="" />
754
+ <COMMAND_RUN_CONFIGURATION NAME="myPassParentEnvs" VALUE="true" />
755
+ <envs />
756
+ <EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="true" />
757
+ <EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
758
+ <EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
759
+ <COVERAGE_PATTERN ENABLED="true">
760
+ <PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
761
+ </COVERAGE_PATTERN>
762
+ </EXTENSION>
763
+ <EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
764
+ <COMMAND_CONFIG_SETTINGS_ID NAME="GEM_NAME" VALUE="objc2swift_assistant" />
765
+ <COMMAND_CONFIG_SETTINGS_ID NAME="EXECUTABLE_NAME" VALUE="objc2swift_assistant" />
766
+ <COMMAND_CONFIG_SETTINGS_ID NAME="EXECUTABLE_ARGS" VALUE="generate --source $PROJECT_DIR$/../TestData/ObjC --dest $PROJECT_DIR$/../TestData/Swift --trace --config $PROJECT_DIR$/test/ExampleConfig.json --log none" />
767
+ <COMMAND_CONFIG_SETTINGS_ID NAME="WORKING_DIR" VALUE="generate --source $PROJECT_DIR$/../TestData/ObjC --dest $PROJECT_DIR$/../TestData/Swift --trace --config $PROJECT_DIR$/test/ExampleConfig.json --log none" />
768
+ <method />
769
+ </configuration>
770
+ <configuration default="false" name="BNRDTM 2 Swift" type="CommandRunConfigurationType" factoryName="Gem Command">
771
+ <module name="objc2swift_assistant" />
772
+ <COMMAND_RUN_CONFIGURATION NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
773
+ <COMMAND_RUN_CONFIGURATION NAME="WORK DIR" VALUE="$USER_HOME$/tmp/ScratchRuns" />
774
+ <COMMAND_RUN_CONFIGURATION NAME="SHOULD_USE_SDK" VALUE="false" />
775
+ <COMMAND_RUN_CONFIGURATION NAME="ALTERN_SDK_NAME" VALUE="" />
776
+ <COMMAND_RUN_CONFIGURATION NAME="myPassParentEnvs" VALUE="true" />
777
+ <envs />
778
+ <EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="true" />
779
+ <EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
780
+ <EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
781
+ <COVERAGE_PATTERN ENABLED="true">
782
+ <PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
783
+ </COVERAGE_PATTERN>
784
+ </EXTENSION>
785
+ <EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
786
+ <COMMAND_CONFIG_SETTINGS_ID NAME="GEM_NAME" VALUE="objc2swift_assistant" />
787
+ <COMMAND_CONFIG_SETTINGS_ID NAME="EXECUTABLE_NAME" VALUE="objc2swift_assistant" />
788
+ <COMMAND_CONFIG_SETTINGS_ID NAME="EXECUTABLE_ARGS" VALUE="generate --source $USER_HOME$/Desktop/BNRDynamicTypeManager --dest $USER_HOME$/Desktop/BNRDTMSwift --trace --log none" />
789
+ <COMMAND_CONFIG_SETTINGS_ID NAME="WORKING_DIR" VALUE="generate --source $USER_HOME$/Desktop/BNRDynamicTypeManager --dest $USER_HOME$/Desktop/BNRDTMSwift --trace --log none" />
790
+ <method />
791
+ </configuration>
792
+ <list size="6">
793
+ <item index="0" class="java.lang.String" itemvalue="Gem Command.assistant" />
794
+ <item index="1" class="java.lang.String" itemvalue="Gem Command.assistant (structure)" />
795
+ <item index="2" class="java.lang.String" itemvalue="Gem Command.assistant (log)" />
796
+ <item index="3" class="java.lang.String" itemvalue="Gem Command.BNRDTM 2 Swift" />
797
+ <item index="4" class="java.lang.String" itemvalue="Gem Command.help text" />
798
+ <item index="5" class="java.lang.String" itemvalue="Ruby.Console" />
799
+ </list>
800
+ </component>
801
+ <component name="SbtLocalSettings">
802
+ <option name="externalProjectsViewState">
803
+ <projects_view />
804
+ </option>
805
+ </component>
806
+ <component name="ShelveChangesManager" show_recycled="false" />
807
+ <component name="SvnConfiguration">
808
+ <configuration />
809
+ </component>
810
+ <component name="TaskManager">
811
+ <task active="true" id="Default" summary="Default task">
812
+ <changelist id="5874346e-d205-48c5-ae02-287e8ba86377" name="Default" comment="" />
813
+ <created>1427995113458</created>
814
+ <option name="number" value="Default" />
815
+ <updated>1427995113458</updated>
816
+ <workItem from="1430417366625" duration="19855000" />
817
+ <workItem from="1430453332794" duration="18625000" />
818
+ <workItem from="1430597176126" duration="5953000" />
819
+ <workItem from="1430679306958" duration="39000" />
820
+ <workItem from="1430679374026" duration="23159000" />
821
+ <workItem from="1430862485786" duration="19837000" />
822
+ <workItem from="1430952303551" duration="4157000" />
823
+ <workItem from="1431141181790" duration="167000" />
824
+ <workItem from="1431142067643" duration="6000" />
825
+ <workItem from="1431142094746" duration="2043000" />
826
+ <workItem from="1431205438987" duration="1366000" />
827
+ <workItem from="1431207688324" duration="3752000" />
828
+ <workItem from="1431230691853" duration="2089000" />
829
+ <workItem from="1431283645702" duration="11000" />
830
+ <workItem from="1431292199919" duration="11019000" />
831
+ <workItem from="1431563898028" duration="564000" />
832
+ <workItem from="1431789919091" duration="11000" />
833
+ <workItem from="1431809768429" duration="4668000" />
834
+ <workItem from="1431815464463" duration="1454000" />
835
+ <workItem from="1431893814482" duration="8323000" />
836
+ <workItem from="1432414673583" duration="5089000" />
837
+ <workItem from="1432496957844" duration="12066000" />
838
+ <workItem from="1432512438753" duration="22000" />
839
+ <workItem from="1432512482999" duration="819000" />
840
+ <workItem from="1432513763783" duration="870000" />
841
+ <workItem from="1432578597702" duration="6509000" />
842
+ <workItem from="1432588518526" duration="25000" />
843
+ <workItem from="1432588561862" duration="529000" />
844
+ <workItem from="1432589306067" duration="1253000" />
845
+ <workItem from="1432591143078" duration="69000" />
846
+ <workItem from="1432591231251" duration="55000" />
847
+ <workItem from="1432591369941" duration="132000" />
848
+ <workItem from="1432591570196" duration="11117000" />
849
+ <workItem from="1432951990323" duration="232000" />
850
+ <workItem from="1433021162922" duration="120000" />
851
+ <workItem from="1433096488261" duration="6088000" />
852
+ <workItem from="1433620792890" duration="9884000" />
853
+ <workItem from="1434220608847" duration="12750000" />
854
+ <workItem from="1434312800675" duration="4625000" />
855
+ <workItem from="1434838667239" duration="2245000" />
856
+ <workItem from="1435436956045" duration="5842000" />
857
+ <workItem from="1435444996287" duration="564000" />
858
+ <workItem from="1435445628945" duration="8167000" />
859
+ <workItem from="1435528591961" duration="585000" />
860
+ <workItem from="1435529199812" duration="32000" />
861
+ <workItem from="1435529254812" duration="7556000" />
862
+ <workItem from="1435626084653" duration="366000" />
863
+ <workItem from="1435958621577" duration="633000" />
864
+ <workItem from="1435959284293" duration="3911000" />
865
+ <workItem from="1435973131480" duration="617000" />
866
+ <workItem from="1436033972978" duration="3177000" />
867
+ <workItem from="1436129834507" duration="7921000" />
868
+ <workItem from="1436660219781" duration="773000" />
869
+ <workItem from="1436913709461" duration="6000" />
870
+ <workItem from="1437338463744" duration="2087000" />
871
+ <workItem from="1437342098787" duration="4389000" />
872
+ </task>
873
+ <servers />
874
+ </component>
875
+ <component name="TimeTrackingManager">
876
+ <option name="totallyTimeSpent" value="248223000" />
877
+ </component>
878
+ <component name="TodoView">
879
+ <todo-panel id="selected-file">
880
+ <is-autoscroll-to-source value="true" />
881
+ </todo-panel>
882
+ <todo-panel id="all">
883
+ <are-packages-shown value="true" />
884
+ <is-autoscroll-to-source value="true" />
885
+ </todo-panel>
886
+ </component>
887
+ <component name="ToolWindowManager">
888
+ <frame x="0" y="23" width="1920" height="1173" extended-state="0" />
889
+ <editor active="false" />
890
+ <layout>
891
+ <window_info id="Palette&#9;" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
892
+ <window_info id="UI Designer" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
893
+ <window_info id="Designer" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
894
+ <window_info id="Palette" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
895
+ <window_info id="Terminal" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.32757053" sideWeight="0.5" order="11" side_tool="false" content_ui="tabs" />
896
+ <window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.4622384" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
897
+ <window_info id="Ant Build" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="4" side_tool="false" content_ui="tabs" />
898
+ <window_info id="Database" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.3290735" sideWeight="0.5" order="6" side_tool="false" content_ui="tabs" />
899
+ <window_info id="Debug" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.3121019" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
900
+ <window_info id="Event Log" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="7" side_tool="true" content_ui="tabs" />
901
+ <window_info id="Favorites" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.27576405" sideWeight="0.5009141" order="4" side_tool="true" content_ui="tabs" />
902
+ <window_info id="Version Control" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.32939035" sideWeight="0.5" order="9" side_tool="false" content_ui="tabs" />
903
+ <window_info id="TODO" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.32970026" sideWeight="0.5" order="6" side_tool="false" content_ui="tabs" />
904
+ <window_info id="Structure" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.20394036" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
905
+ <window_info id="Maven Projects" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
906
+ <window_info id="Application Servers" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="10" side_tool="false" content_ui="tabs" />
907
+ <window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.19062833" sideWeight="0.49908593" order="2" side_tool="false" content_ui="combo" />
908
+ <window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.43403095" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
909
+ <window_info id="Cvs" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="4" side_tool="false" content_ui="tabs" />
910
+ <window_info id="Changes" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.32960477" sideWeight="0.5" order="8" side_tool="false" content_ui="tabs" />
911
+ <window_info id="Message" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
912
+ <window_info id="Commander" active="false" anchor="right" auto_hide="false" internal_type="SLIDING" type="SLIDING" visible="false" weight="0.4" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
913
+ <window_info id="Inspection" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.4" sideWeight="0.5" order="5" side_tool="false" content_ui="tabs" />
914
+ <window_info id="Hierarchy" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="5" side_tool="false" content_ui="combo" />
915
+ </layout>
916
+ <layout-to-restore>
917
+ <window_info id="Cvs" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="4" side_tool="false" content_ui="tabs" />
918
+ <window_info id="Palette&#9;" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
919
+ <window_info id="UI Designer" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
920
+ <window_info id="Changes" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.32960477" sideWeight="0.5" order="8" side_tool="false" content_ui="tabs" />
921
+ <window_info id="Designer" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
922
+ <window_info id="Message" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
923
+ <window_info id="Palette" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
924
+ <window_info id="Terminal" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.32960477" sideWeight="0.5" order="11" side_tool="false" content_ui="tabs" />
925
+ <window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.31970936" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
926
+ <window_info id="Ant Build" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="4" side_tool="false" content_ui="tabs" />
927
+ <window_info id="Database" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.3290735" sideWeight="0.5" order="6" side_tool="false" content_ui="tabs" />
928
+ <window_info id="Debug" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.32697546" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
929
+ <window_info id="Favorites" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.27576405" sideWeight="0.5009141" order="4" side_tool="true" content_ui="tabs" />
930
+ <window_info id="Event Log" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="7" side_tool="true" content_ui="tabs" />
931
+ <window_info id="Version Control" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="9" side_tool="false" content_ui="tabs" />
932
+ <window_info id="TODO" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.32970026" sideWeight="0.5" order="6" side_tool="false" content_ui="tabs" />
933
+ <window_info id="Structure" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.20394036" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
934
+ <window_info id="Maven Projects" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
935
+ <window_info id="Commander" active="false" anchor="right" auto_hide="false" internal_type="SLIDING" type="SLIDING" visible="false" weight="0.4" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
936
+ <window_info id="Application Servers" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="10" side_tool="false" content_ui="tabs" />
937
+ <window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.15548456" sideWeight="0.49908593" order="2" side_tool="false" content_ui="combo" />
938
+ <window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.4232516" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
939
+ <window_info id="Inspection" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.4" sideWeight="0.5" order="5" side_tool="false" content_ui="tabs" />
940
+ <window_info id="Hierarchy" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="5" side_tool="false" content_ui="combo" />
941
+ </layout-to-restore>
942
+ </component>
943
+ <component name="Vcs.Log.UiProperties">
944
+ <option name="RECENTLY_FILTERED_USER_GROUPS">
945
+ <collection />
946
+ </option>
947
+ <option name="RECENTLY_FILTERED_BRANCH_GROUPS">
948
+ <collection />
949
+ </option>
950
+ </component>
951
+ <component name="VcsContentAnnotationSettings">
952
+ <option name="myLimit" value="2678400000" />
953
+ </component>
954
+ <component name="XDebuggerManager">
955
+ <breakpoint-manager>
956
+ <breakpoints>
957
+ <line-breakpoint enabled="true" type="ruby-line">
958
+ <condition expression="root_path.nil?" language="ruby" />
959
+ <url>file://$USER_HOME$/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/swift_generator-0.1.2/lib/swift_generator/code_generation/swift_class_generation.rb</url>
960
+ <line>26</line>
961
+ <option name="timeStamp" value="132" />
962
+ </line-breakpoint>
963
+ <line-breakpoint enabled="true" type="ruby-line">
964
+ <url>file://$PROJECT_DIR$/lib/objc2swift_assistant/recognizers/category_recognizer.rb</url>
965
+ <line>62</line>
966
+ <option name="timeStamp" value="246" />
967
+ </line-breakpoint>
968
+ <line-breakpoint enabled="true" type="ruby-line">
969
+ <url>file://$PROJECT_DIR$/lib/objc2swift_assistant/recognizers/method_recognizer.rb</url>
970
+ <line>175</line>
971
+ <option name="timeStamp" value="327" />
972
+ </line-breakpoint>
973
+ <line-breakpoint enabled="true" type="ruby-line">
974
+ <url>file://$PROJECT_DIR$/lib/objc2swift_assistant/file_sets.rb</url>
975
+ <line>402</line>
976
+ <option name="timeStamp" value="411" />
977
+ </line-breakpoint>
978
+ <line-breakpoint enabled="true" type="ruby-line">
979
+ <url>file://$PROJECT_DIR$/lib/objc2swift_assistant/file_sets.rb</url>
980
+ <line>399</line>
981
+ <option name="timeStamp" value="412" />
982
+ </line-breakpoint>
983
+ <line-breakpoint enabled="true" type="ruby-line">
984
+ <url>file://$PROJECT_DIR$/lib/objc2swift_assistant/file_sets.rb</url>
985
+ <line>504</line>
986
+ <option name="timeStamp" value="434" />
987
+ </line-breakpoint>
988
+ <line-breakpoint enabled="true" type="ruby-line">
989
+ <url>file://$USER_HOME$/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/swift_generator-0.2.0/lib/swift_generator/code_generation/swift_class_generation.rb</url>
990
+ <line>1511</line>
991
+ <option name="timeStamp" value="435" />
992
+ </line-breakpoint>
993
+ <line-breakpoint enabled="true" type="ruby-line">
994
+ <url>file://$PROJECT_DIR$/lib/objc2swift_assistant/file_sets.rb</url>
995
+ <line>505</line>
996
+ <option name="timeStamp" value="437" />
997
+ </line-breakpoint>
998
+ <line-breakpoint enabled="true" type="ruby-line">
999
+ <url>file://$USER_HOME$/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/swift_generator-0.2.0/lib/swift_generator/code_generation/swift_file_template.rb</url>
1000
+ <line>349</line>
1001
+ <option name="timeStamp" value="438" />
1002
+ </line-breakpoint>
1003
+ <line-breakpoint enabled="true" type="ruby-line">
1004
+ <url>file://$PROJECT_DIR$/bin/objc2swift_assistant</url>
1005
+ <line>44</line>
1006
+ <option name="timeStamp" value="439" />
1007
+ </line-breakpoint>
1008
+ <line-breakpoint enabled="true" type="ruby-line">
1009
+ <url>file://$PROJECT_DIR$/lib/assistant.rb</url>
1010
+ <line>92</line>
1011
+ <option name="timeStamp" value="440" />
1012
+ </line-breakpoint>
1013
+ <line-breakpoint enabled="true" type="ruby-line">
1014
+ <url>file://$PROJECT_DIR$/lib/objc2swift_assistant/objc_2_swift_configuration.rb</url>
1015
+ <line>50</line>
1016
+ <option name="timeStamp" value="442" />
1017
+ </line-breakpoint>
1018
+ </breakpoints>
1019
+ <option name="time" value="443" />
1020
+ </breakpoint-manager>
1021
+ <watches-manager />
1022
+ </component>
1023
+ <component name="antWorkspaceConfiguration">
1024
+ <option name="IS_AUTOSCROLL_TO_SOURCE" value="false" />
1025
+ <option name="FILTER_TARGETS" value="false" />
1026
+ </component>
1027
+ <component name="editorHistoryManager">
1028
+ <entry file="file://$USER_HOME$/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/json-1.8.2/lib/json/common.rb">
1029
+ <provider selected="true" editor-type-id="text-editor">
1030
+ <state vertical-scroll-proportion="0.0">
1031
+ <caret line="154" column="0" selection-start-line="154" selection-start-column="0" selection-end-line="154" selection-end-column="0" />
1032
+ </state>
1033
+ </provider>
1034
+ </entry>
1035
+ <entry file="file://$APPLICATION_PLUGINS_DIR$/ruby/rubystubs/rubystubs22/object.rb">
1036
+ <provider selected="true" editor-type-id="text-editor">
1037
+ <state vertical-scroll-proportion="-20.90239">
1038
+ <caret line="248" column="8" selection-start-line="248" selection-start-column="8" selection-end-line="248" selection-end-column="8" />
1039
+ </state>
1040
+ </provider>
1041
+ </entry>
1042
+ <entry file="file://$USER_HOME$/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/swift_generator-0.1.2/lib/swift_generator/code_generation/swift_class_generation.rb">
1043
+ <provider selected="true" editor-type-id="text-editor">
1044
+ <state vertical-scroll-proportion="0.0">
1045
+ <caret line="852" column="0" selection-start-line="852" selection-start-column="0" selection-end-line="852" selection-end-column="0" />
1046
+ <folding />
1047
+ </state>
1048
+ </provider>
1049
+ </entry>
1050
+ <entry file="file://$USER_HOME$/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/swift_generator-0.1.3/lib/swift_generator/code_generation/swift_file_template.rb">
1051
+ <provider selected="true" editor-type-id="text-editor">
1052
+ <state vertical-scroll-proportion="0.0">
1053
+ <caret line="464" column="0" selection-start-line="464" selection-start-column="0" selection-end-line="464" selection-end-column="0" />
1054
+ </state>
1055
+ </provider>
1056
+ </entry>
1057
+ <entry file="file://$USER_HOME$/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/swift_generator-0.1.3/lib/swift_generator/code_generation/swift_class_generation.rb">
1058
+ <provider selected="true" editor-type-id="text-editor">
1059
+ <state vertical-scroll-proportion="0.44801223">
1060
+ <caret line="893" column="0" selection-start-line="893" selection-start-column="0" selection-end-line="893" selection-end-column="0" />
1061
+ </state>
1062
+ </provider>
1063
+ </entry>
1064
+ <entry file="file://$PROJECT_DIR$/lib/objc2swift_assistant/settings_file.rb">
1065
+ <provider selected="true" editor-type-id="text-editor">
1066
+ <state vertical-scroll-proportion="0.0">
1067
+ <caret line="17" column="44" selection-start-line="17" selection-start-column="44" selection-end-line="17" selection-end-column="44" />
1068
+ </state>
1069
+ </provider>
1070
+ </entry>
1071
+ <entry file="file://$PROJECT_DIR$/lib/objc2swift_assistant/objc_variable_types.rb">
1072
+ <provider selected="true" editor-type-id="text-editor">
1073
+ <state vertical-scroll-proportion="0.0">
1074
+ <caret line="21" column="42" selection-start-line="21" selection-start-column="42" selection-end-line="21" selection-end-column="42" />
1075
+ </state>
1076
+ </provider>
1077
+ </entry>
1078
+ <entry file="file://$USER_HOME$/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/swift_generator-0.1.4/lib/swift_generator/code_generation/swift_class_generation.rb">
1079
+ <provider selected="true" editor-type-id="text-editor">
1080
+ <state vertical-scroll-proportion="0.0">
1081
+ <caret line="741" column="6" selection-start-line="741" selection-start-column="6" selection-end-line="741" selection-end-column="6" />
1082
+ </state>
1083
+ </provider>
1084
+ </entry>
1085
+ <entry file="file://$USER_HOME$/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/swift_generator-0.1.4/lib/swift_generator/code_generation/swift_file_template.rb">
1086
+ <provider selected="true" editor-type-id="text-editor">
1087
+ <state vertical-scroll-proportion="0.33333334">
1088
+ <caret line="349" column="0" selection-start-line="349" selection-start-column="0" selection-end-line="349" selection-end-column="0" />
1089
+ </state>
1090
+ </provider>
1091
+ </entry>
1092
+ <entry file="file://$USER_HOME$/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/swift_generator-0.1.5/lib/swift_generator/code_generation/swift_file_template.rb">
1093
+ <provider selected="true" editor-type-id="text-editor">
1094
+ <state vertical-scroll-proportion="0.0">
1095
+ <caret line="349" column="0" selection-start-line="349" selection-start-column="0" selection-end-line="349" selection-end-column="0" />
1096
+ </state>
1097
+ </provider>
1098
+ </entry>
1099
+ <entry file="file://$USER_HOME$/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/swift_generator-0.1.5/lib/swift_generator/code_generation/swift_class_generation.rb">
1100
+ <provider selected="true" editor-type-id="text-editor">
1101
+ <state vertical-scroll-proportion="0.542777">
1102
+ <caret line="751" column="3" selection-start-line="751" selection-start-column="3" selection-end-line="751" selection-end-column="3" />
1103
+ </state>
1104
+ </provider>
1105
+ </entry>
1106
+ <entry file="file://$APPLICATION_PLUGINS_DIR$/ruby/rubystubs/rubystubs22/match_data.rb">
1107
+ <provider selected="true" editor-type-id="text-editor">
1108
+ <state vertical-scroll-proportion="0.0">
1109
+ <caret line="193" column="8" selection-start-line="193" selection-start-column="8" selection-end-line="193" selection-end-column="8" />
1110
+ </state>
1111
+ </provider>
1112
+ </entry>
1113
+ <entry file="file://$USER_HOME$/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/swift_generator-0.1.6/lib/swift_generator/code_generation/swift_class_generation.rb">
1114
+ <provider selected="true" editor-type-id="text-editor">
1115
+ <state vertical-scroll-proportion="0.33333334">
1116
+ <caret line="374" column="0" selection-start-line="374" selection-start-column="0" selection-end-line="374" selection-end-column="0" />
1117
+ </state>
1118
+ </provider>
1119
+ </entry>
1120
+ <entry file="file://$PROJECT_DIR$/lib/objc2swift_assistant/recognizers/category_recognizer.rb">
1121
+ <provider selected="true" editor-type-id="text-editor">
1122
+ <state vertical-scroll-proportion="-7.9259257">
1123
+ <caret line="33" column="0" selection-start-line="33" selection-start-column="0" selection-end-line="33" selection-end-column="0" />
1124
+ <folding />
1125
+ </state>
1126
+ </provider>
1127
+ </entry>
1128
+ <entry file="file://$PROJECT_DIR$/lib/objc2swift_assistant/recognizers/enum_recognizer.rb">
1129
+ <provider selected="true" editor-type-id="text-editor">
1130
+ <state vertical-scroll-proportion="0.0">
1131
+ <caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
1132
+ </state>
1133
+ </provider>
1134
+ </entry>
1135
+ <entry file="file://$PROJECT_DIR$/lib/objc2swift_assistant/recognizers/implementation_recognizer.rb">
1136
+ <provider selected="true" editor-type-id="text-editor">
1137
+ <state vertical-scroll-proportion="-13.333333">
1138
+ <caret line="24" column="36" selection-start-line="24" selection-start-column="36" selection-end-line="24" selection-end-column="36" />
1139
+ </state>
1140
+ </provider>
1141
+ </entry>
1142
+ <entry file="file://$PROJECT_DIR$/lib/objc2swift_assistant/logging.rb">
1143
+ <provider selected="true" editor-type-id="text-editor">
1144
+ <state vertical-scroll-proportion="0.47486034">
1145
+ <caret line="17" column="0" selection-start-line="4" selection-start-column="0" selection-end-line="17" selection-end-column="0" />
1146
+ </state>
1147
+ </provider>
1148
+ </entry>
1149
+ <entry file="file://$PROJECT_DIR$/lib/objc2swift_assistant/recognizers/pragma_mark_recognizer.rb">
1150
+ <provider selected="true" editor-type-id="text-editor">
1151
+ <state vertical-scroll-proportion="0.6089386">
1152
+ <caret line="33" column="0" selection-start-line="33" selection-start-column="0" selection-end-line="33" selection-end-column="0" />
1153
+ </state>
1154
+ </provider>
1155
+ </entry>
1156
+ <entry file="file://$PROJECT_DIR$/lib/objc2swift_assistant/recognizers/property_declaration_recognizer.rb">
1157
+ <provider selected="true" editor-type-id="text-editor">
1158
+ <state vertical-scroll-proportion="0.0">
1159
+ <caret line="17" column="24" selection-start-line="17" selection-start-column="24" selection-end-line="17" selection-end-column="24" />
1160
+ </state>
1161
+ </provider>
1162
+ </entry>
1163
+ <entry file="file://$PROJECT_DIR$/lib/objc2swift_assistant/objc_2_swift_block_conversion.rb">
1164
+ <provider selected="true" editor-type-id="text-editor">
1165
+ <state vertical-scroll-proportion="0.0">
1166
+ <caret line="74" column="0" selection-start-line="74" selection-start-column="0" selection-end-line="74" selection-end-column="0" />
1167
+ </state>
1168
+ </provider>
1169
+ </entry>
1170
+ <entry file="file://$PROJECT_DIR$/lib/objc2swift_assistant/objc_2_swift_type_mapping.rb">
1171
+ <provider selected="true" editor-type-id="text-editor">
1172
+ <state vertical-scroll-proportion="0.0">
1173
+ <caret line="14" column="48" selection-start-line="14" selection-start-column="48" selection-end-line="14" selection-end-column="48" />
1174
+ </state>
1175
+ </provider>
1176
+ </entry>
1177
+ <entry file="file://$PROJECT_DIR$/lib/objc2swift_assistant/recognizers/protocol_recognizer.rb">
1178
+ <provider selected="true" editor-type-id="text-editor">
1179
+ <state vertical-scroll-proportion="0.11204482">
1180
+ <caret line="8" column="0" selection-start-line="8" selection-start-column="0" selection-end-line="8" selection-end-column="0" />
1181
+ </state>
1182
+ </provider>
1183
+ </entry>
1184
+ <entry file="file://$PROJECT_DIR$/lib/objc2swift_assistant/recognizers/interface_recognizer.rb">
1185
+ <provider selected="true" editor-type-id="text-editor">
1186
+ <state vertical-scroll-proportion="0.11204482">
1187
+ <caret line="8" column="0" selection-start-line="8" selection-start-column="0" selection-end-line="8" selection-end-column="0" />
1188
+ </state>
1189
+ </provider>
1190
+ </entry>
1191
+ <entry file="file://$PROJECT_DIR$/lib/objc2swift_assistant/recognizers/at_sign_directives_recognizer.rb">
1192
+ <provider selected="true" editor-type-id="text-editor">
1193
+ <state vertical-scroll-proportion="0.27209705">
1194
+ <caret line="19" column="0" selection-start-line="19" selection-start-column="0" selection-end-line="19" selection-end-column="0" />
1195
+ </state>
1196
+ </provider>
1197
+ </entry>
1198
+ <entry file="file://$APPLICATION_PLUGINS_DIR$/ruby/rubystubs/rubystubs22/array.rb">
1199
+ <provider selected="true" editor-type-id="text-editor">
1200
+ <state vertical-scroll-proportion="0.17460318">
1201
+ <caret line="554" column="8" selection-start-line="554" selection-start-column="8" selection-end-line="554" selection-end-column="8" />
1202
+ </state>
1203
+ </provider>
1204
+ </entry>
1205
+ <entry file="file://$USER_HOME$/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/swift_generator-0.1.6/lib/swift_generator/code_generation/swift_file_template.rb">
1206
+ <provider selected="true" editor-type-id="text-editor">
1207
+ <state vertical-scroll-proportion="0.35008666">
1208
+ <caret line="522" column="0" selection-start-line="522" selection-start-column="0" selection-end-line="522" selection-end-column="0" />
1209
+ </state>
1210
+ </provider>
1211
+ </entry>
1212
+ <entry file="file://$PROJECT_DIR$/lib/objc2swift_assistant/recognizers/method_recognizer.rb">
1213
+ <provider selected="true" editor-type-id="text-editor">
1214
+ <state vertical-scroll-proportion="0.3112583">
1215
+ <caret line="131" column="10" selection-start-line="131" selection-start-column="10" selection-end-line="131" selection-end-column="10" />
1216
+ <folding />
1217
+ </state>
1218
+ </provider>
1219
+ </entry>
1220
+ <entry file="file://$PROJECT_DIR$/lib/objc2swift_assistant/file_hierarchical_config.rb">
1221
+ <provider selected="true" editor-type-id="text-editor">
1222
+ <state vertical-scroll-proportion="0.3112583">
1223
+ <caret line="110" column="32" selection-start-line="110" selection-start-column="32" selection-end-line="110" selection-end-column="32" />
1224
+ </state>
1225
+ </provider>
1226
+ </entry>
1227
+ <entry file="file://$PROJECT_DIR$/lib/objc2swift_assistant/code_recognizer.rb">
1228
+ <provider selected="true" editor-type-id="text-editor">
1229
+ <state vertical-scroll-proportion="0.37913907">
1230
+ <caret line="200" column="8" selection-start-line="200" selection-start-column="8" selection-end-line="200" selection-end-column="8" />
1231
+ </state>
1232
+ </provider>
1233
+ </entry>
1234
+ <entry file="file://$PROJECT_DIR$/lib/objc2swift_assistant/recognizers/recognizer_keys.rb">
1235
+ <provider selected="true" editor-type-id="text-editor">
1236
+ <state vertical-scroll-proportion="0.49668875">
1237
+ <caret line="20" column="35" selection-start-line="20" selection-start-column="35" selection-end-line="20" selection-end-column="35" />
1238
+ </state>
1239
+ </provider>
1240
+ </entry>
1241
+ <entry file="file://$PROJECT_DIR$/lib/objc2swift_assistant/swift_file_generator.rb">
1242
+ <provider selected="true" editor-type-id="text-editor">
1243
+ <state vertical-scroll-proportion="0.0">
1244
+ <caret line="15" column="36" selection-start-line="15" selection-start-column="24" selection-end-line="15" selection-end-column="36" />
1245
+ </state>
1246
+ </provider>
1247
+ </entry>
1248
+ <entry file="file://$PROJECT_DIR$/lib/objc2swift_assistant/processing_element.rb">
1249
+ <provider selected="true" editor-type-id="text-editor">
1250
+ <state vertical-scroll-proportion="0.0">
1251
+ <caret line="9" column="8" selection-start-line="9" selection-start-column="8" selection-end-line="9" selection-end-column="8" />
1252
+ </state>
1253
+ </provider>
1254
+ </entry>
1255
+ <entry file="file://$PROJECT_DIR$/spec/objc2swift_assistant_spec.rb">
1256
+ <provider selected="true" editor-type-id="text-editor">
1257
+ <state vertical-scroll-proportion="0.0">
1258
+ <caret line="12" column="0" selection-start-line="12" selection-start-column="0" selection-end-line="12" selection-end-column="0" />
1259
+ </state>
1260
+ </provider>
1261
+ </entry>
1262
+ <entry file="file://$USER_HOME$/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/commander-4.3.4/lib/commander/runner.rb">
1263
+ <provider selected="true" editor-type-id="text-editor">
1264
+ <state vertical-scroll-proportion="0.0">
1265
+ <caret line="427" column="0" selection-start-line="427" selection-start-column="0" selection-end-line="427" selection-end-column="0" />
1266
+ </state>
1267
+ </provider>
1268
+ </entry>
1269
+ <entry file="file://$USER_HOME$/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/commander-4.3.4/lib/commander/import.rb">
1270
+ <provider selected="true" editor-type-id="text-editor">
1271
+ <state vertical-scroll-proportion="0.0">
1272
+ <caret line="7" column="0" selection-start-line="7" selection-start-column="0" selection-end-line="7" selection-end-column="0" />
1273
+ </state>
1274
+ </provider>
1275
+ </entry>
1276
+ <entry file="file://$USER_HOME$/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/commander-4.3.4/lib/commander/delegates.rb">
1277
+ <provider selected="true" editor-type-id="text-editor">
1278
+ <state vertical-scroll-proportion="0.0">
1279
+ <caret line="14" column="0" selection-start-line="14" selection-start-column="0" selection-end-line="14" selection-end-column="0" />
1280
+ </state>
1281
+ </provider>
1282
+ </entry>
1283
+ <entry file="file://$PROJECT_DIR$/test/ExampleConfig.json">
1284
+ <provider selected="true" editor-type-id="text-editor">
1285
+ <state vertical-scroll-proportion="-8.75">
1286
+ <caret line="14" column="0" selection-start-line="14" selection-start-column="0" selection-end-line="14" selection-end-column="0" />
1287
+ </state>
1288
+ </provider>
1289
+ </entry>
1290
+ <entry file="file://$PROJECT_DIR$/lib/objc2swift_assistant/objc_2_swift.rb">
1291
+ <provider selected="true" editor-type-id="text-editor">
1292
+ <state vertical-scroll-proportion="0.0">
1293
+ <caret line="400" column="0" selection-start-line="400" selection-start-column="0" selection-end-line="400" selection-end-column="0" />
1294
+ </state>
1295
+ </provider>
1296
+ </entry>
1297
+ <entry file="file://$USER_HOME$/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/swift_generator-0.2.0/lib/swift_generator/code_generation/swift_file_template.rb">
1298
+ <provider selected="true" editor-type-id="text-editor">
1299
+ <state vertical-scroll-proportion="0.0">
1300
+ <caret line="349" column="0" selection-start-line="349" selection-start-column="0" selection-end-line="349" selection-end-column="0" />
1301
+ <folding />
1302
+ </state>
1303
+ </provider>
1304
+ </entry>
1305
+ <entry file="file://$USER_HOME$/.rbenv/versions/2.2.0/lib/ruby/2.2.0/monitor.rb">
1306
+ <provider selected="true" editor-type-id="text-editor">
1307
+ <state vertical-scroll-proportion="0.0">
1308
+ <caret line="212" column="14" selection-start-line="212" selection-start-column="14" selection-end-line="212" selection-end-column="14" />
1309
+ <folding />
1310
+ </state>
1311
+ </provider>
1312
+ </entry>
1313
+ <entry file="file://$USER_HOME$/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/commander-4.3.4/lib/commander/command.rb">
1314
+ <provider selected="true" editor-type-id="text-editor">
1315
+ <state vertical-scroll-proportion="0.2577031">
1316
+ <caret line="163" column="0" selection-start-line="163" selection-start-column="0" selection-end-line="163" selection-end-column="0" />
1317
+ <folding />
1318
+ </state>
1319
+ </provider>
1320
+ </entry>
1321
+ <entry file="file://$USER_HOME$/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/swift_generator-0.2.0/lib/swift_generator/code_generation/swift_class_generation.rb">
1322
+ <provider selected="true" editor-type-id="text-editor">
1323
+ <state vertical-scroll-proportion="0.18818681">
1324
+ <caret line="1510" column="6" selection-start-line="1510" selection-start-column="6" selection-end-line="1510" selection-end-column="6" />
1325
+ <folding />
1326
+ </state>
1327
+ </provider>
1328
+ </entry>
1329
+ <entry file="file://$PROJECT_DIR$/README.md">
1330
+ <provider editor-type-id="MarkdownPreviewEditor">
1331
+ <state />
1332
+ </provider>
1333
+ <provider selected="true" editor-type-id="text-editor">
1334
+ <state vertical-scroll-proportion="0.8898426">
1335
+ <caret line="61" column="95" selection-start-line="61" selection-start-column="95" selection-end-line="61" selection-end-column="95" />
1336
+ <folding />
1337
+ </state>
1338
+ </provider>
1339
+ </entry>
1340
+ <entry file="file://$PROJECT_DIR$/lib/assistant.rb">
1341
+ <provider selected="true" editor-type-id="text-editor">
1342
+ <state vertical-scroll-proportion="0.0">
1343
+ <caret line="97" column="0" selection-start-line="97" selection-start-column="0" selection-end-line="97" selection-end-column="0" />
1344
+ <folding />
1345
+ </state>
1346
+ </provider>
1347
+ </entry>
1348
+ <entry file="file://$PROJECT_DIR$/lib/objc2swift_assistant/objc_2_swift_configuration.rb">
1349
+ <provider selected="true" editor-type-id="text-editor">
1350
+ <state vertical-scroll-proportion="0.0">
1351
+ <caret line="50" column="0" selection-start-line="50" selection-start-column="0" selection-end-line="50" selection-end-column="0" />
1352
+ <folding />
1353
+ </state>
1354
+ </provider>
1355
+ </entry>
1356
+ <entry file="file://$PROJECT_DIR$/lib/objc2swift_assistant/file_sets.rb">
1357
+ <provider selected="true" editor-type-id="text-editor">
1358
+ <state vertical-scroll-proportion="-12.703704">
1359
+ <caret line="59" column="35" selection-start-line="59" selection-start-column="35" selection-end-line="59" selection-end-column="35" />
1360
+ <folding />
1361
+ </state>
1362
+ </provider>
1363
+ </entry>
1364
+ <entry file="file://$PROJECT_DIR$/bin/objc2swift_assistant">
1365
+ <provider selected="true" editor-type-id="text-editor">
1366
+ <state vertical-scroll-proportion="0.0">
1367
+ <caret line="8" column="0" selection-start-line="8" selection-start-column="0" selection-end-line="8" selection-end-column="0" />
1368
+ <folding />
1369
+ </state>
1370
+ </provider>
1371
+ <provider editor-type-id="com.intellij.database.editor.CsvTableFileEditorProvider">
1372
+ <state />
1373
+ </provider>
1374
+ </entry>
1375
+ <entry file="file://$PROJECT_DIR$/objc2swift_assistant.gemspec">
1376
+ <provider selected="true" editor-type-id="text-editor">
1377
+ <state vertical-scroll-proportion="0.0">
1378
+ <caret line="17" column="25" selection-start-line="17" selection-start-column="25" selection-end-line="17" selection-end-column="25" />
1379
+ <folding />
1380
+ </state>
1381
+ </provider>
1382
+ </entry>
1383
+ <entry file="file://$PROJECT_DIR$/lib/objc2swift_assistant/version.rb">
1384
+ <provider selected="true" editor-type-id="text-editor">
1385
+ <state vertical-scroll-proportion="0.0">
1386
+ <caret line="1" column="16" selection-start-line="1" selection-start-column="16" selection-end-line="1" selection-end-column="16" />
1387
+ <folding />
1388
+ </state>
1389
+ </provider>
1390
+ </entry>
1391
+ <entry file="file://$PROJECT_DIR$/.travis.yml">
1392
+ <provider selected="true" editor-type-id="text-editor">
1393
+ <state vertical-scroll-proportion="0.0">
1394
+ <caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
1395
+ <folding />
1396
+ </state>
1397
+ </provider>
1398
+ </entry>
1399
+ <entry file="file://$PROJECT_DIR$/Gemfile">
1400
+ <provider selected="true" editor-type-id="text-editor">
1401
+ <state vertical-scroll-proportion="0.2020202">
1402
+ <caret line="8" column="0" selection-start-line="8" selection-start-column="0" selection-end-line="8" selection-end-column="0" />
1403
+ <folding />
1404
+ </state>
1405
+ </provider>
1406
+ </entry>
1407
+ </component>
1408
+ <component name="masterDetails">
1409
+ <states>
1410
+ <state key="ArtifactsStructureConfigurable.UI">
1411
+ <settings>
1412
+ <artifact-editor />
1413
+ <splitter-proportions>
1414
+ <option name="proportions">
1415
+ <list>
1416
+ <option value="0.2" />
1417
+ </list>
1418
+ </option>
1419
+ </splitter-proportions>
1420
+ </settings>
1421
+ </state>
1422
+ <state key="FacetStructureConfigurable.UI">
1423
+ <settings>
1424
+ <last-edited>Ruby Gem</last-edited>
1425
+ <splitter-proportions>
1426
+ <option name="proportions">
1427
+ <list>
1428
+ <option value="0.2" />
1429
+ </list>
1430
+ </option>
1431
+ </splitter-proportions>
1432
+ </settings>
1433
+ </state>
1434
+ <state key="GlobalLibrariesConfigurable.UI">
1435
+ <settings>
1436
+ <last-edited>archive-tar-minitar (v0.5.2, rbenv: 2.2.0) [gem]</last-edited>
1437
+ <splitter-proportions>
1438
+ <option name="proportions">
1439
+ <list>
1440
+ <option value="0.2" />
1441
+ </list>
1442
+ </option>
1443
+ </splitter-proportions>
1444
+ </settings>
1445
+ </state>
1446
+ <state key="JdkListConfigurable.UI">
1447
+ <settings>
1448
+ <last-edited>rbenv: 2.2.0</last-edited>
1449
+ <splitter-proportions>
1450
+ <option name="proportions">
1451
+ <list>
1452
+ <option value="0.2" />
1453
+ </list>
1454
+ </option>
1455
+ </splitter-proportions>
1456
+ </settings>
1457
+ </state>
1458
+ <state key="ModuleStructureConfigurable.UI">
1459
+ <settings>
1460
+ <last-edited>objc2swift_assistant</last-edited>
1461
+ <splitter-proportions>
1462
+ <option name="proportions">
1463
+ <list>
1464
+ <option value="0.2" />
1465
+ <option value="0.6" />
1466
+ </list>
1467
+ </option>
1468
+ </splitter-proportions>
1469
+ </settings>
1470
+ </state>
1471
+ <state key="ProjectLibrariesConfigurable.UI">
1472
+ <settings>
1473
+ <splitter-proportions>
1474
+ <option name="proportions">
1475
+ <list>
1476
+ <option value="0.2" />
1477
+ </list>
1478
+ </option>
1479
+ </splitter-proportions>
1480
+ </settings>
1481
+ </state>
1482
+ </states>
1483
+ </component>
1484
+ </project>