apn 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +17 -0
- data/.idea/.name +1 -0
- data/.idea/.rakeTasks +7 -0
- data/.idea/apn.iml +29 -0
- data/.idea/encodings.xml +5 -0
- data/.idea/misc.xml +5 -0
- data/.idea/modules.xml +9 -0
- data/.idea/scopes/scope_settings.xml +5 -0
- data/.idea/vcs.xml +7 -0
- data/.idea/workspace.xml +630 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +74 -0
- data/Rakefile +1 -0
- data/apn.gemspec +27 -0
- data/bin/apn +90 -0
- data/lib/apn.rb +51 -0
- data/lib/apn/client.rb +85 -0
- data/lib/apn/config.rb +38 -0
- data/lib/apn/daemon.rb +85 -0
- data/lib/apn/feedback.rb +46 -0
- data/lib/apn/log.rb +20 -0
- data/lib/apn/notification.rb +34 -0
- data/lib/apn/railtie.rb +13 -0
- data/lib/apn/version.rb +3 -0
- metadata +153 -0
data/.gitignore
ADDED
data/.idea/.name
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
apn
|
data/.idea/.rakeTasks
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<Settings><!--This file was automatically generated by Ruby plugin.
|
3
|
+
You are allowed to:
|
4
|
+
1. Remove rake task
|
5
|
+
2. Add existing rake tasks
|
6
|
+
To add existing rake tasks automatically delete this file and reload the project.
|
7
|
+
--><RakeGroup description="" fullCmd="" taksId="rake"><RakeTask description="Build apn-0.0.1.gem into the pkg directory" fullCmd="build" taksId="build" /><RakeTask description="Build and install apn-0.0.1.gem into system gems" fullCmd="install" taksId="install" /><RakeTask description="Create tag v0.0.1 and build and push apn-0.0.1.gem to Rubygems" fullCmd="release" taksId="release" /></RakeGroup></Settings>
|
data/.idea/apn.iml
ADDED
@@ -0,0 +1,29 @@
|
|
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="$MODULE_DIR$" />
|
7
|
+
<option name="GEM_APP_TEST_PATH" value="" />
|
8
|
+
<option name="GEM_APP_LIB_PATH" value="$MODULE_DIR$/lib" />
|
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.0.0, ruby-1.9.3-p194) [gem]" level="application" />
|
17
|
+
<orderEntry type="library" scope="PROVIDED" name="atomic (v1.1.14, ruby-1.9.3-p194) [gem]" level="application" />
|
18
|
+
<orderEntry type="library" scope="PROVIDED" name="bundler (v1.3.5, ruby-1.9.3-p194) [gem]" level="application" />
|
19
|
+
<orderEntry type="library" scope="PROVIDED" name="daemons (v1.1.6, ruby-1.9.3-p194) [gem]" level="application" />
|
20
|
+
<orderEntry type="library" scope="PROVIDED" name="i18n (v0.6.9, ruby-1.9.3-p194) [gem]" level="application" />
|
21
|
+
<orderEntry type="library" scope="PROVIDED" name="minitest (v4.7.5, ruby-1.9.3-p194) [gem]" level="application" />
|
22
|
+
<orderEntry type="library" scope="PROVIDED" name="multi_json (v1.8.2, ruby-1.9.3-p194) [gem]" level="application" />
|
23
|
+
<orderEntry type="library" scope="PROVIDED" name="rake (v10.1.0, ruby-1.9.3-p194) [gem]" level="application" />
|
24
|
+
<orderEntry type="library" scope="PROVIDED" name="redis (v2.2.2, ruby-1.9.3-p194) [gem]" level="application" />
|
25
|
+
<orderEntry type="library" scope="PROVIDED" name="thread_safe (v0.1.3, ruby-1.9.3-p194) [gem]" level="application" />
|
26
|
+
<orderEntry type="library" scope="PROVIDED" name="tzinfo (v0.3.38, ruby-1.9.3-p194) [gem]" level="application" />
|
27
|
+
</component>
|
28
|
+
</module>
|
29
|
+
|
data/.idea/encodings.xml
ADDED
data/.idea/misc.xml
ADDED
data/.idea/modules.xml
ADDED
data/.idea/vcs.xml
ADDED
data/.idea/workspace.xml
ADDED
@@ -0,0 +1,630 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="ChangeListManager">
|
4
|
+
<list default="true" id="0044e0ee-7253-4582-93d4-a45b83a4d6b2" name="Default" comment="">
|
5
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/README.md" afterPath="$PROJECT_DIR$/README.md" />
|
6
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/bin/apn" afterPath="$PROJECT_DIR$/bin/apn" />
|
7
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/lib/apn/version.rb" afterPath="$PROJECT_DIR$/lib/apn/version.rb" />
|
8
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/.idea/workspace.xml" afterPath="$PROJECT_DIR$/.idea/workspace.xml" />
|
9
|
+
</list>
|
10
|
+
<ignored path="apn.iws" />
|
11
|
+
<ignored path=".idea/workspace.xml" />
|
12
|
+
<file path="/Dummy.txt" changelist="0044e0ee-7253-4582-93d4-a45b83a4d6b2" time="1386635096854" ignored="false" />
|
13
|
+
<file path="/apn.rb" changelist="0044e0ee-7253-4582-93d4-a45b83a4d6b2" time="1386683866051" ignored="false" />
|
14
|
+
<file path="/client.rb" changelist="0044e0ee-7253-4582-93d4-a45b83a4d6b2" time="1386675564025" ignored="false" />
|
15
|
+
<file path="/notification.rb" changelist="0044e0ee-7253-4582-93d4-a45b83a4d6b2" time="1386621553010" ignored="false" />
|
16
|
+
<file path="/daemon.rb" changelist="0044e0ee-7253-4582-93d4-a45b83a4d6b2" time="1386682860851" ignored="false" />
|
17
|
+
<file path="/feedback.rb" changelist="0044e0ee-7253-4582-93d4-a45b83a4d6b2" time="1386621821594" ignored="false" />
|
18
|
+
<file path="/log.rb" changelist="0044e0ee-7253-4582-93d4-a45b83a4d6b2" time="1386621831672" ignored="false" />
|
19
|
+
<file path="/apn.gemspec" changelist="0044e0ee-7253-4582-93d4-a45b83a4d6b2" time="1386635907063" ignored="false" />
|
20
|
+
<file path="/README.md" changelist="0044e0ee-7253-4582-93d4-a45b83a4d6b2" time="1386687164362" ignored="false" />
|
21
|
+
<file path="$PROJECT_DIR$/../liquidtalent/Gemfile" changelist="0044e0ee-7253-4582-93d4-a45b83a4d6b2" time="1386624612669" ignored="false" />
|
22
|
+
<file path="/Gemfile" changelist="0044e0ee-7253-4582-93d4-a45b83a4d6b2" time="1386636601401" ignored="false" />
|
23
|
+
<file path="/temp.rb" changelist="0044e0ee-7253-4582-93d4-a45b83a4d6b2" time="1386627448610" ignored="false" />
|
24
|
+
<file path="$PROJECT_DIR$/../apn-test/app/controllers/users_controller.rb" changelist="0044e0ee-7253-4582-93d4-a45b83a4d6b2" time="1386679010097" ignored="false" />
|
25
|
+
<file path="/users_controller.rb" changelist="0044e0ee-7253-4582-93d4-a45b83a4d6b2" time="1386678998540" ignored="false" />
|
26
|
+
<file path="$PROJECT_DIR$/../apn-test/config/routes.rb" changelist="0044e0ee-7253-4582-93d4-a45b83a4d6b2" time="1386631733572" ignored="false" />
|
27
|
+
<file path="/routes.rb" changelist="0044e0ee-7253-4582-93d4-a45b83a4d6b2" time="1386631732656" ignored="false" />
|
28
|
+
<file path="$PROJECT_DIR$/../apn-test/Gemfile" changelist="0044e0ee-7253-4582-93d4-a45b83a4d6b2" time="1386679219454" ignored="false" />
|
29
|
+
<file path="/apn" changelist="0044e0ee-7253-4582-93d4-a45b83a4d6b2" time="1386687226197" ignored="false" />
|
30
|
+
<file path="/version.rb" changelist="0044e0ee-7253-4582-93d4-a45b83a4d6b2" time="1386687340179" ignored="false" />
|
31
|
+
<file path="/config.rb" changelist="0044e0ee-7253-4582-93d4-a45b83a4d6b2" time="1386634524096" ignored="false" />
|
32
|
+
<file path="/notifier_daemon.rb" changelist="0044e0ee-7253-4582-93d4-a45b83a4d6b2" time="1386674133273" ignored="false" />
|
33
|
+
<file path="$PROJECT_DIR$/../dnsniffer.com/script/notifier_daemon.rb" changelist="0044e0ee-7253-4582-93d4-a45b83a4d6b2" time="1386674133273" ignored="false" />
|
34
|
+
<file path="/railtie.rb" changelist="0044e0ee-7253-4582-93d4-a45b83a4d6b2" time="1386683847437" ignored="false" />
|
35
|
+
<option name="TRACKING_ENABLED" value="true" />
|
36
|
+
<option name="SHOW_DIALOG" value="false" />
|
37
|
+
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
38
|
+
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
39
|
+
<option name="LAST_RESOLUTION" value="IGNORE" />
|
40
|
+
</component>
|
41
|
+
<component name="ChangesViewManager" flattened_view="true" show_ignored="false" />
|
42
|
+
<component name="CreatePatchCommitExecutor">
|
43
|
+
<option name="PATCH_PATH" value="" />
|
44
|
+
</component>
|
45
|
+
<component name="DaemonCodeAnalyzer">
|
46
|
+
<disable_hints />
|
47
|
+
</component>
|
48
|
+
<component name="ExecutionTargetManager" SELECTED_TARGET="default_target" />
|
49
|
+
<component name="FavoritesManager">
|
50
|
+
<favorites_list name="apn" />
|
51
|
+
</component>
|
52
|
+
<component name="FileEditorManager">
|
53
|
+
<leaf>
|
54
|
+
<file leaf-file-name="apn.rb" pinned="false" current="false" current-in-tab="false">
|
55
|
+
<entry file="file://$PROJECT_DIR$/lib/apn.rb">
|
56
|
+
<provider selected="true" editor-type-id="text-editor">
|
57
|
+
<state line="51" column="29" selection-start="1173" selection-end="1173" vertical-scroll-proportion="0.0">
|
58
|
+
<folding />
|
59
|
+
</state>
|
60
|
+
</provider>
|
61
|
+
</entry>
|
62
|
+
</file>
|
63
|
+
<file leaf-file-name="daemon.rb" pinned="false" current="false" current-in-tab="false">
|
64
|
+
<entry file="file://$PROJECT_DIR$/lib/apn/daemon.rb">
|
65
|
+
<provider selected="true" editor-type-id="text-editor">
|
66
|
+
<state line="14" column="32" selection-start="353" selection-end="353" vertical-scroll-proportion="-8.4">
|
67
|
+
<folding />
|
68
|
+
</state>
|
69
|
+
</provider>
|
70
|
+
</entry>
|
71
|
+
</file>
|
72
|
+
<file leaf-file-name="client.rb" pinned="false" current="false" current-in-tab="false">
|
73
|
+
<entry file="file://$PROJECT_DIR$/lib/apn/client.rb">
|
74
|
+
<provider selected="true" editor-type-id="text-editor">
|
75
|
+
<state line="52" column="40" selection-start="1141" selection-end="1141" vertical-scroll-proportion="-30.84">
|
76
|
+
<folding />
|
77
|
+
</state>
|
78
|
+
</provider>
|
79
|
+
</entry>
|
80
|
+
</file>
|
81
|
+
<file leaf-file-name="version.rb" pinned="false" current="true" current-in-tab="true">
|
82
|
+
<entry file="file://$PROJECT_DIR$/lib/apn/version.rb">
|
83
|
+
<provider selected="true" editor-type-id="text-editor">
|
84
|
+
<state line="1" column="18" selection-start="29" selection-end="29" vertical-scroll-proportion="0.021306818">
|
85
|
+
<folding />
|
86
|
+
</state>
|
87
|
+
</provider>
|
88
|
+
</entry>
|
89
|
+
</file>
|
90
|
+
<file leaf-file-name="notification.rb" pinned="false" current="false" current-in-tab="false">
|
91
|
+
<entry file="file://$PROJECT_DIR$/lib/apn/notification.rb">
|
92
|
+
<provider selected="true" editor-type-id="text-editor">
|
93
|
+
<state line="27" column="23" selection-start="907" selection-end="907" vertical-scroll-proportion="0.0">
|
94
|
+
<folding />
|
95
|
+
</state>
|
96
|
+
</provider>
|
97
|
+
</entry>
|
98
|
+
</file>
|
99
|
+
<file leaf-file-name="apn" pinned="false" current="false" current-in-tab="false">
|
100
|
+
<entry file="file://$PROJECT_DIR$/bin/apn">
|
101
|
+
<provider selected="true" editor-type-id="text-editor">
|
102
|
+
<state line="59" column="14" selection-start="1474" selection-end="1474" vertical-scroll-proportion="0.0">
|
103
|
+
<folding />
|
104
|
+
</state>
|
105
|
+
</provider>
|
106
|
+
</entry>
|
107
|
+
</file>
|
108
|
+
<file leaf-file-name="railtie.rb" pinned="false" current="false" current-in-tab="false">
|
109
|
+
<entry file="file://$PROJECT_DIR$/lib/apn/railtie.rb">
|
110
|
+
<provider selected="true" editor-type-id="text-editor">
|
111
|
+
<state line="12" column="4" selection-start="279" selection-end="279" vertical-scroll-proportion="0.0">
|
112
|
+
<folding />
|
113
|
+
</state>
|
114
|
+
</provider>
|
115
|
+
</entry>
|
116
|
+
</file>
|
117
|
+
<file leaf-file-name="config.rb" pinned="false" current="false" current-in-tab="false">
|
118
|
+
<entry file="file://$PROJECT_DIR$/lib/apn/config.rb">
|
119
|
+
<provider selected="true" editor-type-id="text-editor">
|
120
|
+
<state line="37" column="10" selection-start="679" selection-end="679" vertical-scroll-proportion="0.0">
|
121
|
+
<folding />
|
122
|
+
</state>
|
123
|
+
</provider>
|
124
|
+
</entry>
|
125
|
+
</file>
|
126
|
+
<file leaf-file-name="README.md" pinned="false" current="false" current-in-tab="false">
|
127
|
+
<entry file="file://$PROJECT_DIR$/README.md">
|
128
|
+
<provider selected="true" editor-type-id="text-editor">
|
129
|
+
<state line="38" column="14" selection-start="1104" selection-end="1104" vertical-scroll-proportion="0.0">
|
130
|
+
<folding />
|
131
|
+
</state>
|
132
|
+
</provider>
|
133
|
+
</entry>
|
134
|
+
</file>
|
135
|
+
<file leaf-file-name="Gemfile" pinned="false" current="false" current-in-tab="false">
|
136
|
+
<entry file="file://$PROJECT_DIR$/Gemfile">
|
137
|
+
<provider selected="true" editor-type-id="text-editor">
|
138
|
+
<state line="4" column="20" selection-start="88" selection-end="88" vertical-scroll-proportion="0.0">
|
139
|
+
<folding />
|
140
|
+
</state>
|
141
|
+
</provider>
|
142
|
+
</entry>
|
143
|
+
</file>
|
144
|
+
</leaf>
|
145
|
+
</component>
|
146
|
+
<component name="FindManager">
|
147
|
+
<FindUsagesManager>
|
148
|
+
<setting name="OPEN_NEW_TAB" value="false" />
|
149
|
+
</FindUsagesManager>
|
150
|
+
</component>
|
151
|
+
<component name="Git.Settings">
|
152
|
+
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
153
|
+
</component>
|
154
|
+
<component name="GitLogSettings">
|
155
|
+
<option name="myDateState">
|
156
|
+
<MyDateState />
|
157
|
+
</option>
|
158
|
+
</component>
|
159
|
+
<component name="IdeDocumentHistory">
|
160
|
+
<option name="changedFiles">
|
161
|
+
<list>
|
162
|
+
<option value="$PROJECT_DIR$/bin/apn.rb" />
|
163
|
+
<option value="$PROJECT_DIR$/lib/apn/notification.rb" />
|
164
|
+
<option value="$PROJECT_DIR$/lib/apn/feedback.rb" />
|
165
|
+
<option value="$PROJECT_DIR$/lib/apn/log.rb" />
|
166
|
+
<option value="$PROJECT_DIR$/lib/apn/config.rb" />
|
167
|
+
<option value="$PROJECT_DIR$/Gemfile" />
|
168
|
+
<option value="$PROJECT_DIR$/lib/apn/client.rb" />
|
169
|
+
<option value="$PROJECT_DIR$/apn.gemspec" />
|
170
|
+
<option value="$PROJECT_DIR$/lib/apn/daemon.rb" />
|
171
|
+
<option value="$PROJECT_DIR$/lib/apn/railtie.rb" />
|
172
|
+
<option value="$PROJECT_DIR$/lib/apn.rb" />
|
173
|
+
<option value="$PROJECT_DIR$/README.md" />
|
174
|
+
<option value="$PROJECT_DIR$/bin/apn" />
|
175
|
+
<option value="$PROJECT_DIR$/lib/apn/version.rb" />
|
176
|
+
</list>
|
177
|
+
</option>
|
178
|
+
</component>
|
179
|
+
<component name="ProjectFrameBounds">
|
180
|
+
<option name="x" value="50" />
|
181
|
+
<option name="y" value="24" />
|
182
|
+
<option name="width" value="935" />
|
183
|
+
<option name="height" value="876" />
|
184
|
+
</component>
|
185
|
+
<component name="ProjectLevelVcsManager" settingsEditedManually="false">
|
186
|
+
<OptionsSetting value="true" id="Add" />
|
187
|
+
<OptionsSetting value="true" id="Remove" />
|
188
|
+
<OptionsSetting value="true" id="Checkout" />
|
189
|
+
<OptionsSetting value="true" id="Update" />
|
190
|
+
<OptionsSetting value="true" id="Status" />
|
191
|
+
<OptionsSetting value="true" id="Edit" />
|
192
|
+
<ConfirmationsSetting value="0" id="Add" />
|
193
|
+
<ConfirmationsSetting value="0" id="Remove" />
|
194
|
+
</component>
|
195
|
+
<component name="ProjectReloadState">
|
196
|
+
<option name="STATE" value="0" />
|
197
|
+
</component>
|
198
|
+
<component name="ProjectView">
|
199
|
+
<navigator currentView="ProjectPane" proportions="" version="1" splitterProportion="0.5">
|
200
|
+
<flattenPackages />
|
201
|
+
<showMembers />
|
202
|
+
<showModules />
|
203
|
+
<showLibraryContents />
|
204
|
+
<hideEmptyPackages />
|
205
|
+
<abbreviatePackageNames />
|
206
|
+
<autoscrollToSource />
|
207
|
+
<autoscrollFromSource />
|
208
|
+
<sortByType />
|
209
|
+
</navigator>
|
210
|
+
<panes>
|
211
|
+
<pane id="Scope" />
|
212
|
+
<pane id="ProjectPane">
|
213
|
+
<subPane>
|
214
|
+
<PATH>
|
215
|
+
<PATH_ELEMENT>
|
216
|
+
<option name="myItemId" value="apn" />
|
217
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
218
|
+
</PATH_ELEMENT>
|
219
|
+
</PATH>
|
220
|
+
<PATH>
|
221
|
+
<PATH_ELEMENT>
|
222
|
+
<option name="myItemId" value="apn" />
|
223
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
224
|
+
</PATH_ELEMENT>
|
225
|
+
<PATH_ELEMENT>
|
226
|
+
<option name="myItemId" value="apn" />
|
227
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
228
|
+
</PATH_ELEMENT>
|
229
|
+
</PATH>
|
230
|
+
<PATH>
|
231
|
+
<PATH_ELEMENT>
|
232
|
+
<option name="myItemId" value="apn" />
|
233
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
234
|
+
</PATH_ELEMENT>
|
235
|
+
<PATH_ELEMENT>
|
236
|
+
<option name="myItemId" value="apn" />
|
237
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
238
|
+
</PATH_ELEMENT>
|
239
|
+
<PATH_ELEMENT>
|
240
|
+
<option name="myItemId" value="lib" />
|
241
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
242
|
+
</PATH_ELEMENT>
|
243
|
+
</PATH>
|
244
|
+
<PATH>
|
245
|
+
<PATH_ELEMENT>
|
246
|
+
<option name="myItemId" value="apn" />
|
247
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
248
|
+
</PATH_ELEMENT>
|
249
|
+
<PATH_ELEMENT>
|
250
|
+
<option name="myItemId" value="apn" />
|
251
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
252
|
+
</PATH_ELEMENT>
|
253
|
+
<PATH_ELEMENT>
|
254
|
+
<option name="myItemId" value="lib" />
|
255
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
256
|
+
</PATH_ELEMENT>
|
257
|
+
<PATH_ELEMENT>
|
258
|
+
<option name="myItemId" value="apn" />
|
259
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
260
|
+
</PATH_ELEMENT>
|
261
|
+
</PATH>
|
262
|
+
<PATH>
|
263
|
+
<PATH_ELEMENT>
|
264
|
+
<option name="myItemId" value="apn" />
|
265
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
266
|
+
</PATH_ELEMENT>
|
267
|
+
<PATH_ELEMENT>
|
268
|
+
<option name="myItemId" value="apn" />
|
269
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
270
|
+
</PATH_ELEMENT>
|
271
|
+
<PATH_ELEMENT>
|
272
|
+
<option name="myItemId" value="bin" />
|
273
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
274
|
+
</PATH_ELEMENT>
|
275
|
+
</PATH>
|
276
|
+
</subPane>
|
277
|
+
</pane>
|
278
|
+
</panes>
|
279
|
+
</component>
|
280
|
+
<component name="PropertiesComponent">
|
281
|
+
<property name="WebServerToolWindowFactoryState" value="true" />
|
282
|
+
</component>
|
283
|
+
<component name="PublishConfig">
|
284
|
+
<servers>
|
285
|
+
<server id="024a7736-7a5f-46c0-919f-1c1489ef1a3a">
|
286
|
+
<serverdata>
|
287
|
+
<mappings>
|
288
|
+
<mapping local="$PROJECT_DIR$" />
|
289
|
+
</mappings>
|
290
|
+
</serverdata>
|
291
|
+
</server>
|
292
|
+
<server id="1b5956c2-4300-4ce5-8f3a-1cf1dde786d5">
|
293
|
+
<serverdata>
|
294
|
+
<mappings>
|
295
|
+
<mapping local="$PROJECT_DIR$" />
|
296
|
+
</mappings>
|
297
|
+
</serverdata>
|
298
|
+
</server>
|
299
|
+
<server id="8792e51c-28e6-44b2-9b76-3d52647af008">
|
300
|
+
<serverdata>
|
301
|
+
<mappings>
|
302
|
+
<mapping local="$PROJECT_DIR$" />
|
303
|
+
</mappings>
|
304
|
+
</serverdata>
|
305
|
+
</server>
|
306
|
+
<server id="a0266bf3-f2c4-4449-92bb-586ef24b5089">
|
307
|
+
<serverdata>
|
308
|
+
<mappings>
|
309
|
+
<mapping local="$PROJECT_DIR$" />
|
310
|
+
</mappings>
|
311
|
+
</serverdata>
|
312
|
+
</server>
|
313
|
+
<server id="d644b1ce-c12f-4b5d-ba82-7c0531570a97">
|
314
|
+
<serverdata>
|
315
|
+
<mappings>
|
316
|
+
<mapping local="$PROJECT_DIR$" />
|
317
|
+
</mappings>
|
318
|
+
</serverdata>
|
319
|
+
</server>
|
320
|
+
<server id="de6c616a-4bc7-4ef2-8fe1-4f57309c303f">
|
321
|
+
<serverdata>
|
322
|
+
<mappings>
|
323
|
+
<mapping local="$PROJECT_DIR$" />
|
324
|
+
</mappings>
|
325
|
+
</serverdata>
|
326
|
+
</server>
|
327
|
+
<server id="e1adf350-7c43-4e11-804a-cafa4fad7222">
|
328
|
+
<serverdata>
|
329
|
+
<mappings>
|
330
|
+
<mapping local="$PROJECT_DIR$" />
|
331
|
+
</mappings>
|
332
|
+
</serverdata>
|
333
|
+
</server>
|
334
|
+
<server id="e3d592db-3427-4499-bc93-a4dc090ab049">
|
335
|
+
<serverdata>
|
336
|
+
<mappings>
|
337
|
+
<mapping local="$PROJECT_DIR$" />
|
338
|
+
</mappings>
|
339
|
+
</serverdata>
|
340
|
+
</server>
|
341
|
+
</servers>
|
342
|
+
</component>
|
343
|
+
<component name="RunManager">
|
344
|
+
<configuration default="true" type="RSpecRunConfigurationType" factoryName="RSpec">
|
345
|
+
<predefined_log_file id="RUBY_RSPEC" enabled="true" />
|
346
|
+
<module name="" />
|
347
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
348
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
349
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
350
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
351
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
352
|
+
<envs />
|
353
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
354
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" />
|
355
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
356
|
+
<COVERAGE_PATTERN ENABLED="true">
|
357
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
358
|
+
</COVERAGE_PATTERN>
|
359
|
+
</EXTENSION>
|
360
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
361
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
362
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
363
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="" />
|
364
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
|
365
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="" />
|
366
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
367
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="" />
|
368
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
369
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_SPEC_RUNNER" VALUE="false" />
|
370
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
371
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
372
|
+
<method />
|
373
|
+
</configuration>
|
374
|
+
<configuration default="true" type="RubyRunConfigurationType" factoryName="Ruby">
|
375
|
+
<module name="" />
|
376
|
+
<RUBY_RUN_CONFIG NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
377
|
+
<RUBY_RUN_CONFIG NAME="WORK DIR" VALUE="" />
|
378
|
+
<RUBY_RUN_CONFIG NAME="SHOULD_USE_SDK" VALUE="false" />
|
379
|
+
<RUBY_RUN_CONFIG NAME="ALTERN_SDK_NAME" VALUE="" />
|
380
|
+
<RUBY_RUN_CONFIG NAME="myPassParentEnvs" VALUE="true" />
|
381
|
+
<envs />
|
382
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
383
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" />
|
384
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
385
|
+
<COVERAGE_PATTERN ENABLED="true">
|
386
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
387
|
+
</COVERAGE_PATTERN>
|
388
|
+
</EXTENSION>
|
389
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
390
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="" />
|
391
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="" />
|
392
|
+
<method />
|
393
|
+
</configuration>
|
394
|
+
<configuration default="true" type="TestUnitRunConfigurationType" factoryName="Test::Unit/Shoulda/Minitest">
|
395
|
+
<predefined_log_file id="RUBY_TESTUNIT" enabled="true" />
|
396
|
+
<module name="" />
|
397
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
398
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
399
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
400
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
401
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
402
|
+
<envs />
|
403
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
404
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" />
|
405
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
406
|
+
<COVERAGE_PATTERN ENABLED="true">
|
407
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
408
|
+
</COVERAGE_PATTERN>
|
409
|
+
</EXTENSION>
|
410
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
411
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
412
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
413
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="" />
|
414
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_METHOD_NAME" VALUE="" />
|
415
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
416
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
417
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_OPTIONS" VALUE="" />
|
418
|
+
<method />
|
419
|
+
</configuration>
|
420
|
+
<list size="0" />
|
421
|
+
</component>
|
422
|
+
<component name="ShelveChangesManager" show_recycled="false" />
|
423
|
+
<component name="TaskManager">
|
424
|
+
<task active="true" id="Default" summary="Default task">
|
425
|
+
<changelist id="0044e0ee-7253-4582-93d4-a45b83a4d6b2" name="Default" comment="" />
|
426
|
+
<created>1386618772826</created>
|
427
|
+
<updated>1386618772826</updated>
|
428
|
+
</task>
|
429
|
+
<servers />
|
430
|
+
</component>
|
431
|
+
<component name="ToolWindowManager">
|
432
|
+
<frame x="50" y="24" width="935" height="876" extended-state="0" />
|
433
|
+
<editor active="true" />
|
434
|
+
<layout>
|
435
|
+
<window_info id="Changes" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
436
|
+
<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="6" side_tool="false" content_ui="tabs" />
|
437
|
+
<window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.3288948" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
438
|
+
<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="3" side_tool="false" content_ui="tabs" />
|
439
|
+
<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="1" side_tool="false" content_ui="tabs" />
|
440
|
+
<window_info id="Remote Host" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
|
441
|
+
<window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.25479144" sideWeight="0.6711052" order="0" side_tool="false" content_ui="combo" />
|
442
|
+
<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="3" side_tool="false" content_ui="tabs" />
|
443
|
+
<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="2" side_tool="true" content_ui="tabs" />
|
444
|
+
<window_info id="Event Log" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="7" side_tool="true" content_ui="tabs" />
|
445
|
+
<window_info id="Run" 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" />
|
446
|
+
<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="7" side_tool="false" content_ui="tabs" />
|
447
|
+
<window_info id="Cvs" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="4" side_tool="false" content_ui="tabs" />
|
448
|
+
<window_info id="Message" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
|
449
|
+
<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="1" side_tool="false" content_ui="tabs" />
|
450
|
+
<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="0" side_tool="false" content_ui="tabs" />
|
451
|
+
<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="2" side_tool="false" content_ui="combo" />
|
452
|
+
<window_info id="Inspection" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.4" sideWeight="0.5" order="5" side_tool="false" content_ui="tabs" />
|
453
|
+
</layout>
|
454
|
+
</component>
|
455
|
+
<component name="VcsContentAnnotationSettings">
|
456
|
+
<option name="myLimit" value="2678400000" />
|
457
|
+
</component>
|
458
|
+
<component name="VcsManagerConfiguration">
|
459
|
+
<option name="OFFER_MOVE_TO_ANOTHER_CHANGELIST_ON_PARTIAL_COMMIT" value="true" />
|
460
|
+
<option name="CHECK_CODE_SMELLS_BEFORE_PROJECT_COMMIT" value="false" />
|
461
|
+
<option name="CHECK_NEW_TODO" value="true" />
|
462
|
+
<option name="myTodoPanelSettings">
|
463
|
+
<value>
|
464
|
+
<are-packages-shown value="false" />
|
465
|
+
<are-modules-shown value="false" />
|
466
|
+
<flatten-packages value="false" />
|
467
|
+
<is-autoscroll-to-source value="false" />
|
468
|
+
</value>
|
469
|
+
</option>
|
470
|
+
<option name="PERFORM_UPDATE_IN_BACKGROUND" value="true" />
|
471
|
+
<option name="PERFORM_COMMIT_IN_BACKGROUND" value="true" />
|
472
|
+
<option name="PERFORM_EDIT_IN_BACKGROUND" value="true" />
|
473
|
+
<option name="PERFORM_CHECKOUT_IN_BACKGROUND" value="true" />
|
474
|
+
<option name="PERFORM_ADD_REMOVE_IN_BACKGROUND" value="true" />
|
475
|
+
<option name="PERFORM_ROLLBACK_IN_BACKGROUND" value="false" />
|
476
|
+
<option name="CHECK_LOCALLY_CHANGED_CONFLICTS_IN_BACKGROUND" value="false" />
|
477
|
+
<option name="CHANGED_ON_SERVER_INTERVAL" value="60" />
|
478
|
+
<option name="SHOW_ONLY_CHANGED_IN_SELECTION_DIFF" value="true" />
|
479
|
+
<option name="CHECK_COMMIT_MESSAGE_SPELLING" value="true" />
|
480
|
+
<option name="DEFAULT_PATCH_EXTENSION" value="patch" />
|
481
|
+
<option name="SHORT_DIFF_HORIZONTALLY" value="true" />
|
482
|
+
<option name="SHORT_DIFF_EXTRA_LINES" value="2" />
|
483
|
+
<option name="SOFT_WRAPS_IN_SHORT_DIFF" value="true" />
|
484
|
+
<option name="INCLUDE_TEXT_INTO_PATCH" value="false" />
|
485
|
+
<option name="INCLUDE_TEXT_INTO_SHELF" value="false" />
|
486
|
+
<option name="SHOW_FILE_HISTORY_DETAILS" value="true" />
|
487
|
+
<option name="SHOW_VCS_ERROR_NOTIFICATIONS" value="true" />
|
488
|
+
<option name="SHOW_DIRTY_RECURSIVELY" value="false" />
|
489
|
+
<option name="LIMIT_HISTORY" value="true" />
|
490
|
+
<option name="MAXIMUM_HISTORY_ROWS" value="1000" />
|
491
|
+
<option name="UPDATE_FILTER_SCOPE_NAME" />
|
492
|
+
<option name="USE_COMMIT_MESSAGE_MARGIN" value="false" />
|
493
|
+
<option name="COMMIT_MESSAGE_MARGIN_SIZE" value="72" />
|
494
|
+
<option name="WRAP_WHEN_TYPING_REACHES_RIGHT_MARGIN" value="false" />
|
495
|
+
<option name="FORCE_NON_EMPTY_COMMENT" value="false" />
|
496
|
+
<option name="CLEAR_INITIAL_COMMIT_MESSAGE" value="false" />
|
497
|
+
<option name="LAST_COMMIT_MESSAGE" />
|
498
|
+
<option name="MAKE_NEW_CHANGELIST_ACTIVE" value="false" />
|
499
|
+
<option name="OPTIMIZE_IMPORTS_BEFORE_PROJECT_COMMIT" value="false" />
|
500
|
+
<option name="CHECK_FILES_UP_TO_DATE_BEFORE_COMMIT" value="false" />
|
501
|
+
<option name="REFORMAT_BEFORE_PROJECT_COMMIT" value="false" />
|
502
|
+
<option name="REFORMAT_BEFORE_FILE_COMMIT" value="false" />
|
503
|
+
<option name="FILE_HISTORY_DIALOG_COMMENTS_SPLITTER_PROPORTION" value="0.8" />
|
504
|
+
<option name="FILE_HISTORY_DIALOG_SPLITTER_PROPORTION" value="0.5" />
|
505
|
+
<option name="ACTIVE_VCS_NAME" />
|
506
|
+
<option name="UPDATE_GROUP_BY_PACKAGES" value="false" />
|
507
|
+
<option name="UPDATE_GROUP_BY_CHANGELIST" value="false" />
|
508
|
+
<option name="UPDATE_FILTER_BY_SCOPE" value="false" />
|
509
|
+
<option name="SHOW_FILE_HISTORY_AS_TREE" value="false" />
|
510
|
+
<option name="FILE_HISTORY_SPLITTER_PROPORTION" value="0.6" />
|
511
|
+
</component>
|
512
|
+
<component name="XDebuggerManager">
|
513
|
+
<breakpoint-manager />
|
514
|
+
</component>
|
515
|
+
<component name="editorHistoryManager">
|
516
|
+
<entry file="file://$PROJECT_DIR$/lib/apn/feedback.rb">
|
517
|
+
<provider selected="true" editor-type-id="text-editor">
|
518
|
+
<state line="42" column="101" selection-start="938" selection-end="938" vertical-scroll-proportion="0.0">
|
519
|
+
<folding />
|
520
|
+
</state>
|
521
|
+
</provider>
|
522
|
+
</entry>
|
523
|
+
<entry file="file://$PROJECT_DIR$/lib/apn/log.rb">
|
524
|
+
<provider selected="true" editor-type-id="text-editor">
|
525
|
+
<state line="16" column="20" selection-start="247" selection-end="247" vertical-scroll-proportion="0.0">
|
526
|
+
<folding />
|
527
|
+
</state>
|
528
|
+
</provider>
|
529
|
+
</entry>
|
530
|
+
<entry file="file://$PROJECT_DIR$/Rakefile">
|
531
|
+
<provider selected="true" editor-type-id="text-editor">
|
532
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
533
|
+
<folding />
|
534
|
+
</state>
|
535
|
+
</provider>
|
536
|
+
</entry>
|
537
|
+
<entry file="file://$PROJECT_DIR$/lib/apn/feedback.rb">
|
538
|
+
<provider selected="true" editor-type-id="text-editor">
|
539
|
+
<state line="42" column="101" selection-start="938" selection-end="938" vertical-scroll-proportion="0.0">
|
540
|
+
<folding />
|
541
|
+
</state>
|
542
|
+
</provider>
|
543
|
+
</entry>
|
544
|
+
<entry file="file://$PROJECT_DIR$/lib/apn/notification.rb">
|
545
|
+
<provider selected="true" editor-type-id="text-editor">
|
546
|
+
<state line="27" column="23" selection-start="907" selection-end="907" vertical-scroll-proportion="0.0">
|
547
|
+
<folding />
|
548
|
+
</state>
|
549
|
+
</provider>
|
550
|
+
</entry>
|
551
|
+
<entry file="file://$PROJECT_DIR$/Gemfile">
|
552
|
+
<provider selected="true" editor-type-id="text-editor">
|
553
|
+
<state line="4" column="20" selection-start="88" selection-end="88" vertical-scroll-proportion="0.0">
|
554
|
+
<folding />
|
555
|
+
</state>
|
556
|
+
</provider>
|
557
|
+
</entry>
|
558
|
+
<entry file="file://$PROJECT_DIR$/lib/apn/log.rb">
|
559
|
+
<provider selected="true" editor-type-id="text-editor">
|
560
|
+
<state line="15" column="0" selection-start="211" selection-end="270" vertical-scroll-proportion="0.0">
|
561
|
+
<folding />
|
562
|
+
</state>
|
563
|
+
</provider>
|
564
|
+
</entry>
|
565
|
+
<entry file="file://$PROJECT_DIR$/apn.gemspec">
|
566
|
+
<provider selected="true" editor-type-id="text-editor">
|
567
|
+
<state line="27" column="29" selection-start="1054" selection-end="1054" vertical-scroll-proportion="0.5861071">
|
568
|
+
<folding />
|
569
|
+
</state>
|
570
|
+
</provider>
|
571
|
+
</entry>
|
572
|
+
<entry file="file://$PROJECT_DIR$/lib/apn/client.rb">
|
573
|
+
<provider selected="true" editor-type-id="text-editor">
|
574
|
+
<state line="52" column="40" selection-start="1141" selection-end="1141" vertical-scroll-proportion="-30.84">
|
575
|
+
<folding />
|
576
|
+
</state>
|
577
|
+
</provider>
|
578
|
+
</entry>
|
579
|
+
<entry file="file://$PROJECT_DIR$/lib/apn/railtie.rb">
|
580
|
+
<provider selected="true" editor-type-id="text-editor">
|
581
|
+
<state line="12" column="4" selection-start="279" selection-end="279" vertical-scroll-proportion="0.0">
|
582
|
+
<folding />
|
583
|
+
</state>
|
584
|
+
</provider>
|
585
|
+
</entry>
|
586
|
+
<entry file="file://$PROJECT_DIR$/lib/apn.rb">
|
587
|
+
<provider selected="true" editor-type-id="text-editor">
|
588
|
+
<state line="51" column="29" selection-start="1173" selection-end="1173" vertical-scroll-proportion="0.0">
|
589
|
+
<folding />
|
590
|
+
</state>
|
591
|
+
</provider>
|
592
|
+
</entry>
|
593
|
+
<entry file="file://$PROJECT_DIR$/lib/apn/config.rb">
|
594
|
+
<provider selected="true" editor-type-id="text-editor">
|
595
|
+
<state line="37" column="10" selection-start="679" selection-end="679" vertical-scroll-proportion="0.0">
|
596
|
+
<folding />
|
597
|
+
</state>
|
598
|
+
</provider>
|
599
|
+
</entry>
|
600
|
+
<entry file="file://$PROJECT_DIR$/lib/apn/daemon.rb">
|
601
|
+
<provider selected="true" editor-type-id="text-editor">
|
602
|
+
<state line="14" column="32" selection-start="353" selection-end="353" vertical-scroll-proportion="-8.4">
|
603
|
+
<folding />
|
604
|
+
</state>
|
605
|
+
</provider>
|
606
|
+
</entry>
|
607
|
+
<entry file="file://$PROJECT_DIR$/README.md">
|
608
|
+
<provider selected="true" editor-type-id="text-editor">
|
609
|
+
<state line="38" column="14" selection-start="1104" selection-end="1104" vertical-scroll-proportion="0.0">
|
610
|
+
<folding />
|
611
|
+
</state>
|
612
|
+
</provider>
|
613
|
+
</entry>
|
614
|
+
<entry file="file://$PROJECT_DIR$/bin/apn">
|
615
|
+
<provider selected="true" editor-type-id="text-editor">
|
616
|
+
<state line="59" column="14" selection-start="1474" selection-end="1474" vertical-scroll-proportion="0.0">
|
617
|
+
<folding />
|
618
|
+
</state>
|
619
|
+
</provider>
|
620
|
+
</entry>
|
621
|
+
<entry file="file://$PROJECT_DIR$/lib/apn/version.rb">
|
622
|
+
<provider selected="true" editor-type-id="text-editor">
|
623
|
+
<state line="1" column="18" selection-start="29" selection-end="29" vertical-scroll-proportion="0.021306818">
|
624
|
+
<folding />
|
625
|
+
</state>
|
626
|
+
</provider>
|
627
|
+
</entry>
|
628
|
+
</component>
|
629
|
+
</project>
|
630
|
+
|