fig_magic 0.1 → 0.2

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c7207fec8f9bc38fa636cc502cd8ac05e9e02640
4
- data.tar.gz: f7078c225dd692a1bac43a94d41f3b4def9d90db
3
+ metadata.gz: c9a794f495dcbdcd59132d32cfd304c263c9c162
4
+ data.tar.gz: ef377b953fcb75707ec632b319f9db93f6213f83
5
5
  SHA512:
6
- metadata.gz: f31ed05b79bc8e0b0032e69f82b211aca300e3630e662532693e851119e6cb8d7094a3334845a4eb960fd99dd5d7a684e69bc68c4f27050e96c4ae74d419d424
7
- data.tar.gz: f82c6b903558c7205753a99d6df4fbdcdee10345afa5c91d139bdbdb27c7178e45e6808b0c01390e15948076a0dc882f1261baea3c7af12e0d5d298fc3b637c3
6
+ metadata.gz: d1f4769c65d3a439df5a6df81c4126cd999fd1a2e9d9da21ee92d1c0137ff0a3aba9a2df378402236c4819e6fd4b285afbbc851da1a8ab726bd770c035198296
7
+ data.tar.gz: 9b0f55ed9e0807f3f8fc3710ac3da624c9cdc66ffc007b7f43fb165a3529c546232fbb6a705357e93e8f91545fa9b5605b00df65ed539ba8ea75c9a7b96038a9
data/.gitignore CHANGED
@@ -1,3 +1,4 @@
1
+ .idea/*
1
2
  *.gem
2
3
  *.rbc
3
4
  .bundle
data/ChangeLog CHANGED
@@ -1,2 +1,5 @@
1
- === Version 0.1 / 2012-1-21
1
+ === Version 0.2 / 2015-11-20
2
+ Fixed Require Statements
3
+
4
+ === Version 0.1 / 2015-11-20
2
5
  Initial Release
data/LICENSE CHANGED
@@ -1,5 +1,5 @@
1
- Copyright (c) 2012 Jeffrey S. Morgan
2
-
1
+ Copyright (c) 2012 Jeffrey S. Morgan - Original Gems (Data Magic & Fig Newton)
2
+ Copyright (c) 2015 Justin Commu
3
3
  MIT License
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining
data/fig_magic.gemspec CHANGED
@@ -8,7 +8,7 @@ Gem::Specification.new do |gem|
8
8
  gem.authors = ["Justin Commu"]
9
9
  gem.email = ["jcommu@gmail.com"]
10
10
  gem.license = 'MIT'
11
- gem.homepage = "http://github.com/dingokiller/fig_magic"
11
+ gem.homepage = "http://github.com/tk8817/fig_magic"
12
12
  gem.summary = %q{Combines FigNewton & DataMagic into a single gem & namespace}
13
13
  gem.description = %q{Provides datasets to application stored in YAML files}
14
14
 
@@ -1,7 +1,7 @@
1
1
  require 'yaml'
2
2
  require 'socket'
3
3
 
4
- module FigNewton
4
+ module FigMagic
5
5
  module Missing
6
6
  def method_missing(*args, &block)
7
7
  read_file unless @yml
@@ -10,19 +10,19 @@ module FigNewton
10
10
  value = args[1] if value.nil?
11
11
  value = block.call(m.to_s) if value.nil? and block
12
12
  super if value.nil?
13
- value = FigNewton::Node.new(value) unless type_known? value
13
+ value = FigMagic::Node.new(value) unless type_known? value
14
14
  value
15
15
  end
16
16
 
17
17
  def read_file
18
18
  @yml = nil
19
- @yml = YAML.load_file "#{yml_directory}/#{ENV['FIG_NEWTON_FILE']}" if ENV['FIG_NEWTON_FILE']
19
+ @yml = YAML.load_file "#{yml_directory}/#{ENV['FIG_MAGIC_FILE']}" if ENV['FIG_MAGIC_FILE']
20
20
  unless @yml
21
21
  hostname = Socket.gethostname
22
22
  hostfile = "#{yml_directory}/#{hostname}.yml"
23
23
  @yml = YAML.load_file hostfile if File.exist? hostfile
24
24
  end
25
- FigNewton.load('default.yml') if @yml.nil?
25
+ FigMagic.load('default.yml') if @yml.nil?
26
26
  end
27
27
 
28
28
  private
@@ -1,8 +1,8 @@
1
1
  require File.dirname(__FILE__) + "/missing"
2
2
 
3
- module FigNewton
3
+ module FigMagic
4
4
  class Node
5
- include FigNewton::Missing
5
+ include FigMagic::Missing
6
6
 
7
7
  def initialize(yml)
8
8
  @yml = yml
@@ -1,3 +1,3 @@
1
1
  module FigMagic
2
- VERSION = "0.1"
2
+ VERSION = "0.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fig_magic
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.1'
4
+ version: '0.2'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Commu
@@ -73,16 +73,7 @@ executables: []
73
73
  extensions: []
74
74
  extra_rdoc_files: []
75
75
  files:
76
- - ".DS_Store"
77
76
  - ".gitignore"
78
- - ".idea/.name"
79
- - ".idea/.rakeTasks"
80
- - ".idea/FigMagic.iml"
81
- - ".idea/atlassian-ide-plugin.xml"
82
- - ".idea/encodings.xml"
83
- - ".idea/misc.xml"
84
- - ".idea/modules.xml"
85
- - ".idea/workspace.xml"
86
77
  - ".rspec"
87
78
  - ".ruby-gemset"
88
79
  - ".ruby-version"
@@ -119,7 +110,7 @@ files:
119
110
  - spec/lib/data_magic_spec.rb
120
111
  - spec/lib/translation_spec.rb
121
112
  - spec/spec_helper.rb
122
- homepage: http://github.com/dingokiller/fig_magic
113
+ homepage: http://github.com/tk8817/fig_magic
123
114
  licenses:
124
115
  - MIT
125
116
  metadata: {}
data/.DS_Store DELETED
Binary file
data/.idea/.name DELETED
@@ -1 +0,0 @@
1
- FigMagic
data/.idea/.rakeTasks DELETED
@@ -1,7 +0,0 @@
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 data_magic-0.21.gem into the pkg directory" fullCmd="build" taksId="build" /><RakeTask description="Run features" fullCmd="features" taksId="features" /><RakeTask description="Build and install data_magic-0.21.gem into system gems" fullCmd="install" taksId="install" /><RakeGroup description="" fullCmd="" taksId="install"><RakeTask description="Build and install data_magic-0.21.gem into system gems without network access" fullCmd="install:local" taksId="local" /></RakeGroup><RakeTask description="Create tag v0.21 and build and push data_magic-0.21.gem to Rubygems" fullCmd="release" taksId="release" /><RakeTask description="Run RSpec code examples" fullCmd="spec" taksId="spec" /><RakeTask description="Run all specs and cukes" fullCmd="test" taksId="test" /><RakeTask description="" fullCmd="default" taksId="default" /><RakeTask description="" fullCmd="lib" taksId="lib" /><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>
data/.idea/FigMagic.iml DELETED
@@ -1,33 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <module type="RUBY_MODULE" version="4">
3
- <component name="FacetManager">
4
- <facet type="gem" name="Gem">
5
- <configuration>
6
- <option name="GEM_APP_ROOT_PATH" value="" />
7
- <option name="GEM_APP_TEST_PATH" value="" />
8
- <option name="GEM_APP_LIB_PATH" value="" />
9
- </configuration>
10
- </facet>
11
- </component>
12
- <component name="NewModuleRootManager">
13
- <content url="file://$MODULE_DIR$" />
14
- <orderEntry type="inheritedJdk" />
15
- <orderEntry type="sourceFolder" forTests="false" />
16
- <orderEntry type="library" scope="PROVIDED" name="builder (v3.2.2, ruby-2.1.7-p400) [gem]" level="application" />
17
- <orderEntry type="library" scope="PROVIDED" name="bundler (v1.10.6, ruby-2.1.7-p400) [gem]" level="application" />
18
- <orderEntry type="library" scope="PROVIDED" name="cucumber (v1.3.20, ruby-2.1.7-p400) [gem]" level="application" />
19
- <orderEntry type="library" scope="PROVIDED" name="diff-lcs (v1.2.5, ruby-2.1.7-p400) [gem]" level="application" />
20
- <orderEntry type="library" scope="PROVIDED" name="faker (v1.5.0, ruby-2.1.7-p400) [gem]" level="application" />
21
- <orderEntry type="library" scope="PROVIDED" name="gherkin (v2.12.2, ruby-2.1.7-p400) [gem]" level="application" />
22
- <orderEntry type="library" scope="PROVIDED" name="i18n (v0.7.0, ruby-2.1.7-p400) [gem]" level="application" />
23
- <orderEntry type="library" scope="PROVIDED" name="multi_json (v1.11.2, ruby-2.1.7-p400) [gem]" level="application" />
24
- <orderEntry type="library" scope="PROVIDED" name="multi_test (v0.1.2, ruby-2.1.7-p400) [gem]" level="application" />
25
- <orderEntry type="library" scope="PROVIDED" name="rake (v10.4.2, ruby-2.1.7-p400) [gem]" level="application" />
26
- <orderEntry type="library" scope="PROVIDED" name="rspec (v3.3.0, ruby-2.1.7-p400) [gem]" level="application" />
27
- <orderEntry type="library" scope="PROVIDED" name="rspec-core (v3.3.2, ruby-2.1.7-p400) [gem]" level="application" />
28
- <orderEntry type="library" scope="PROVIDED" name="rspec-expectations (v3.3.1, ruby-2.1.7-p400) [gem]" level="application" />
29
- <orderEntry type="library" scope="PROVIDED" name="rspec-mocks (v3.3.2, ruby-2.1.7-p400) [gem]" level="application" />
30
- <orderEntry type="library" scope="PROVIDED" name="rspec-support (v3.3.0, ruby-2.1.7-p400) [gem]" level="application" />
31
- <orderEntry type="library" scope="PROVIDED" name="yml_reader (v0.5, ruby-2.1.7-p400) [gem]" level="application" />
32
- </component>
33
- </module>
@@ -1,5 +0,0 @@
1
- <atlassian-ide-plugin>
2
- <project-configuration id="1">
3
- <servers id="2" />
4
- </project-configuration>
5
- </atlassian-ide-plugin>
data/.idea/encodings.xml DELETED
@@ -1,6 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="Encoding">
4
- <file url="PROJECT" charset="UTF-8" />
5
- </component>
6
- </project>
data/.idea/misc.xml DELETED
@@ -1,14 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="ProjectLevelVcsManager" settingsEditedManually="false">
4
- <OptionsSetting value="true" id="Add" />
5
- <OptionsSetting value="true" id="Remove" />
6
- <OptionsSetting value="true" id="Checkout" />
7
- <OptionsSetting value="true" id="Update" />
8
- <OptionsSetting value="true" id="Status" />
9
- <OptionsSetting value="true" id="Edit" />
10
- <ConfirmationsSetting value="0" id="Add" />
11
- <ConfirmationsSetting value="0" id="Remove" />
12
- </component>
13
- <component name="ProjectRootManager" version="2" project-jdk-name="ruby-2.1.7-p400" project-jdk-type="RUBY_SDK" />
14
- </project>
data/.idea/modules.xml DELETED
@@ -1,8 +0,0 @@
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/FigMagic.iml" filepath="$PROJECT_DIR$/.idea/FigMagic.iml" />
6
- </modules>
7
- </component>
8
- </project>
data/.idea/workspace.xml DELETED
@@ -1,776 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="ChangeListManager">
4
- <list default="true" id="077dcec9-b1fb-423d-b919-a9d4692110ae" name="Default" comment="" />
5
- <ignored path="FigMagic.iws" />
6
- <ignored path=".idea/workspace.xml" />
7
- <ignored path=".idea/dataSources.local.xml" />
8
- <option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" />
9
- <option name="TRACKING_ENABLED" value="true" />
10
- <option name="SHOW_DIALOG" value="false" />
11
- <option name="HIGHLIGHT_CONFLICTS" value="true" />
12
- <option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
13
- <option name="LAST_RESOLUTION" value="IGNORE" />
14
- </component>
15
- <component name="ChangesViewManager" flattened_view="true" show_ignored="false" />
16
- <component name="CreatePatchCommitExecutor">
17
- <option name="PATCH_PATH" value="" />
18
- </component>
19
- <component name="FavoritesManager">
20
- <favorites_list name="FigMagic" />
21
- </component>
22
- <component name="FileEditorManager">
23
- <leaf SIDE_TABS_SIZE_LIMIT_KEY="300">
24
- <file leaf-file-name="default.yml" pinned="false" current-in-tab="false">
25
- <entry file="file://$PROJECT_DIR$/config/data/default.yml">
26
- <provider selected="true" editor-type-id="text-editor">
27
- <state vertical-scroll-proportion="0.0">
28
- <caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
29
- <folding />
30
- </state>
31
- </provider>
32
- </entry>
33
- </file>
34
- <file leaf-file-name=".gitignore" pinned="false" current-in-tab="false">
35
- <entry file="file://$PROJECT_DIR$/.gitignore">
36
- <provider selected="true" editor-type-id="text-editor">
37
- <state vertical-scroll-proportion="0.0">
38
- <caret line="16" column="3" selection-start-line="16" selection-start-column="3" selection-end-line="16" selection-end-column="3" />
39
- <folding />
40
- </state>
41
- </provider>
42
- </entry>
43
- </file>
44
- <file leaf-file-name="user.yml" pinned="false" current-in-tab="false">
45
- <entry file="file://$PROJECT_DIR$/config/data/user.yml">
46
- <provider selected="true" editor-type-id="text-editor">
47
- <state vertical-scroll-proportion="0.0">
48
- <caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
49
- <folding />
50
- </state>
51
- </provider>
52
- </entry>
53
- </file>
54
- <file leaf-file-name="data_magic_steps.rb" pinned="false" current-in-tab="false">
55
- <entry file="file://$PROJECT_DIR$/features/step_definitions/data_magic_steps.rb">
56
- <provider selected="true" editor-type-id="text-editor">
57
- <state vertical-scroll-proportion="-11.703704">
58
- <caret line="47" column="15" selection-start-line="47" selection-start-column="10" selection-end-line="47" selection-end-column="15" />
59
- <folding />
60
- </state>
61
- </provider>
62
- </entry>
63
- </file>
64
- <file leaf-file-name="fig_newton_steps.rb" pinned="false" current-in-tab="false">
65
- <entry file="file://$PROJECT_DIR$/features/step_definitions/fig_newton_steps.rb">
66
- <provider selected="true" editor-type-id="text-editor">
67
- <state vertical-scroll-proportion="0.0">
68
- <caret line="52" column="40" selection-start-line="52" selection-start-column="40" selection-end-line="52" selection-end-column="40" />
69
- <folding />
70
- </state>
71
- </provider>
72
- </entry>
73
- </file>
74
- <file leaf-file-name="fig_magic.rb" pinned="false" current-in-tab="false">
75
- <entry file="file://$PROJECT_DIR$/lib/fig_magic.rb">
76
- <provider selected="true" editor-type-id="text-editor">
77
- <state vertical-scroll-proportion="0.0">
78
- <caret line="80" column="14" selection-start-line="80" selection-start-column="14" selection-end-line="80" selection-end-column="14" />
79
- <folding />
80
- </state>
81
- </provider>
82
- </entry>
83
- </file>
84
- <file leaf-file-name="Gemfile" pinned="false" current-in-tab="false">
85
- <entry file="file://$PROJECT_DIR$/Gemfile">
86
- <provider selected="true" editor-type-id="text-editor">
87
- <state vertical-scroll-proportion="0.0">
88
- <caret line="12" column="0" selection-start-line="12" selection-start-column="0" selection-end-line="12" selection-end-column="0" />
89
- <folding />
90
- </state>
91
- </provider>
92
- </entry>
93
- </file>
94
- <file leaf-file-name="fig_magic.gemspec" pinned="false" current-in-tab="true">
95
- <entry file="file://$PROJECT_DIR$/fig_magic.gemspec">
96
- <provider selected="true" editor-type-id="text-editor">
97
- <state vertical-scroll-proportion="0.38422132">
98
- <caret line="25" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="25" selection-end-column="0" />
99
- <folding />
100
- </state>
101
- </provider>
102
- </entry>
103
- </file>
104
- <file leaf-file-name=".ruby-gemset" pinned="false" current-in-tab="false">
105
- <entry file="file://$PROJECT_DIR$/.ruby-gemset">
106
- <provider selected="true" editor-type-id="text-editor">
107
- <state vertical-scroll-proportion="0.0">
108
- <caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
109
- <folding />
110
- </state>
111
- </provider>
112
- </entry>
113
- </file>
114
- <file leaf-file-name=".ruby-version" pinned="false" current-in-tab="false">
115
- <entry file="file://$PROJECT_DIR$/.ruby-version">
116
- <provider selected="true" editor-type-id="text-editor">
117
- <state vertical-scroll-proportion="0.0">
118
- <caret line="0" column="10" selection-start-line="0" selection-start-column="10" selection-end-line="0" selection-end-column="10" />
119
- <folding />
120
- </state>
121
- </provider>
122
- </entry>
123
- </file>
124
- </leaf>
125
- </component>
126
- <component name="IdeDocumentHistory">
127
- <option name="CHANGED_PATHS">
128
- <list>
129
- <option value="$PROJECT_DIR$/data_magic.gemspec" />
130
- <option value="$PROJECT_DIR$/.ruby-gemset" />
131
- <option value="$PROJECT_DIR$/features/fig_newton.feature" />
132
- <option value="$PROJECT_DIR$/features/step_definitions/fig_newton_steps.rb" />
133
- <option value="$PROJECT_DIR$/lib/fig_magic/version.rb" />
134
- <option value="$PROJECT_DIR$/lib/fig_magic/missing.rb" />
135
- <option value="$PROJECT_DIR$/lib/fig_magic/node.rb" />
136
- <option value="$PROJECT_DIR$/ChangeLog" />
137
- <option value="$PROJECT_DIR$/Gemfile" />
138
- <option value="$PROJECT_DIR$/Rakefile" />
139
- <option value="$PROJECT_DIR$/lib/fig_magic.rb" />
140
- <option value="$PROJECT_DIR$/config/sample.yml" />
141
- <option value="$PROJECT_DIR$/config/test_config.yml" />
142
- <option value="$PROJECT_DIR$/config/environments/default.yml" />
143
- <option value="$PROJECT_DIR$/features/step_definitions/data_magic_steps.rb" />
144
- <option value="$PROJECT_DIR$/fig_magic.gemspec" />
145
- <option value="$PROJECT_DIR$/.gitignore" />
146
- <option value="$PROJECT_DIR$/.ruby-version" />
147
- </list>
148
- </option>
149
- </component>
150
- <component name="JsBuildToolGruntFileManager" detection-done="true" />
151
- <component name="JsBuildToolPackageJson" detection-done="true" />
152
- <component name="JsGulpfileManager">
153
- <detection-done>true</detection-done>
154
- </component>
155
- <component name="ProjectFrameBounds">
156
- <option name="x" value="545" />
157
- <option name="y" value="129" />
158
- <option name="width" value="1694" />
159
- <option name="height" value="1047" />
160
- </component>
161
- <component name="ProjectLevelVcsManager" settingsEditedManually="false">
162
- <OptionsSetting value="true" id="Add" />
163
- <OptionsSetting value="true" id="Remove" />
164
- <OptionsSetting value="true" id="Checkout" />
165
- <OptionsSetting value="true" id="Update" />
166
- <OptionsSetting value="true" id="Status" />
167
- <OptionsSetting value="true" id="Edit" />
168
- <ConfirmationsSetting value="0" id="Add" />
169
- <ConfirmationsSetting value="0" id="Remove" />
170
- </component>
171
- <component name="ProjectView">
172
- <navigator currentView="ProjectPane" proportions="" version="1">
173
- <flattenPackages />
174
- <showMembers />
175
- <showModules />
176
- <showLibraryContents />
177
- <hideEmptyPackages />
178
- <abbreviatePackageNames />
179
- <autoscrollToSource />
180
- <autoscrollFromSource />
181
- <sortByType />
182
- <manualOrder />
183
- <foldersAlwaysOnTop value="true" />
184
- </navigator>
185
- <panes>
186
- <pane id="ProjectPane">
187
- <subPane>
188
- <PATH>
189
- <PATH_ELEMENT>
190
- <option name="myItemId" value="FigMagic" />
191
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
192
- </PATH_ELEMENT>
193
- </PATH>
194
- <PATH>
195
- <PATH_ELEMENT>
196
- <option name="myItemId" value="FigMagic" />
197
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
198
- </PATH_ELEMENT>
199
- <PATH_ELEMENT>
200
- <option name="myItemId" value="FigMagic" />
201
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
202
- </PATH_ELEMENT>
203
- </PATH>
204
- <PATH>
205
- <PATH_ELEMENT>
206
- <option name="myItemId" value="FigMagic" />
207
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
208
- </PATH_ELEMENT>
209
- <PATH_ELEMENT>
210
- <option name="myItemId" value="FigMagic" />
211
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
212
- </PATH_ELEMENT>
213
- <PATH_ELEMENT>
214
- <option name="myItemId" value="lib" />
215
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
216
- </PATH_ELEMENT>
217
- </PATH>
218
- <PATH>
219
- <PATH_ELEMENT>
220
- <option name="myItemId" value="FigMagic" />
221
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
222
- </PATH_ELEMENT>
223
- <PATH_ELEMENT>
224
- <option name="myItemId" value="FigMagic" />
225
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
226
- </PATH_ELEMENT>
227
- <PATH_ELEMENT>
228
- <option name="myItemId" value="lib" />
229
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
230
- </PATH_ELEMENT>
231
- <PATH_ELEMENT>
232
- <option name="myItemId" value="fig_magic" />
233
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
234
- </PATH_ELEMENT>
235
- </PATH>
236
- <PATH>
237
- <PATH_ELEMENT>
238
- <option name="myItemId" value="FigMagic" />
239
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
240
- </PATH_ELEMENT>
241
- <PATH_ELEMENT>
242
- <option name="myItemId" value="FigMagic" />
243
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
244
- </PATH_ELEMENT>
245
- <PATH_ELEMENT>
246
- <option name="myItemId" value="features" />
247
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
248
- </PATH_ELEMENT>
249
- </PATH>
250
- <PATH>
251
- <PATH_ELEMENT>
252
- <option name="myItemId" value="FigMagic" />
253
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
254
- </PATH_ELEMENT>
255
- <PATH_ELEMENT>
256
- <option name="myItemId" value="FigMagic" />
257
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
258
- </PATH_ELEMENT>
259
- <PATH_ELEMENT>
260
- <option name="myItemId" value="features" />
261
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
262
- </PATH_ELEMENT>
263
- <PATH_ELEMENT>
264
- <option name="myItemId" value="yaml" />
265
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
266
- </PATH_ELEMENT>
267
- </PATH>
268
- <PATH>
269
- <PATH_ELEMENT>
270
- <option name="myItemId" value="FigMagic" />
271
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
272
- </PATH_ELEMENT>
273
- <PATH_ELEMENT>
274
- <option name="myItemId" value="FigMagic" />
275
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
276
- </PATH_ELEMENT>
277
- <PATH_ELEMENT>
278
- <option name="myItemId" value="features" />
279
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
280
- </PATH_ELEMENT>
281
- <PATH_ELEMENT>
282
- <option name="myItemId" value="support" />
283
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
284
- </PATH_ELEMENT>
285
- </PATH>
286
- <PATH>
287
- <PATH_ELEMENT>
288
- <option name="myItemId" value="FigMagic" />
289
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
290
- </PATH_ELEMENT>
291
- <PATH_ELEMENT>
292
- <option name="myItemId" value="FigMagic" />
293
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
294
- </PATH_ELEMENT>
295
- <PATH_ELEMENT>
296
- <option name="myItemId" value="features" />
297
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
298
- </PATH_ELEMENT>
299
- <PATH_ELEMENT>
300
- <option name="myItemId" value="step_definitions" />
301
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
302
- </PATH_ELEMENT>
303
- </PATH>
304
- <PATH>
305
- <PATH_ELEMENT>
306
- <option name="myItemId" value="FigMagic" />
307
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
308
- </PATH_ELEMENT>
309
- <PATH_ELEMENT>
310
- <option name="myItemId" value="FigMagic" />
311
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
312
- </PATH_ELEMENT>
313
- <PATH_ELEMENT>
314
- <option name="myItemId" value="config" />
315
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
316
- </PATH_ELEMENT>
317
- <PATH_ELEMENT>
318
- <option name="myItemId" value="yaml" />
319
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
320
- </PATH_ELEMENT>
321
- </PATH>
322
- <PATH>
323
- <PATH_ELEMENT>
324
- <option name="myItemId" value="FigMagic" />
325
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
326
- </PATH_ELEMENT>
327
- <PATH_ELEMENT>
328
- <option name="myItemId" value="FigMagic" />
329
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
330
- </PATH_ELEMENT>
331
- <PATH_ELEMENT>
332
- <option name="myItemId" value="config" />
333
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
334
- </PATH_ELEMENT>
335
- <PATH_ELEMENT>
336
- <option name="myItemId" value="environments" />
337
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
338
- </PATH_ELEMENT>
339
- </PATH>
340
- <PATH>
341
- <PATH_ELEMENT>
342
- <option name="myItemId" value="FigMagic" />
343
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
344
- </PATH_ELEMENT>
345
- <PATH_ELEMENT>
346
- <option name="myItemId" value="FigMagic" />
347
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
348
- </PATH_ELEMENT>
349
- <PATH_ELEMENT>
350
- <option name="myItemId" value="config" />
351
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
352
- </PATH_ELEMENT>
353
- <PATH_ELEMENT>
354
- <option name="myItemId" value="data" />
355
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
356
- </PATH_ELEMENT>
357
- </PATH>
358
- </subPane>
359
- </pane>
360
- <pane id="Scratches" />
361
- <pane id="Scope" />
362
- </panes>
363
- </component>
364
- <component name="PropertiesComponent">
365
- <property name="WebServerToolWindowFactoryState" value="false" />
366
- <property name="last_opened_file_path" value="$PROJECT_DIR$" />
367
- <property name="js-jscs-nodeInterpreter" value="/usr/local/bin/node" />
368
- <property name="settings.editor.selected.configurable" value="org.jetbrains.plugins.ruby.settings.RubyActiveModuleSdkConfigurable" />
369
- <property name="settings.editor.splitter.proportion" value="0.2" />
370
- </component>
371
- <component name="RecentsManager">
372
- <key name="MoveFile.RECENT_KEYS">
373
- <recent name="$PROJECT_DIR$/config/data" />
374
- <recent name="$PROJECT_DIR$/config/yaml" />
375
- <recent name="$PROJECT_DIR$/config" />
376
- </key>
377
- </component>
378
- <component name="RunManager">
379
- <configuration default="true" type="BashConfigurationType" factoryName="Bash">
380
- <option name="INTERPRETER_OPTIONS" value="" />
381
- <option name="INTERPRETER_PATH" value="/bin/bash" />
382
- <option name="WORKING_DIRECTORY" value="" />
383
- <option name="PARENT_ENVS" value="true" />
384
- <option name="SCRIPT_NAME" value="" />
385
- <option name="PARAMETERS" value="" />
386
- <module name="" />
387
- <envs />
388
- <method />
389
- </configuration>
390
- <configuration default="true" type="CucumberRunConfigurationType" factoryName="Cucumber">
391
- <predefined_log_file id="RUBY_CUCUMBER" enabled="true" />
392
- <module name="" />
393
- <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
394
- <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
395
- <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
396
- <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
397
- <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
398
- <envs />
399
- <EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
400
- <EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
401
- <EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
402
- <COVERAGE_PATTERN ENABLED="true">
403
- <PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
404
- </COVERAGE_PATTERN>
405
- </EXTENSION>
406
- <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*.feature" />
407
- <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
408
- <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
409
- <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
410
- <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_TAGS_FILTER" VALUE="" />
411
- <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_NAME_FILTER" VALUE="" />
412
- <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="CUCUMBER_ARGS" VALUE="--color -r features" />
413
- <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
414
- <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
415
- <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="VERBOSE_OPTION" VALUE="false" />
416
- <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
417
- <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
418
- <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
419
- <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="CUCUMBER_RUNNER_PATH" VALUE="" />
420
- <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_RUNNER" VALUE="false" />
421
- <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SETTINGS_VERSION" VALUE="2" />
422
- <method />
423
- </configuration>
424
- <configuration default="true" type="JavascriptDebugType" factoryName="JavaScript Debug">
425
- <method />
426
- </configuration>
427
- <configuration default="true" type="RSpecRunConfigurationType" factoryName="RSpec">
428
- <predefined_log_file id="RUBY_RSPEC" enabled="true" />
429
- <module name="" />
430
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
431
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
432
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
433
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
434
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
435
- <envs />
436
- <EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
437
- <EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
438
- <EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
439
- <COVERAGE_PATTERN ENABLED="true">
440
- <PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
441
- </COVERAGE_PATTERN>
442
- </EXTENSION>
443
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
444
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
445
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="" />
446
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
447
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="" />
448
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
449
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="" />
450
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
451
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_SPEC_RUNNER" VALUE="false" />
452
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
453
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
454
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
455
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
456
- <method />
457
- </configuration>
458
- <configuration default="true" type="RubyRunConfigurationType" factoryName="Ruby">
459
- <module name="" />
460
- <RUBY_RUN_CONFIG NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
461
- <RUBY_RUN_CONFIG NAME="WORK DIR" VALUE="" />
462
- <RUBY_RUN_CONFIG NAME="SHOULD_USE_SDK" VALUE="false" />
463
- <RUBY_RUN_CONFIG NAME="ALTERN_SDK_NAME" VALUE="" />
464
- <RUBY_RUN_CONFIG NAME="myPassParentEnvs" VALUE="true" />
465
- <envs />
466
- <EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
467
- <EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
468
- <EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
469
- <COVERAGE_PATTERN ENABLED="true">
470
- <PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
471
- </COVERAGE_PATTERN>
472
- </EXTENSION>
473
- <RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="" />
474
- <RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="" />
475
- <method />
476
- </configuration>
477
- <configuration default="true" type="TestUnitRunConfigurationType" factoryName="Test::Unit/Shoulda/Minitest">
478
- <predefined_log_file id="RUBY_TESTUNIT" enabled="true" />
479
- <module name="" />
480
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
481
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
482
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
483
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
484
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
485
- <envs />
486
- <EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
487
- <EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
488
- <EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
489
- <COVERAGE_PATTERN ENABLED="true">
490
- <PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
491
- </COVERAGE_PATTERN>
492
- </EXTENSION>
493
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
494
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
495
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="" />
496
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_METHOD_NAME" VALUE="" />
497
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
498
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
499
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
500
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
501
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_OPTIONS" VALUE="" />
502
- <method />
503
- </configuration>
504
- <configuration default="true" type="js.build_tools.gulp" factoryName="Gulp.js">
505
- <method />
506
- </configuration>
507
- <configuration default="true" type="js.build_tools.npm" factoryName="npm">
508
- <command value="run-script" />
509
- <scripts />
510
- <envs />
511
- <method />
512
- </configuration>
513
- </component>
514
- <component name="ShelveChangesManager" show_recycled="false" />
515
- <component name="SvnConfiguration">
516
- <configuration />
517
- </component>
518
- <component name="TaskManager">
519
- <task active="true" id="Default" summary="Default task">
520
- <changelist id="077dcec9-b1fb-423d-b919-a9d4692110ae" name="Default" comment="" />
521
- <created>1448050207975</created>
522
- <option name="number" value="Default" />
523
- <updated>1448050207975</updated>
524
- </task>
525
- <servers />
526
- </component>
527
- <component name="ToolWindowManager">
528
- <frame x="545" y="129" width="1694" height="1047" extended-state="0" />
529
- <editor active="true" />
530
- <layout>
531
- <window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" show_stripe_button="true" weight="0.24970484" sideWeight="0.5" order="0" side_tool="false" content_ui="combo" />
532
- <window_info id="TODO" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="6" side_tool="false" content_ui="tabs" />
533
- <window_info id="Event Log" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="7" side_tool="true" content_ui="tabs" />
534
- <window_info id="Database" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
535
- <window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.32968128" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
536
- <window_info id="Version Control" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
537
- <window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.3293578" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
538
- <window_info id="Structure" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
539
- <window_info id="Terminal" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
540
- <window_info id="Favorites" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="2" side_tool="true" content_ui="tabs" />
541
- <window_info id="Debug" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.4" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
542
- <window_info id="Cvs" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="4" side_tool="false" content_ui="tabs" />
543
- <window_info id="Messages" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" show_stripe_button="true" weight="0.32968128" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
544
- <window_info id="Message" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
545
- <window_info id="Commander" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.4" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
546
- <window_info id="Inspection" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.4" sideWeight="0.5" order="5" side_tool="false" content_ui="tabs" />
547
- <window_info id="Hierarchy" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="2" side_tool="false" content_ui="combo" />
548
- <window_info id="Atlassian " active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
549
- <window_info id="Ant Build" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
550
- </layout>
551
- </component>
552
- <component name="Vcs.Log.UiProperties">
553
- <option name="RECENTLY_FILTERED_USER_GROUPS">
554
- <collection />
555
- </option>
556
- <option name="RECENTLY_FILTERED_BRANCH_GROUPS">
557
- <collection />
558
- </option>
559
- </component>
560
- <component name="VcsContentAnnotationSettings">
561
- <option name="myLimit" value="2678400000" />
562
- </component>
563
- <component name="XDebuggerManager">
564
- <breakpoint-manager />
565
- <watches-manager />
566
- </component>
567
- <component name="atlassian-ide-plugin-workspace-issues">
568
- <option name="view">
569
- <JiraViewConfigurationBean>
570
- <option name="viewFilterId" value="" />
571
- </JiraViewConfigurationBean>
572
- </option>
573
- </component>
574
- <component name="editorHistoryManager">
575
- <entry file="file://$PROJECT_DIR$/features/support/env.rb">
576
- <provider selected="true" editor-type-id="text-editor">
577
- <state vertical-scroll-proportion="0.0">
578
- <caret line="9" column="0" selection-start-line="9" selection-start-column="0" selection-end-line="9" selection-end-column="0" />
579
- <folding />
580
- </state>
581
- </provider>
582
- </entry>
583
- <entry file="file://$PROJECT_DIR$/features/data_magic.feature">
584
- <provider selected="true" editor-type-id="text-editor">
585
- <state vertical-scroll-proportion="0.0">
586
- <caret line="61" column="38" selection-start-line="61" selection-start-column="38" selection-end-line="61" selection-end-column="38" />
587
- <folding />
588
- </state>
589
- </provider>
590
- </entry>
591
- <entry file="file://$PROJECT_DIR$/features/fig_newton.feature">
592
- <provider selected="true" editor-type-id="text-editor">
593
- <state vertical-scroll-proportion="0.0">
594
- <caret line="25" column="43" selection-start-line="25" selection-start-column="43" selection-end-line="25" selection-end-column="43" />
595
- <folding />
596
- </state>
597
- </provider>
598
- </entry>
599
- <entry file="file://$PROJECT_DIR$/features/defaults.feature">
600
- <provider selected="true" editor-type-id="text-editor">
601
- <state vertical-scroll-proportion="0.0">
602
- <caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
603
- <folding />
604
- </state>
605
- </provider>
606
- </entry>
607
- <entry file="file://$PROJECT_DIR$/lib/fig_magic/version.rb">
608
- <provider selected="true" editor-type-id="text-editor">
609
- <state vertical-scroll-proportion="0.0">
610
- <caret line="1" column="15" selection-start-line="1" selection-start-column="15" selection-end-line="1" selection-end-column="15" />
611
- <folding />
612
- </state>
613
- </provider>
614
- </entry>
615
- <entry file="file://$PROJECT_DIR$/lib/fig_magic/translation.rb">
616
- <provider selected="true" editor-type-id="text-editor">
617
- <state vertical-scroll-proportion="0.0">
618
- <caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
619
- <folding />
620
- </state>
621
- </provider>
622
- </entry>
623
- <entry file="file://$PROJECT_DIR$/lib/fig_magic/missing.rb">
624
- <provider selected="true" editor-type-id="text-editor">
625
- <state vertical-scroll-proportion="0.0">
626
- <caret line="35" column="0" selection-start-line="35" selection-start-column="0" selection-end-line="35" selection-end-column="0" />
627
- <folding />
628
- </state>
629
- </provider>
630
- </entry>
631
- <entry file="file://$PROJECT_DIR$/lib/fig_magic/node.rb">
632
- <provider selected="true" editor-type-id="text-editor">
633
- <state vertical-scroll-proportion="0.0">
634
- <caret line="15" column="0" selection-start-line="15" selection-start-column="0" selection-end-line="15" selection-end-column="0" />
635
- <folding />
636
- </state>
637
- </provider>
638
- </entry>
639
- <entry file="file://$PROJECT_DIR$/ChangeLog">
640
- <provider selected="true" editor-type-id="text-editor">
641
- <state vertical-scroll-proportion="0.0">
642
- <caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
643
- <folding />
644
- </state>
645
- </provider>
646
- </entry>
647
- <entry file="file://$PROJECT_DIR$/cucumber.yml">
648
- <provider selected="true" editor-type-id="text-editor">
649
- <state vertical-scroll-proportion="0.0">
650
- <caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
651
- <folding />
652
- </state>
653
- </provider>
654
- </entry>
655
- <entry file="file://$PROJECT_DIR$/Rakefile">
656
- <provider selected="true" editor-type-id="text-editor">
657
- <state vertical-scroll-proportion="0.0">
658
- <caret line="2" column="0" selection-start-line="2" selection-start-column="0" selection-end-line="2" selection-end-column="0" />
659
- <folding />
660
- </state>
661
- </provider>
662
- </entry>
663
- <entry file="file://$PROJECT_DIR$/.rspec">
664
- <provider selected="true" editor-type-id="text-editor">
665
- <state vertical-scroll-proportion="0.0">
666
- <caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
667
- <folding />
668
- </state>
669
- </provider>
670
- </entry>
671
- <entry file="file://$PROJECT_DIR$/config/environments/default.yml">
672
- <provider selected="true" editor-type-id="text-editor">
673
- <state vertical-scroll-proportion="0.0">
674
- <caret line="0" column="34" selection-start-line="0" selection-start-column="34" selection-end-line="0" selection-end-column="34" />
675
- <folding />
676
- </state>
677
- </provider>
678
- </entry>
679
- <entry file="file://$PROJECT_DIR$/config/yaml/sample.yml">
680
- <provider selected="true" editor-type-id="text-editor">
681
- <state vertical-scroll-proportion="0.0">
682
- <caret line="0" column="41" selection-start-line="0" selection-start-column="41" selection-end-line="0" selection-end-column="41" />
683
- <folding />
684
- </state>
685
- </provider>
686
- </entry>
687
- <entry file="file://$PROJECT_DIR$/config/yaml/test_config.yml">
688
- <provider selected="true" editor-type-id="text-editor">
689
- <state vertical-scroll-proportion="0.0">
690
- <caret line="14" column="0" selection-start-line="14" selection-start-column="0" selection-end-line="14" selection-end-column="0" />
691
- <folding />
692
- </state>
693
- </provider>
694
- </entry>
695
- <entry file="file://$PROJECT_DIR$/config/data/user.yml">
696
- <provider selected="true" editor-type-id="text-editor">
697
- <state vertical-scroll-proportion="0.0">
698
- <caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
699
- <folding />
700
- </state>
701
- </provider>
702
- </entry>
703
- <entry file="file://$PROJECT_DIR$/features/step_definitions/data_magic_steps.rb">
704
- <provider selected="true" editor-type-id="text-editor">
705
- <state vertical-scroll-proportion="-11.703704">
706
- <caret line="47" column="15" selection-start-line="47" selection-start-column="10" selection-end-line="47" selection-end-column="15" />
707
- <folding />
708
- </state>
709
- </provider>
710
- </entry>
711
- <entry file="file://$PROJECT_DIR$/features/step_definitions/fig_newton_steps.rb">
712
- <provider selected="true" editor-type-id="text-editor">
713
- <state vertical-scroll-proportion="0.0">
714
- <caret line="52" column="40" selection-start-line="52" selection-start-column="40" selection-end-line="52" selection-end-column="40" />
715
- <folding />
716
- </state>
717
- </provider>
718
- </entry>
719
- <entry file="file://$PROJECT_DIR$/lib/fig_magic.rb">
720
- <provider selected="true" editor-type-id="text-editor">
721
- <state vertical-scroll-proportion="0.0">
722
- <caret line="80" column="14" selection-start-line="80" selection-start-column="14" selection-end-line="80" selection-end-column="14" />
723
- <folding />
724
- </state>
725
- </provider>
726
- </entry>
727
- <entry file="file://$PROJECT_DIR$/config/data/default.yml">
728
- <provider selected="true" editor-type-id="text-editor">
729
- <state vertical-scroll-proportion="0.0">
730
- <caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
731
- <folding />
732
- </state>
733
- </provider>
734
- </entry>
735
- <entry file="file://$PROJECT_DIR$/.gitignore">
736
- <provider selected="true" editor-type-id="text-editor">
737
- <state vertical-scroll-proportion="0.0">
738
- <caret line="16" column="3" selection-start-line="16" selection-start-column="3" selection-end-line="16" selection-end-column="3" />
739
- <folding />
740
- </state>
741
- </provider>
742
- </entry>
743
- <entry file="file://$PROJECT_DIR$/.ruby-version">
744
- <provider selected="true" editor-type-id="text-editor">
745
- <state vertical-scroll-proportion="0.0">
746
- <caret line="0" column="10" selection-start-line="0" selection-start-column="10" selection-end-line="0" selection-end-column="10" />
747
- <folding />
748
- </state>
749
- </provider>
750
- </entry>
751
- <entry file="file://$PROJECT_DIR$/.ruby-gemset">
752
- <provider selected="true" editor-type-id="text-editor">
753
- <state vertical-scroll-proportion="0.0">
754
- <caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
755
- <folding />
756
- </state>
757
- </provider>
758
- </entry>
759
- <entry file="file://$PROJECT_DIR$/Gemfile">
760
- <provider selected="true" editor-type-id="text-editor">
761
- <state vertical-scroll-proportion="0.0">
762
- <caret line="12" column="0" selection-start-line="12" selection-start-column="0" selection-end-line="12" selection-end-column="0" />
763
- <folding />
764
- </state>
765
- </provider>
766
- </entry>
767
- <entry file="file://$PROJECT_DIR$/fig_magic.gemspec">
768
- <provider selected="true" editor-type-id="text-editor">
769
- <state vertical-scroll-proportion="0.38422132">
770
- <caret line="25" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="25" selection-end-column="0" />
771
- <folding />
772
- </state>
773
- </provider>
774
- </entry>
775
- </component>
776
- </project>