aus_phones 0.9.1
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 +7 -0
- data/.gitignore +14 -0
- data/.idea/.name +1 -0
- data/.idea/aus_phones.iml +32 -0
- data/.idea/codeStyleSettings.xml +13 -0
- data/.idea/misc.xml +14 -0
- data/.idea/modules.xml +8 -0
- data/.idea/vcs.xml +6 -0
- data/.idea/workspace.xml +670 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +72 -0
- data/Rakefile +3 -0
- data/aus_phones.gemspec +28 -0
- data/config/phones.yml +599 -0
- data/lib/aus_phones.rb +192 -0
- data/lib/aus_phones/version.rb +3 -0
- data/spec/aus_phones_spec.rb +186 -0
- data/spec/spec_helper.rb +2 -0
- data/tasks/rspec.rake +3 -0
- metadata +136 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: c154abd3a050cd7a57633827f933dccc405918ef
|
|
4
|
+
data.tar.gz: feb4db35a0643dc786c52557d73102e7307bcf80
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 4fc77b55aca465d580be580c583d84a41aa89581e4d38e9cc921e4c7962f771c0f9c944d89ad07002b1e23e178cc62ec13878f678070a1a2832acfe29ec327a1
|
|
7
|
+
data.tar.gz: 87752691f9c888c00980725f047b9b4f47eabdabbe8c1f4fc8462712beb6f368dce13d515d0f9e42bc84b44392d3585c58a118f444f8928789e51bcfce5148d8
|
data/.gitignore
ADDED
data/.idea/.name
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
aus_phones
|
|
@@ -0,0 +1,32 @@
|
|
|
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="" />
|
|
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="activesupport (v4.2.1, RVM: ruby-2.2.0) [gem]" level="application" />
|
|
17
|
+
<orderEntry type="library" scope="PROVIDED" name="awesome_print (v0.4.0, RVM: ruby-2.2.0) [gem]" level="application" />
|
|
18
|
+
<orderEntry type="library" scope="PROVIDED" name="bundler (v1.7.11, RVM: ruby-2.2.0) [gem]" level="application" />
|
|
19
|
+
<orderEntry type="library" scope="PROVIDED" name="diff-lcs (v1.2.5, RVM: ruby-2.2.0) [gem]" level="application" />
|
|
20
|
+
<orderEntry type="library" scope="PROVIDED" name="i18n (v0.7.0, RVM: ruby-2.2.0) [gem]" level="application" />
|
|
21
|
+
<orderEntry type="library" scope="PROVIDED" name="json (v1.8.2, RVM: ruby-2.2.0) [gem]" level="application" />
|
|
22
|
+
<orderEntry type="library" scope="PROVIDED" name="minitest (v5.6.1, RVM: ruby-2.2.0) [gem]" level="application" />
|
|
23
|
+
<orderEntry type="library" scope="PROVIDED" name="rake (v10.4.2, RVM: ruby-2.2.0) [gem]" level="application" />
|
|
24
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec (v3.2.0, RVM: ruby-2.2.0) [gem]" level="application" />
|
|
25
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-core (v3.2.3, RVM: ruby-2.2.0) [gem]" level="application" />
|
|
26
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-expectations (v3.2.1, RVM: ruby-2.2.0) [gem]" level="application" />
|
|
27
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-mocks (v3.2.1, RVM: ruby-2.2.0) [gem]" level="application" />
|
|
28
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-support (v3.2.2, RVM: ruby-2.2.0) [gem]" level="application" />
|
|
29
|
+
<orderEntry type="library" scope="PROVIDED" name="thread_safe (v0.3.5, RVM: ruby-2.2.0) [gem]" level="application" />
|
|
30
|
+
<orderEntry type="library" scope="PROVIDED" name="tzinfo (v1.2.2, RVM: ruby-2.2.0) [gem]" level="application" />
|
|
31
|
+
</component>
|
|
32
|
+
</module>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="ProjectCodeStyleSettingsManager">
|
|
4
|
+
<option name="PER_PROJECT_SETTINGS">
|
|
5
|
+
<value>
|
|
6
|
+
<XML>
|
|
7
|
+
<option name="XML_LEGACY_SETTINGS_IMPORTED" value="true" />
|
|
8
|
+
</XML>
|
|
9
|
+
</value>
|
|
10
|
+
</option>
|
|
11
|
+
<option name="PREFERRED_PROJECT_CODE_STYLE" value="Default (1)" />
|
|
12
|
+
</component>
|
|
13
|
+
</project>
|
data/.idea/misc.xml
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
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="RVM: ruby-2.2.0" project-jdk-type="RUBY_SDK" />
|
|
14
|
+
</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/aus_phones.iml" filepath="$PROJECT_DIR$/.idea/aus_phones.iml" />
|
|
6
|
+
</modules>
|
|
7
|
+
</component>
|
|
8
|
+
</project>
|
data/.idea/vcs.xml
ADDED
data/.idea/workspace.xml
ADDED
|
@@ -0,0 +1,670 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="ChangeListManager">
|
|
4
|
+
<list default="true" id="ade3d03f-933e-4cca-9894-8da19cfc0731" name="Default" comment="" />
|
|
5
|
+
<ignored path="aus_phones.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="aus_phones" />
|
|
21
|
+
</component>
|
|
22
|
+
<component name="FileEditorManager">
|
|
23
|
+
<leaf>
|
|
24
|
+
<file leaf-file-name="version.rb" pinned="false" current-in-tab="true">
|
|
25
|
+
<entry file="file://$PROJECT_DIR$/lib/aus_phones/version.rb">
|
|
26
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
27
|
+
<state vertical-scroll-proportion="0.045132745">
|
|
28
|
+
<caret line="3" column="0" selection-start-line="3" selection-start-column="0" selection-end-line="3" selection-end-column="0" />
|
|
29
|
+
<folding />
|
|
30
|
+
</state>
|
|
31
|
+
</provider>
|
|
32
|
+
</entry>
|
|
33
|
+
</file>
|
|
34
|
+
<file leaf-file-name="aus_phones.rb" pinned="false" current-in-tab="false">
|
|
35
|
+
<entry file="file://$PROJECT_DIR$/lib/aus_phones.rb">
|
|
36
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
37
|
+
<state vertical-scroll-proportion="0.0">
|
|
38
|
+
<caret line="62" column="5" selection-start-line="62" selection-start-column="5" selection-end-line="62" selection-end-column="5" />
|
|
39
|
+
<folding />
|
|
40
|
+
</state>
|
|
41
|
+
</provider>
|
|
42
|
+
</entry>
|
|
43
|
+
</file>
|
|
44
|
+
<file leaf-file-name="Gemfile" pinned="false" current-in-tab="false">
|
|
45
|
+
<entry file="file://$PROJECT_DIR$/Gemfile">
|
|
46
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
47
|
+
<state vertical-scroll-proportion="0.0">
|
|
48
|
+
<caret line="1" column="0" selection-start-line="1" selection-start-column="0" selection-end-line="1" selection-end-column="0" />
|
|
49
|
+
<folding />
|
|
50
|
+
</state>
|
|
51
|
+
</provider>
|
|
52
|
+
</entry>
|
|
53
|
+
</file>
|
|
54
|
+
<file leaf-file-name="aus_phones.gemspec" pinned="false" current-in-tab="false">
|
|
55
|
+
<entry file="file://$PROJECT_DIR$/aus_phones.gemspec">
|
|
56
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
57
|
+
<state vertical-scroll-proportion="0.0">
|
|
58
|
+
<caret line="28" column="0" selection-start-line="28" selection-start-column="0" selection-end-line="28" selection-end-column="0" />
|
|
59
|
+
<folding />
|
|
60
|
+
</state>
|
|
61
|
+
</provider>
|
|
62
|
+
</entry>
|
|
63
|
+
</file>
|
|
64
|
+
<file leaf-file-name="spec_helper.rb" pinned="false" current-in-tab="false">
|
|
65
|
+
<entry file="file://$PROJECT_DIR$/spec/spec_helper.rb">
|
|
66
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
67
|
+
<state vertical-scroll-proportion="0.0">
|
|
68
|
+
<caret line="1" column="23" selection-start-line="1" selection-start-column="23" selection-end-line="1" selection-end-column="23" />
|
|
69
|
+
<folding />
|
|
70
|
+
</state>
|
|
71
|
+
</provider>
|
|
72
|
+
</entry>
|
|
73
|
+
</file>
|
|
74
|
+
<file leaf-file-name="Rakefile" pinned="false" current-in-tab="false">
|
|
75
|
+
<entry file="file://$PROJECT_DIR$/Rakefile">
|
|
76
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
77
|
+
<state vertical-scroll-proportion="0.0">
|
|
78
|
+
<caret line="3" column="0" selection-start-line="3" selection-start-column="0" selection-end-line="3" selection-end-column="0" />
|
|
79
|
+
<folding />
|
|
80
|
+
</state>
|
|
81
|
+
</provider>
|
|
82
|
+
</entry>
|
|
83
|
+
</file>
|
|
84
|
+
<file leaf-file-name="rspec.rake" pinned="false" current-in-tab="false">
|
|
85
|
+
<entry file="file://$PROJECT_DIR$/tasks/rspec.rake">
|
|
86
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
87
|
+
<state vertical-scroll-proportion="0.0">
|
|
88
|
+
<caret line="3" column="0" selection-start-line="3" selection-start-column="0" selection-end-line="3" selection-end-column="0" />
|
|
89
|
+
<folding />
|
|
90
|
+
</state>
|
|
91
|
+
</provider>
|
|
92
|
+
</entry>
|
|
93
|
+
</file>
|
|
94
|
+
<file leaf-file-name="README.md" pinned="false" current-in-tab="false">
|
|
95
|
+
<entry file="file://$PROJECT_DIR$/README.md">
|
|
96
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
97
|
+
<state vertical-scroll-proportion="-4.172414">
|
|
98
|
+
<caret line="9" column="24" selection-start-line="9" selection-start-column="24" selection-end-line="9" selection-end-column="24" />
|
|
99
|
+
<folding />
|
|
100
|
+
</state>
|
|
101
|
+
</provider>
|
|
102
|
+
<provider editor-type-id="MarkdownPreviewEditor">
|
|
103
|
+
<state />
|
|
104
|
+
</provider>
|
|
105
|
+
</entry>
|
|
106
|
+
</file>
|
|
107
|
+
<file leaf-file-name="aus_phones_spec.rb" pinned="false" current-in-tab="false">
|
|
108
|
+
<entry file="file://$PROJECT_DIR$/spec/aus_phones_spec.rb">
|
|
109
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
110
|
+
<state vertical-scroll-proportion="0.0">
|
|
111
|
+
<caret line="156" column="0" selection-start-line="156" selection-start-column="0" selection-end-line="156" selection-end-column="0" />
|
|
112
|
+
<folding />
|
|
113
|
+
</state>
|
|
114
|
+
</provider>
|
|
115
|
+
</entry>
|
|
116
|
+
</file>
|
|
117
|
+
<file leaf-file-name="phones.yml" pinned="false" current-in-tab="false">
|
|
118
|
+
<entry file="file://$PROJECT_DIR$/config/phones.yml">
|
|
119
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
120
|
+
<state vertical-scroll-proportion="0.0">
|
|
121
|
+
<caret line="52" column="27" selection-start-line="52" selection-start-column="17" selection-end-line="52" selection-end-column="27" />
|
|
122
|
+
<folding />
|
|
123
|
+
</state>
|
|
124
|
+
</provider>
|
|
125
|
+
</entry>
|
|
126
|
+
</file>
|
|
127
|
+
</leaf>
|
|
128
|
+
</component>
|
|
129
|
+
<component name="Git.Settings">
|
|
130
|
+
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
|
131
|
+
</component>
|
|
132
|
+
<component name="IdeDocumentHistory">
|
|
133
|
+
<option name="CHANGED_PATHS">
|
|
134
|
+
<list>
|
|
135
|
+
<option value="$PROJECT_DIR$/tasks/rspec.rake" />
|
|
136
|
+
<option value="$PROJECT_DIR$/Rakefile" />
|
|
137
|
+
<option value="$PROJECT_DIR$/spec/spec_helper.rb" />
|
|
138
|
+
<option value="$PROJECT_DIR$/config/phones.yml" />
|
|
139
|
+
<option value="$PROJECT_DIR$/aus_phones.gemspec" />
|
|
140
|
+
<option value="$PROJECT_DIR$/lib/aus_phones/version.rb" />
|
|
141
|
+
<option value="$PROJECT_DIR$/spec/aus_phones_spec.rb" />
|
|
142
|
+
<option value="$PROJECT_DIR$/lib/aus_phones.rb" />
|
|
143
|
+
<option value="$PROJECT_DIR$/README.md" />
|
|
144
|
+
</list>
|
|
145
|
+
</option>
|
|
146
|
+
</component>
|
|
147
|
+
<component name="JsBuildToolGruntFileManager" detection-done="true" />
|
|
148
|
+
<component name="JsGulpfileManager">
|
|
149
|
+
<detection-done>true</detection-done>
|
|
150
|
+
</component>
|
|
151
|
+
<component name="NamedScopeManager">
|
|
152
|
+
<order />
|
|
153
|
+
</component>
|
|
154
|
+
<component name="ProjectFrameBounds">
|
|
155
|
+
<option name="x" value="166" />
|
|
156
|
+
<option name="y" value="26" />
|
|
157
|
+
<option name="width" value="2176" />
|
|
158
|
+
<option name="height" value="1394" />
|
|
159
|
+
</component>
|
|
160
|
+
<component name="ProjectLevelVcsManager" settingsEditedManually="true">
|
|
161
|
+
<OptionsSetting value="true" id="Add" />
|
|
162
|
+
<OptionsSetting value="true" id="Remove" />
|
|
163
|
+
<OptionsSetting value="true" id="Checkout" />
|
|
164
|
+
<OptionsSetting value="true" id="Update" />
|
|
165
|
+
<OptionsSetting value="true" id="Status" />
|
|
166
|
+
<OptionsSetting value="true" id="Edit" />
|
|
167
|
+
<ConfirmationsSetting value="2" id="Add" />
|
|
168
|
+
<ConfirmationsSetting value="0" id="Remove" />
|
|
169
|
+
</component>
|
|
170
|
+
<component name="ProjectView">
|
|
171
|
+
<navigator currentView="ProjectPane" proportions="" version="1">
|
|
172
|
+
<flattenPackages />
|
|
173
|
+
<showMembers />
|
|
174
|
+
<showModules />
|
|
175
|
+
<showLibraryContents />
|
|
176
|
+
<hideEmptyPackages />
|
|
177
|
+
<abbreviatePackageNames />
|
|
178
|
+
<autoscrollToSource />
|
|
179
|
+
<autoscrollFromSource />
|
|
180
|
+
<sortByType />
|
|
181
|
+
</navigator>
|
|
182
|
+
<panes>
|
|
183
|
+
<pane id="ProjectPane">
|
|
184
|
+
<subPane>
|
|
185
|
+
<PATH>
|
|
186
|
+
<PATH_ELEMENT>
|
|
187
|
+
<option name="myItemId" value="aus_phones" />
|
|
188
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
189
|
+
</PATH_ELEMENT>
|
|
190
|
+
</PATH>
|
|
191
|
+
<PATH>
|
|
192
|
+
<PATH_ELEMENT>
|
|
193
|
+
<option name="myItemId" value="aus_phones" />
|
|
194
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
195
|
+
</PATH_ELEMENT>
|
|
196
|
+
<PATH_ELEMENT>
|
|
197
|
+
<option name="myItemId" value="aus_phones" />
|
|
198
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
199
|
+
</PATH_ELEMENT>
|
|
200
|
+
</PATH>
|
|
201
|
+
<PATH>
|
|
202
|
+
<PATH_ELEMENT>
|
|
203
|
+
<option name="myItemId" value="aus_phones" />
|
|
204
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
205
|
+
</PATH_ELEMENT>
|
|
206
|
+
<PATH_ELEMENT>
|
|
207
|
+
<option name="myItemId" value="aus_phones" />
|
|
208
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
209
|
+
</PATH_ELEMENT>
|
|
210
|
+
<PATH_ELEMENT>
|
|
211
|
+
<option name="myItemId" value="tasks" />
|
|
212
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
213
|
+
</PATH_ELEMENT>
|
|
214
|
+
</PATH>
|
|
215
|
+
<PATH>
|
|
216
|
+
<PATH_ELEMENT>
|
|
217
|
+
<option name="myItemId" value="aus_phones" />
|
|
218
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
219
|
+
</PATH_ELEMENT>
|
|
220
|
+
<PATH_ELEMENT>
|
|
221
|
+
<option name="myItemId" value="aus_phones" />
|
|
222
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
223
|
+
</PATH_ELEMENT>
|
|
224
|
+
<PATH_ELEMENT>
|
|
225
|
+
<option name="myItemId" value="spec" />
|
|
226
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
227
|
+
</PATH_ELEMENT>
|
|
228
|
+
</PATH>
|
|
229
|
+
<PATH>
|
|
230
|
+
<PATH_ELEMENT>
|
|
231
|
+
<option name="myItemId" value="aus_phones" />
|
|
232
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
233
|
+
</PATH_ELEMENT>
|
|
234
|
+
<PATH_ELEMENT>
|
|
235
|
+
<option name="myItemId" value="aus_phones" />
|
|
236
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
237
|
+
</PATH_ELEMENT>
|
|
238
|
+
<PATH_ELEMENT>
|
|
239
|
+
<option name="myItemId" value="lib" />
|
|
240
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
241
|
+
</PATH_ELEMENT>
|
|
242
|
+
</PATH>
|
|
243
|
+
<PATH>
|
|
244
|
+
<PATH_ELEMENT>
|
|
245
|
+
<option name="myItemId" value="aus_phones" />
|
|
246
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
247
|
+
</PATH_ELEMENT>
|
|
248
|
+
<PATH_ELEMENT>
|
|
249
|
+
<option name="myItemId" value="aus_phones" />
|
|
250
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
251
|
+
</PATH_ELEMENT>
|
|
252
|
+
<PATH_ELEMENT>
|
|
253
|
+
<option name="myItemId" value="config" />
|
|
254
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
255
|
+
</PATH_ELEMENT>
|
|
256
|
+
</PATH>
|
|
257
|
+
</subPane>
|
|
258
|
+
</pane>
|
|
259
|
+
<pane id="Scratches" />
|
|
260
|
+
<pane id="Scope" />
|
|
261
|
+
</panes>
|
|
262
|
+
</component>
|
|
263
|
+
<component name="PropertiesComponent">
|
|
264
|
+
<property name="WebServerToolWindowFactoryState" value="false" />
|
|
265
|
+
<property name="settings.editor.selected.configurable" value="reference.settingsdialog.IDE.editor.colors.Font" />
|
|
266
|
+
<property name="settings.editor.splitter.proportion" value="0.2" />
|
|
267
|
+
</component>
|
|
268
|
+
<component name="RunManager">
|
|
269
|
+
<configuration default="true" type="CucumberRunConfigurationType" factoryName="Cucumber">
|
|
270
|
+
<predefined_log_file id="RUBY_CUCUMBER" enabled="true" />
|
|
271
|
+
<module name="" />
|
|
272
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
|
273
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
|
274
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
|
275
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
|
276
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
|
277
|
+
<envs />
|
|
278
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
|
279
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
|
280
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
|
281
|
+
<COVERAGE_PATTERN ENABLED="true">
|
|
282
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
|
283
|
+
</COVERAGE_PATTERN>
|
|
284
|
+
</EXTENSION>
|
|
285
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
|
286
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*.feature" />
|
|
287
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
|
288
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
|
289
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
|
290
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_TAGS_FILTER" VALUE="" />
|
|
291
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_NAME_FILTER" VALUE="" />
|
|
292
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="CUCUMBER_ARGS" VALUE="--color -r features" />
|
|
293
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
|
294
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
|
295
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="VERBOSE_OPTION" VALUE="false" />
|
|
296
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
|
297
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
|
298
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
|
299
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="CUCUMBER_RUNNER_PATH" VALUE="" />
|
|
300
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_RUNNER" VALUE="false" />
|
|
301
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SETTINGS_VERSION" VALUE="2" />
|
|
302
|
+
<method />
|
|
303
|
+
</configuration>
|
|
304
|
+
<configuration default="true" type="JavascriptDebugType" factoryName="JavaScript Debug">
|
|
305
|
+
<method />
|
|
306
|
+
</configuration>
|
|
307
|
+
<configuration default="true" type="RSpecRunConfigurationType" factoryName="RSpec">
|
|
308
|
+
<predefined_log_file id="RUBY_RSPEC" enabled="true" />
|
|
309
|
+
<module name="" />
|
|
310
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
|
311
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
|
312
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
|
313
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
|
314
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
|
315
|
+
<envs />
|
|
316
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
|
317
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
|
318
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
|
319
|
+
<COVERAGE_PATTERN ENABLED="true">
|
|
320
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
|
321
|
+
</COVERAGE_PATTERN>
|
|
322
|
+
</EXTENSION>
|
|
323
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
|
324
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
|
325
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
|
326
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="" />
|
|
327
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
|
|
328
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="" />
|
|
329
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
|
330
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="" />
|
|
331
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
|
332
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_SPEC_RUNNER" VALUE="false" />
|
|
333
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
|
334
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
|
335
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
|
336
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
|
337
|
+
<method />
|
|
338
|
+
</configuration>
|
|
339
|
+
<configuration default="true" type="RubyRunConfigurationType" factoryName="Ruby">
|
|
340
|
+
<module name="" />
|
|
341
|
+
<RUBY_RUN_CONFIG NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
|
342
|
+
<RUBY_RUN_CONFIG NAME="WORK DIR" VALUE="" />
|
|
343
|
+
<RUBY_RUN_CONFIG NAME="SHOULD_USE_SDK" VALUE="false" />
|
|
344
|
+
<RUBY_RUN_CONFIG NAME="ALTERN_SDK_NAME" VALUE="" />
|
|
345
|
+
<RUBY_RUN_CONFIG NAME="myPassParentEnvs" VALUE="true" />
|
|
346
|
+
<envs />
|
|
347
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
|
348
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
|
349
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
|
350
|
+
<COVERAGE_PATTERN ENABLED="true">
|
|
351
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
|
352
|
+
</COVERAGE_PATTERN>
|
|
353
|
+
</EXTENSION>
|
|
354
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
|
355
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="" />
|
|
356
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="" />
|
|
357
|
+
<method />
|
|
358
|
+
</configuration>
|
|
359
|
+
<configuration default="true" type="TestUnitRunConfigurationType" factoryName="Test::Unit/Shoulda/Minitest">
|
|
360
|
+
<predefined_log_file id="RUBY_TESTUNIT" enabled="true" />
|
|
361
|
+
<module name="" />
|
|
362
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
|
363
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
|
364
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
|
365
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
|
366
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
|
367
|
+
<envs />
|
|
368
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
|
369
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
|
370
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
|
371
|
+
<COVERAGE_PATTERN ENABLED="true">
|
|
372
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
|
373
|
+
</COVERAGE_PATTERN>
|
|
374
|
+
</EXTENSION>
|
|
375
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
|
376
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
|
377
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
|
378
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="" />
|
|
379
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_METHOD_NAME" VALUE="" />
|
|
380
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
|
381
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
|
382
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
|
383
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
|
384
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_OPTIONS" VALUE="" />
|
|
385
|
+
<method />
|
|
386
|
+
</configuration>
|
|
387
|
+
<configuration default="true" type="js.build_tools.gulp" factoryName="Gulp.js">
|
|
388
|
+
<node-options />
|
|
389
|
+
<gulpfile />
|
|
390
|
+
<tasks />
|
|
391
|
+
<arguments />
|
|
392
|
+
<pass-parent-envs>true</pass-parent-envs>
|
|
393
|
+
<envs />
|
|
394
|
+
<method />
|
|
395
|
+
</configuration>
|
|
396
|
+
</component>
|
|
397
|
+
<component name="ShelveChangesManager" show_recycled="false" />
|
|
398
|
+
<component name="SvnConfiguration">
|
|
399
|
+
<configuration />
|
|
400
|
+
</component>
|
|
401
|
+
<component name="TaskManager">
|
|
402
|
+
<task active="true" id="Default" summary="Default task">
|
|
403
|
+
<changelist id="ade3d03f-933e-4cca-9894-8da19cfc0731" name="Default" comment="" />
|
|
404
|
+
<created>1432336483303</created>
|
|
405
|
+
<option name="number" value="Default" />
|
|
406
|
+
<updated>1432336483303</updated>
|
|
407
|
+
</task>
|
|
408
|
+
<task id="LOCAL-00001" summary="Completed gem">
|
|
409
|
+
<created>1432479985650</created>
|
|
410
|
+
<option name="number" value="00001" />
|
|
411
|
+
<option name="project" value="LOCAL" />
|
|
412
|
+
<updated>1432479985650</updated>
|
|
413
|
+
</task>
|
|
414
|
+
<task id="LOCAL-00002" summary="Added dialing strings and tests">
|
|
415
|
+
<created>1432481359753</created>
|
|
416
|
+
<option name="number" value="00002" />
|
|
417
|
+
<option name="project" value="LOCAL" />
|
|
418
|
+
<updated>1432481359753</updated>
|
|
419
|
+
</task>
|
|
420
|
+
<task id="LOCAL-00003" summary="Added homepage to gemspec">
|
|
421
|
+
<created>1432482221075</created>
|
|
422
|
+
<option name="number" value="00003" />
|
|
423
|
+
<option name="project" value="LOCAL" />
|
|
424
|
+
<updated>1432482221075</updated>
|
|
425
|
+
</task>
|
|
426
|
+
<task id="LOCAL-00004" summary="Updated version">
|
|
427
|
+
<created>1432482329905</created>
|
|
428
|
+
<option name="number" value="00004" />
|
|
429
|
+
<option name="project" value="LOCAL" />
|
|
430
|
+
<updated>1432482329905</updated>
|
|
431
|
+
</task>
|
|
432
|
+
<task id="LOCAL-00005" summary="Formatt local stub">
|
|
433
|
+
<created>1432501394247</created>
|
|
434
|
+
<option name="number" value="00005" />
|
|
435
|
+
<option name="project" value="LOCAL" />
|
|
436
|
+
<updated>1432501394247</updated>
|
|
437
|
+
</task>
|
|
438
|
+
<task id="LOCAL-00006" summary="Formatting tests and methods">
|
|
439
|
+
<created>1432559762800</created>
|
|
440
|
+
<option name="number" value="00006" />
|
|
441
|
+
<option name="project" value="LOCAL" />
|
|
442
|
+
<updated>1432559762800</updated>
|
|
443
|
+
</task>
|
|
444
|
+
<task id="LOCAL-00007" summary="Formatting tests and methods">
|
|
445
|
+
<created>1432560157864</created>
|
|
446
|
+
<option name="number" value="00007" />
|
|
447
|
+
<option name="project" value="LOCAL" />
|
|
448
|
+
<updated>1432560157864</updated>
|
|
449
|
+
</task>
|
|
450
|
+
<option name="localTasksCounter" value="8" />
|
|
451
|
+
<servers />
|
|
452
|
+
</component>
|
|
453
|
+
<component name="ToolWindowManager">
|
|
454
|
+
<frame x="166" y="26" width="2176" height="1394" extended-state="0" />
|
|
455
|
+
<editor active="true" />
|
|
456
|
+
<layout>
|
|
457
|
+
<window_info id="Terminal" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.1293233" sideWeight="0.49015933" order="3" side_tool="false" content_ui="tabs" />
|
|
458
|
+
<window_info id="TODO" 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" />
|
|
459
|
+
<window_info id="Database" 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" />
|
|
460
|
+
<window_info id="Structure" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
|
|
461
|
+
<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="2" side_tool="false" content_ui="tabs" />
|
|
462
|
+
<window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.14011246" sideWeight="0.5" order="1" side_tool="false" content_ui="combo" />
|
|
463
|
+
<window_info id="Favorites" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="0" side_tool="true" content_ui="tabs" />
|
|
464
|
+
<window_info id="Event Log" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.1293233" sideWeight="0.50984067" order="0" side_tool="true" content_ui="tabs" />
|
|
465
|
+
<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="1" side_tool="false" content_ui="tabs" />
|
|
466
|
+
<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="8" side_tool="false" content_ui="tabs" />
|
|
467
|
+
<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="4" side_tool="false" content_ui="tabs" />
|
|
468
|
+
<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="2" side_tool="false" content_ui="tabs" />
|
|
469
|
+
<window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="5" side_tool="false" content_ui="tabs" />
|
|
470
|
+
<window_info id="Debug" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.4" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
|
471
|
+
<window_info id="Messages" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="8" side_tool="false" content_ui="tabs" />
|
|
472
|
+
<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="1" side_tool="false" content_ui="tabs" />
|
|
473
|
+
<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="3" side_tool="false" content_ui="combo" />
|
|
474
|
+
<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="9" side_tool="false" content_ui="tabs" />
|
|
475
|
+
<window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.2565969" sideWeight="0.49790576" order="6" side_tool="false" content_ui="tabs" />
|
|
476
|
+
</layout>
|
|
477
|
+
</component>
|
|
478
|
+
<component name="Vcs.Log.UiProperties">
|
|
479
|
+
<option name="RECENTLY_FILTERED_USER_GROUPS">
|
|
480
|
+
<collection />
|
|
481
|
+
</option>
|
|
482
|
+
<option name="RECENTLY_FILTERED_BRANCH_GROUPS">
|
|
483
|
+
<collection />
|
|
484
|
+
</option>
|
|
485
|
+
</component>
|
|
486
|
+
<component name="VcsContentAnnotationSettings">
|
|
487
|
+
<option name="myLimit" value="2678400000" />
|
|
488
|
+
</component>
|
|
489
|
+
<component name="VcsManagerConfiguration">
|
|
490
|
+
<MESSAGE value="Completed gem" />
|
|
491
|
+
<MESSAGE value="Added dialing strings and tests" />
|
|
492
|
+
<MESSAGE value="Added homepage to gemspec" />
|
|
493
|
+
<MESSAGE value="Updated version" />
|
|
494
|
+
<MESSAGE value="Formatt local stub" />
|
|
495
|
+
<MESSAGE value="Formatting tests and methods" />
|
|
496
|
+
<option name="LAST_COMMIT_MESSAGE" value="Formatting tests and methods" />
|
|
497
|
+
</component>
|
|
498
|
+
<component name="XDebuggerManager">
|
|
499
|
+
<breakpoint-manager />
|
|
500
|
+
<watches-manager />
|
|
501
|
+
</component>
|
|
502
|
+
<component name="editorHistoryManager">
|
|
503
|
+
<entry file="file://$PROJECT_DIR$/lib/aus_phones/version.rb">
|
|
504
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
505
|
+
<state vertical-scroll-proportion="0.0">
|
|
506
|
+
<caret line="3" column="0" selection-start-line="3" selection-start-column="0" selection-end-line="3" selection-end-column="0" />
|
|
507
|
+
<folding />
|
|
508
|
+
</state>
|
|
509
|
+
</provider>
|
|
510
|
+
</entry>
|
|
511
|
+
<entry file="file://$PROJECT_DIR$/lib/aus_phones.rb">
|
|
512
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
513
|
+
<state vertical-scroll-proportion="0.0">
|
|
514
|
+
<caret line="62" column="5" selection-start-line="62" selection-start-column="5" selection-end-line="62" selection-end-column="5" />
|
|
515
|
+
<folding />
|
|
516
|
+
</state>
|
|
517
|
+
</provider>
|
|
518
|
+
</entry>
|
|
519
|
+
<entry file="file://$PROJECT_DIR$/Gemfile">
|
|
520
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
521
|
+
<state vertical-scroll-proportion="0.0">
|
|
522
|
+
<caret line="1" column="0" selection-start-line="1" selection-start-column="0" selection-end-line="1" selection-end-column="0" />
|
|
523
|
+
<folding />
|
|
524
|
+
</state>
|
|
525
|
+
</provider>
|
|
526
|
+
</entry>
|
|
527
|
+
<entry file="file://$PROJECT_DIR$/aus_phones.gemspec">
|
|
528
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
529
|
+
<state vertical-scroll-proportion="0.0">
|
|
530
|
+
<caret line="28" column="0" selection-start-line="28" selection-start-column="0" selection-end-line="28" selection-end-column="0" />
|
|
531
|
+
<folding />
|
|
532
|
+
</state>
|
|
533
|
+
</provider>
|
|
534
|
+
</entry>
|
|
535
|
+
<entry file="file://$PROJECT_DIR$/spec/spec_helper.rb">
|
|
536
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
537
|
+
<state vertical-scroll-proportion="0.0">
|
|
538
|
+
<caret line="1" column="23" selection-start-line="1" selection-start-column="23" selection-end-line="1" selection-end-column="23" />
|
|
539
|
+
<folding />
|
|
540
|
+
</state>
|
|
541
|
+
</provider>
|
|
542
|
+
</entry>
|
|
543
|
+
<entry file="file://$PROJECT_DIR$/Rakefile">
|
|
544
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
545
|
+
<state vertical-scroll-proportion="0.0">
|
|
546
|
+
<caret line="3" column="0" selection-start-line="3" selection-start-column="0" selection-end-line="3" selection-end-column="0" />
|
|
547
|
+
<folding />
|
|
548
|
+
</state>
|
|
549
|
+
</provider>
|
|
550
|
+
</entry>
|
|
551
|
+
<entry file="file://$PROJECT_DIR$/tasks/rspec.rake">
|
|
552
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
553
|
+
<state vertical-scroll-proportion="0.0">
|
|
554
|
+
<caret line="3" column="0" selection-start-line="3" selection-start-column="0" selection-end-line="3" selection-end-column="0" />
|
|
555
|
+
<folding />
|
|
556
|
+
</state>
|
|
557
|
+
</provider>
|
|
558
|
+
</entry>
|
|
559
|
+
<entry file="file://$PROJECT_DIR$/README.md">
|
|
560
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
561
|
+
<state vertical-scroll-proportion="0.0">
|
|
562
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
|
563
|
+
<folding />
|
|
564
|
+
</state>
|
|
565
|
+
</provider>
|
|
566
|
+
<provider editor-type-id="MarkdownPreviewEditor">
|
|
567
|
+
<state />
|
|
568
|
+
</provider>
|
|
569
|
+
</entry>
|
|
570
|
+
<entry file="file://$PROJECT_DIR$/spec/aus_phones_spec.rb">
|
|
571
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
572
|
+
<state vertical-scroll-proportion="0.0">
|
|
573
|
+
<caret line="156" column="0" selection-start-line="156" selection-start-column="0" selection-end-line="156" selection-end-column="0" />
|
|
574
|
+
<folding />
|
|
575
|
+
</state>
|
|
576
|
+
</provider>
|
|
577
|
+
</entry>
|
|
578
|
+
<entry file="file://$PROJECT_DIR$/config/phones.yml">
|
|
579
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
580
|
+
<state vertical-scroll-proportion="0.0">
|
|
581
|
+
<caret line="52" column="27" selection-start-line="52" selection-start-column="17" selection-end-line="52" selection-end-column="27" />
|
|
582
|
+
<folding />
|
|
583
|
+
</state>
|
|
584
|
+
</provider>
|
|
585
|
+
</entry>
|
|
586
|
+
<entry file="file://$PROJECT_DIR$/config/phones.yml">
|
|
587
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
588
|
+
<state vertical-scroll-proportion="0.0">
|
|
589
|
+
<caret line="52" column="27" selection-start-line="52" selection-start-column="17" selection-end-line="52" selection-end-column="27" />
|
|
590
|
+
<folding />
|
|
591
|
+
</state>
|
|
592
|
+
</provider>
|
|
593
|
+
</entry>
|
|
594
|
+
<entry file="file://$PROJECT_DIR$/spec/aus_phones_spec.rb">
|
|
595
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
596
|
+
<state vertical-scroll-proportion="0.0">
|
|
597
|
+
<caret line="156" column="0" selection-start-line="156" selection-start-column="0" selection-end-line="156" selection-end-column="0" />
|
|
598
|
+
<folding />
|
|
599
|
+
</state>
|
|
600
|
+
</provider>
|
|
601
|
+
</entry>
|
|
602
|
+
<entry file="file://$PROJECT_DIR$/README.md">
|
|
603
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
604
|
+
<state vertical-scroll-proportion="-4.172414">
|
|
605
|
+
<caret line="9" column="24" selection-start-line="9" selection-start-column="24" selection-end-line="9" selection-end-column="24" />
|
|
606
|
+
<folding />
|
|
607
|
+
</state>
|
|
608
|
+
</provider>
|
|
609
|
+
<provider editor-type-id="MarkdownPreviewEditor">
|
|
610
|
+
<state />
|
|
611
|
+
</provider>
|
|
612
|
+
</entry>
|
|
613
|
+
<entry file="file://$PROJECT_DIR$/tasks/rspec.rake">
|
|
614
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
615
|
+
<state vertical-scroll-proportion="0.0">
|
|
616
|
+
<caret line="3" column="0" selection-start-line="3" selection-start-column="0" selection-end-line="3" selection-end-column="0" />
|
|
617
|
+
<folding />
|
|
618
|
+
</state>
|
|
619
|
+
</provider>
|
|
620
|
+
</entry>
|
|
621
|
+
<entry file="file://$PROJECT_DIR$/Rakefile">
|
|
622
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
623
|
+
<state vertical-scroll-proportion="0.0">
|
|
624
|
+
<caret line="3" column="0" selection-start-line="3" selection-start-column="0" selection-end-line="3" selection-end-column="0" />
|
|
625
|
+
<folding />
|
|
626
|
+
</state>
|
|
627
|
+
</provider>
|
|
628
|
+
</entry>
|
|
629
|
+
<entry file="file://$PROJECT_DIR$/spec/spec_helper.rb">
|
|
630
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
631
|
+
<state vertical-scroll-proportion="0.0">
|
|
632
|
+
<caret line="1" column="23" selection-start-line="1" selection-start-column="23" selection-end-line="1" selection-end-column="23" />
|
|
633
|
+
<folding />
|
|
634
|
+
</state>
|
|
635
|
+
</provider>
|
|
636
|
+
</entry>
|
|
637
|
+
<entry file="file://$PROJECT_DIR$/aus_phones.gemspec">
|
|
638
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
639
|
+
<state vertical-scroll-proportion="0.0">
|
|
640
|
+
<caret line="28" column="0" selection-start-line="28" selection-start-column="0" selection-end-line="28" selection-end-column="0" />
|
|
641
|
+
<folding />
|
|
642
|
+
</state>
|
|
643
|
+
</provider>
|
|
644
|
+
</entry>
|
|
645
|
+
<entry file="file://$PROJECT_DIR$/Gemfile">
|
|
646
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
647
|
+
<state vertical-scroll-proportion="0.0">
|
|
648
|
+
<caret line="1" column="0" selection-start-line="1" selection-start-column="0" selection-end-line="1" selection-end-column="0" />
|
|
649
|
+
<folding />
|
|
650
|
+
</state>
|
|
651
|
+
</provider>
|
|
652
|
+
</entry>
|
|
653
|
+
<entry file="file://$PROJECT_DIR$/lib/aus_phones.rb">
|
|
654
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
655
|
+
<state vertical-scroll-proportion="0.0">
|
|
656
|
+
<caret line="62" column="5" selection-start-line="62" selection-start-column="5" selection-end-line="62" selection-end-column="5" />
|
|
657
|
+
<folding />
|
|
658
|
+
</state>
|
|
659
|
+
</provider>
|
|
660
|
+
</entry>
|
|
661
|
+
<entry file="file://$PROJECT_DIR$/lib/aus_phones/version.rb">
|
|
662
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
663
|
+
<state vertical-scroll-proportion="0.045132745">
|
|
664
|
+
<caret line="3" column="0" selection-start-line="3" selection-start-column="0" selection-end-line="3" selection-end-column="0" />
|
|
665
|
+
<folding />
|
|
666
|
+
</state>
|
|
667
|
+
</provider>
|
|
668
|
+
</entry>
|
|
669
|
+
</component>
|
|
670
|
+
</project>
|