colorized_routes 0.1.3 → 0.1.4

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: a332a03d50e2578a541c582c5e91f69b4ba02df0
4
- data.tar.gz: 69ba627cef18f27061d78f192c0f3ec6ed214b6f
3
+ metadata.gz: 722e690feaacf939e73025914b27154d57537e7a
4
+ data.tar.gz: 077478d32aa46d6c83b4219e370aeb84520d35b8
5
5
  SHA512:
6
- metadata.gz: cbfa971f06b5e503975375da6969dd7e17bd4495558593f9c4e9e1d47c808190f6485673a38f6fcac9e4bad6c44e41302c65cce004d8b4fe8c6bc9dabff95238
7
- data.tar.gz: 3bc9a91fc1ab2c65bc89f3d696dc73bddbcead70cb4357fbb81eb39bf1f47a6755059e03c67bb5ed7451f1afca5b8e39904c219bcbf4a98e6ef5a655a802fe21
6
+ metadata.gz: 146f7378ea7d3083b43b5e7e67d0621ec897abdbfe5de6ef0877147fe10ec8772599f0cf53d0b3e28f6b85135228595d54fc3b1ab49e05de0a1551b617ba296d
7
+ data.tar.gz: b8aa8b5ba3b54230f078c3af5365a905d12c69ae4eab261bc7dcc99c05addf5b6e969d733895d7e24be5ae647e47e6a99b18308b4606993065c5bb948734ccc9
data/.gitignore CHANGED
@@ -1,2 +1,5 @@
1
1
  pkg
2
- /*.gem
2
+ /*.gem
3
+ /.idea/*
4
+ .idea/
5
+ /.idea
@@ -1,36 +1,42 @@
1
1
  desc 'Makes routes a little more pretty.'
2
2
 
3
3
  task :routes do
4
+ puts " ".light_white.on_blue
5
+ puts " COLORIZED ROUTES ".light_white.on_blue
6
+ puts " github: https://github.com/joshtate04/colorized_routes ".light_white.on_blue
7
+ puts " ".light_white.on_blue
8
+
9
+
4
10
  Rake::Task['routes'].clear
5
11
  Rails.application.reload_routes!
6
12
  all_routes = Rails.application.routes.routes.to_a
7
13
  all_routes.reject! { |route| route.verb.nil? || route.path.spec.to_s == '/assets' }
8
14
  all_routes.select! { |route| ENV['CONTROLLER'].nil? || route.defaults[:controller].to_s == ENV['CONTROLLER'] }
9
-
15
+ print "\r"
16
+ puts " ".black.on_black
10
17
  max_widths = {
11
18
  names: (all_routes.map { |route| route.name.to_s.length }.max),
12
19
  verbs: (6),
13
- paths: (all_routes.map { |route| route.path.spec.to_s.rstrip.length }.max),
20
+ paths: (all_routes.map { |route| route.path.spec.to_s.gsub(" ","").length }.max),
14
21
  controllers: (all_routes.map { |route| route.defaults[:controller].to_s.length }.max),
15
22
  actions: (all_routes.map { |route| route.defaults[:action].to_s.length }.max)
16
23
  }
17
- puts "#{max_widths.inspect}".yellow
18
24
 
19
25
  all_routes.group_by {|route| route.defaults[:controller]}.each_value do |group|
20
26
  print "Controller: ".light_white
21
- puts "#{group.first.defaults[:controller].to_s}".cyan
27
+ puts " #{group.first.defaults[:controller].to_s} ".colorize(color: :light_white).colorize(background: :blue).colorize(mode: :bold)
22
28
  group.each do |route|
23
29
  # VERBS (GET/POST/DELETE/PATCH/ETC)
24
30
  print "#{route.verb.inspect.gsub(/^.{2}|.{2}$/, "").center(max_widths[:verbs])}".light_red
25
31
  print " | ".light_white
26
32
  # PATHS
27
33
  path = route.path.spec.to_s.gsub("(.:format)","")
28
- print "#{path.ljust(max_widths[:paths]).split('/').map{|p| p.light_yellow}.join('/'.red)}"
34
+ print "#{path.ljust(max_widths[:paths]).split('/').map{|p| p.light_blue}.join('/'.green)}"
29
35
 
30
36
  print " | ".light_white
31
37
 
32
38
  # PATH NAMES
33
- print "#{route.name.to_s.ljust(max_widths[:names])}".light_blue
39
+ print "#{route.name.to_s.ljust(max_widths[:names])}".yellow
34
40
  print " | ".light_white
35
41
 
36
42
  # CONTROLLER ACTIONS
@@ -1,3 +1,3 @@
1
1
  module ColorizedRoutes
2
- VERSION = "0.1.3"
2
+ VERSION = "0.1.4"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: colorized_routes
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Josh Tate
@@ -61,20 +61,10 @@ extensions: []
61
61
  extra_rdoc_files: []
62
62
  files:
63
63
  - ".gitignore"
64
- - ".idea/.name"
65
- - ".idea/.rakeTasks"
66
- - ".idea/colorized_routes.iml"
67
- - ".idea/encodings.xml"
68
- - ".idea/misc.xml"
69
- - ".idea/modules.xml"
70
- - ".idea/scopes/scope_settings.xml"
71
- - ".idea/vcs.xml"
72
- - ".idea/workspace.xml"
73
64
  - ".rvmrc"
74
65
  - ".travis.yml"
75
66
  - Gemfile
76
67
  - Gemfile.lock
77
- - LICENSE
78
68
  - LICENSE.txt
79
69
  - README.md
80
70
  - Rakefile
data/.idea/.name DELETED
@@ -1 +0,0 @@
1
- colorized_routes
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" /></Settings>
@@ -1,18 +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="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="$MODULE_DIR$/lib" />
9
- </configuration>
10
- </facet>
11
- </component>
12
- <component name="NewModuleRootManager">
13
- <content url="file://$MODULE_DIR$" />
14
- <orderEntry type="jdk" jdkName="RVM: ruby-2.2.2 [colorized_routes]" jdkType="RUBY_SDK" />
15
- <orderEntry type="sourceFolder" forTests="false" />
16
- <orderEntry type="library" scope="PROVIDED" name="rake (v10.4.2, RVM: ruby-2.2.2 [colorized_routes]) [gem]" level="application" />
17
- </component>
18
- </module>
data/.idea/encodings.xml DELETED
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="Encoding" useUTFGuessing="true" native2AsciiForPropertiesFiles="false" />
4
- </project>
data/.idea/misc.xml DELETED
@@ -1,27 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="DaemonCodeAnalyzer">
4
- <disable_hints />
5
- </component>
6
- <component name="DependencyValidationManager">
7
- <option name="SKIP_IMPORT_STATEMENTS" value="false" />
8
- </component>
9
- <component name="Encoding" useUTFGuessing="true" native2AsciiForPropertiesFiles="false" />
10
- <component name="ProjectLevelVcsManager" settingsEditedManually="false">
11
- <OptionsSetting value="true" id="Add" />
12
- <OptionsSetting value="true" id="Remove" />
13
- <OptionsSetting value="true" id="Checkout" />
14
- <OptionsSetting value="true" id="Update" />
15
- <OptionsSetting value="true" id="Status" />
16
- <OptionsSetting value="true" id="Edit" />
17
- <ConfirmationsSetting value="0" id="Add" />
18
- <ConfirmationsSetting value="0" id="Remove" />
19
- </component>
20
- <component name="ProjectModuleManager">
21
- <modules />
22
- </component>
23
- <component name="ProjectRootManager" version="2" project-jdk-name="RVM: ruby-1.9.3-p286 [parkandpay]" project-jdk-type="RUBY_SDK" />
24
- <component name="RunManager">
25
- <list size="0" />
26
- </component>
27
- </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/colorized_routes.iml" filepath="$PROJECT_DIR$/.idea/colorized_routes.iml" />
6
- </modules>
7
- </component>
8
- </project>
@@ -1,5 +0,0 @@
1
- <component name="DependencyValidationManager">
2
- <state>
3
- <option name="SKIP_IMPORT_STATEMENTS" value="false" />
4
- </state>
5
- </component>
data/.idea/vcs.xml DELETED
@@ -1,6 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="VcsDirectoryMappings">
4
- <mapping directory="$PROJECT_DIR$" vcs="Git" />
5
- </component>
6
- </project>
data/.idea/workspace.xml DELETED
@@ -1,654 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="ChangeListManager">
4
- <list default="true" id="a9b6e393-f803-42e0-97f3-9fbcb5028dc2" name="Default" comment="">
5
- <change type="MODIFICATION" beforePath="$PROJECT_DIR$/colorized_routes.gemspec" afterPath="$PROJECT_DIR$/colorized_routes.gemspec" />
6
- <change type="MODIFICATION" beforePath="$PROJECT_DIR$/lib/colorized_routes/version.rb" afterPath="$PROJECT_DIR$/lib/colorized_routes/version.rb" />
7
- </list>
8
- <ignored path="colorized_routes.iws" />
9
- <ignored path=".idea/workspace.xml" />
10
- <ignored path=".idea/dataSources.local.xml" />
11
- <option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" />
12
- <option name="TRACKING_ENABLED" value="true" />
13
- <option name="SHOW_DIALOG" value="false" />
14
- <option name="HIGHLIGHT_CONFLICTS" value="true" />
15
- <option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
16
- <option name="LAST_RESOLUTION" value="IGNORE" />
17
- </component>
18
- <component name="ChangesViewManager" flattened_view="true" show_ignored="false" />
19
- <component name="CreatePatchCommitExecutor">
20
- <option name="PATCH_PATH" value="" />
21
- </component>
22
- <component name="DaemonCodeAnalyzer">
23
- <disable_hints />
24
- </component>
25
- <component name="ExecutionTargetManager" SELECTED_TARGET="default_target" />
26
- <component name="FavoritesManager">
27
- <favorites_list name="colorized_routes" />
28
- </component>
29
- <component name="FileEditorManager">
30
- <leaf>
31
- <file leaf-file-name="colorized_routes.rb" pinned="false" current-in-tab="false">
32
- <entry file="file://$PROJECT_DIR$/lib/colorized_routes.rb">
33
- <provider selected="true" editor-type-id="text-editor">
34
- <state vertical-scroll-proportion="0.0" vertical-offset="15" max-vertical-offset="210">
35
- <caret line="1" column="25" selection-start-line="1" selection-start-column="9" selection-end-line="1" selection-end-column="25" />
36
- <folding />
37
- </state>
38
- </provider>
39
- </entry>
40
- </file>
41
- <file leaf-file-name="colorized_routes.rake" pinned="false" current-in-tab="false">
42
- <entry file="file://$PROJECT_DIR$/lib/colorized_routes/rails/tasks/colorized_routes.rake">
43
- <provider selected="true" editor-type-id="text-editor">
44
- <state vertical-scroll-proportion="0.0" vertical-offset="45" max-vertical-offset="825">
45
- <caret line="3" column="20" selection-start-line="3" selection-start-column="20" selection-end-line="3" selection-end-column="20" />
46
- <folding />
47
- </state>
48
- </provider>
49
- </entry>
50
- </file>
51
- <file leaf-file-name="railtie.rb" pinned="false" current-in-tab="false">
52
- <entry file="file://$PROJECT_DIR$/lib/colorized_routes/railtie.rb">
53
- <provider selected="true" editor-type-id="text-editor">
54
- <state vertical-scroll-proportion="0.0" vertical-offset="75" max-vertical-offset="225">
55
- <caret line="5" column="18" selection-start-line="5" selection-start-column="18" selection-end-line="5" selection-end-column="18" />
56
- <folding />
57
- </state>
58
- </provider>
59
- </entry>
60
- </file>
61
- <file leaf-file-name="version.rb" pinned="false" current-in-tab="true">
62
- <entry file="file://$PROJECT_DIR$/lib/colorized_routes/version.rb">
63
- <provider selected="true" editor-type-id="text-editor">
64
- <state vertical-scroll-proportion="0.011398177" vertical-offset="0" max-vertical-offset="1316">
65
- <caret line="1" column="18" selection-start-line="1" selection-start-column="18" selection-end-line="1" selection-end-column="18" />
66
- <folding />
67
- </state>
68
- </provider>
69
- </entry>
70
- </file>
71
- <file leaf-file-name=".rvmrc" pinned="false" current-in-tab="false">
72
- <entry file="file://$PROJECT_DIR$/.rvmrc">
73
- <provider selected="true" editor-type-id="text-editor">
74
- <state vertical-scroll-proportion="0.0" vertical-offset="120" max-vertical-offset="780">
75
- <caret line="8" column="27" selection-start-line="8" selection-start-column="27" selection-end-line="8" selection-end-column="27" />
76
- <folding />
77
- </state>
78
- </provider>
79
- </entry>
80
- </file>
81
- <file leaf-file-name="Gemfile" pinned="false" current-in-tab="false">
82
- <entry file="file://$PROJECT_DIR$/Gemfile">
83
- <provider selected="true" editor-type-id="text-editor">
84
- <state vertical-scroll-proportion="0.0" vertical-offset="30" max-vertical-offset="150">
85
- <caret line="2" column="37" selection-start-line="2" selection-start-column="37" selection-end-line="2" selection-end-column="37" />
86
- <folding />
87
- </state>
88
- </provider>
89
- </entry>
90
- </file>
91
- <file leaf-file-name="README.md" pinned="false" current-in-tab="false">
92
- <entry file="file://$PROJECT_DIR$/README.md">
93
- <provider selected="true" editor-type-id="text-editor">
94
- <state vertical-scroll-proportion="-14.4" vertical-offset="0" max-vertical-offset="675">
95
- <caret line="24" column="6" selection-start-line="24" selection-start-column="6" selection-end-line="24" selection-end-column="6" />
96
- <folding />
97
- </state>
98
- </provider>
99
- </entry>
100
- </file>
101
- <file leaf-file-name=".gitignore" pinned="false" current-in-tab="false">
102
- <entry file="file://$PROJECT_DIR$/.gitignore">
103
- <provider selected="true" editor-type-id="text-editor">
104
- <state vertical-scroll-proportion="-0.6" vertical-offset="0" max-vertical-offset="105">
105
- <caret line="1" column="1" selection-start-line="1" selection-start-column="1" selection-end-line="1" selection-end-column="1" />
106
- <folding />
107
- </state>
108
- </provider>
109
- </entry>
110
- </file>
111
- <file leaf-file-name="console" pinned="false" current-in-tab="false">
112
- <entry file="file://$PROJECT_DIR$/bin/console">
113
- <provider selected="true" editor-type-id="text-editor">
114
- <state vertical-scroll-proportion="0.0" vertical-offset="45" max-vertical-offset="300">
115
- <caret line="3" column="9" selection-start-line="3" selection-start-column="9" selection-end-line="3" selection-end-column="9" />
116
- <folding />
117
- </state>
118
- </provider>
119
- </entry>
120
- </file>
121
- <file leaf-file-name="colorized_routes.gemspec" pinned="false" current-in-tab="false">
122
- <entry file="file://$PROJECT_DIR$/colorized_routes.gemspec">
123
- <provider selected="true" editor-type-id="text-editor">
124
- <state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="510">
125
- <caret line="12" column="122" selection-start-line="12" selection-start-column="122" selection-end-line="12" selection-end-column="122" />
126
- <folding />
127
- </state>
128
- </provider>
129
- </entry>
130
- </file>
131
- </leaf>
132
- </component>
133
- <component name="Git.Settings">
134
- <option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
135
- </component>
136
- <component name="IdeDocumentHistory">
137
- <option name="CHANGED_PATHS">
138
- <list>
139
- <option value="$PROJECT_DIR$/.rvmrc" />
140
- <option value="$PROJECT_DIR$/Gemfile" />
141
- <option value="$PROJECT_DIR$/bin/console" />
142
- <option value="$PROJECT_DIR$/lib/colorized_routes.rb" />
143
- <option value="$PROJECT_DIR$/lib/colorized_routes/railtie.rb" />
144
- <option value="$PROJECT_DIR$/lib/colorized_routes/rails/tasks/colorized_routes.rake" />
145
- <option value="$PROJECT_DIR$/README.md" />
146
- <option value="$PROJECT_DIR$/.gitignore" />
147
- <option value="$PROJECT_DIR$/colorized_routes.gemspec" />
148
- <option value="$PROJECT_DIR$/lib/colorized_routes/version.rb" />
149
- </list>
150
- </option>
151
- </component>
152
- <component name="JsGulpfileManager">
153
- <detection-done>true</detection-done>
154
- </component>
155
- <component name="ProjectFrameBounds">
156
- <option name="width" value="2560" />
157
- <option name="height" value="1440" />
158
- </component>
159
- <component name="ProjectLevelVcsManager" settingsEditedManually="false">
160
- <OptionsSetting value="true" id="Add" />
161
- <OptionsSetting value="true" id="Remove" />
162
- <OptionsSetting value="true" id="Checkout" />
163
- <OptionsSetting value="true" id="Update" />
164
- <OptionsSetting value="true" id="Status" />
165
- <OptionsSetting value="true" id="Edit" />
166
- <ConfirmationsSetting value="0" id="Add" />
167
- <ConfirmationsSetting value="0" id="Remove" />
168
- </component>
169
- <component name="ProjectView">
170
- <navigator currentView="ProjectPane" proportions="" version="1">
171
- <flattenPackages />
172
- <showMembers />
173
- <showModules />
174
- <showLibraryContents />
175
- <hideEmptyPackages />
176
- <abbreviatePackageNames />
177
- <autoscrollToSource />
178
- <autoscrollFromSource />
179
- <sortByType />
180
- </navigator>
181
- <panes>
182
- <pane id="Scope" />
183
- <pane id="ProjectPane">
184
- <subPane>
185
- <PATH>
186
- <PATH_ELEMENT>
187
- <option name="myItemId" value="colorized_routes" />
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="colorized_routes" />
194
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
195
- </PATH_ELEMENT>
196
- <PATH_ELEMENT>
197
- <option name="myItemId" value="colorized_routes" />
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="colorized_routes" />
204
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
205
- </PATH_ELEMENT>
206
- <PATH_ELEMENT>
207
- <option name="myItemId" value="colorized_routes" />
208
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
209
- </PATH_ELEMENT>
210
- <PATH_ELEMENT>
211
- <option name="myItemId" value="lib" />
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="colorized_routes" />
218
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
219
- </PATH_ELEMENT>
220
- <PATH_ELEMENT>
221
- <option name="myItemId" value="colorized_routes" />
222
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
223
- </PATH_ELEMENT>
224
- <PATH_ELEMENT>
225
- <option name="myItemId" value="lib" />
226
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
227
- </PATH_ELEMENT>
228
- <PATH_ELEMENT>
229
- <option name="myItemId" value="colorized_routes" />
230
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
231
- </PATH_ELEMENT>
232
- </PATH>
233
- <PATH>
234
- <PATH_ELEMENT>
235
- <option name="myItemId" value="colorized_routes" />
236
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
237
- </PATH_ELEMENT>
238
- <PATH_ELEMENT>
239
- <option name="myItemId" value="colorized_routes" />
240
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
241
- </PATH_ELEMENT>
242
- <PATH_ELEMENT>
243
- <option name="myItemId" value="lib" />
244
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
245
- </PATH_ELEMENT>
246
- <PATH_ELEMENT>
247
- <option name="myItemId" value="colorized_routes" />
248
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
249
- </PATH_ELEMENT>
250
- <PATH_ELEMENT>
251
- <option name="myItemId" value="rails" />
252
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
253
- </PATH_ELEMENT>
254
- <PATH_ELEMENT>
255
- <option name="myItemId" value="tasks" />
256
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
257
- </PATH_ELEMENT>
258
- </PATH>
259
- <PATH>
260
- <PATH_ELEMENT>
261
- <option name="myItemId" value="colorized_routes" />
262
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
263
- </PATH_ELEMENT>
264
- <PATH_ELEMENT>
265
- <option name="myItemId" value="colorized_routes" />
266
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
267
- </PATH_ELEMENT>
268
- <PATH_ELEMENT>
269
- <option name="myItemId" value="bin" />
270
- <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
271
- </PATH_ELEMENT>
272
- </PATH>
273
- </subPane>
274
- </pane>
275
- </panes>
276
- </component>
277
- <component name="PropertiesComponent">
278
- <property name="WebServerToolWindowFactoryState" value="false" />
279
- <property name="last_opened_file_path" value="$PROJECT_DIR$" />
280
- <property name="FullScreen" value="true" />
281
- <property name="options.lastSelected" value="org.jetbrains.plugins.ruby.settings.RubyActiveModuleSdkConfigurable" />
282
- <property name="options.splitter.main.proportions" value="0.3" />
283
- <property name="options.splitter.details.proportions" value="0.2" />
284
- </component>
285
- <component name="RunManager">
286
- <configuration default="true" type="RSpecRunConfigurationType" factoryName="RSpec">
287
- <predefined_log_file id="RUBY_RSPEC" enabled="true" />
288
- <module name="" />
289
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
290
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
291
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
292
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
293
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
294
- <envs />
295
- <EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
296
- <EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
297
- <EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
298
- <COVERAGE_PATTERN ENABLED="true">
299
- <PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
300
- </COVERAGE_PATTERN>
301
- </EXTENSION>
302
- <EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
303
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
304
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
305
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="" />
306
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
307
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="" />
308
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
309
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="" />
310
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
311
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_SPEC_RUNNER" VALUE="false" />
312
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
313
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
314
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
315
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
316
- <method />
317
- </configuration>
318
- <configuration default="true" type="TestUnitRunConfigurationType" factoryName="Test::Unit/Shoulda/Minitest">
319
- <predefined_log_file id="RUBY_TESTUNIT" enabled="true" />
320
- <module name="" />
321
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
322
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
323
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
324
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
325
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
326
- <envs />
327
- <EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
328
- <EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
329
- <EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
330
- <COVERAGE_PATTERN ENABLED="true">
331
- <PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
332
- </COVERAGE_PATTERN>
333
- </EXTENSION>
334
- <EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
335
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
336
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
337
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="" />
338
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_METHOD_NAME" VALUE="" />
339
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
340
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
341
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
342
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
343
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_OPTIONS" VALUE="" />
344
- <method />
345
- </configuration>
346
- <configuration default="true" type="JavascriptDebugType" factoryName="JavaScript Debug">
347
- <method />
348
- </configuration>
349
- <configuration default="true" type="RubyRunConfigurationType" factoryName="Ruby">
350
- <module name="" />
351
- <RUBY_RUN_CONFIG NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
352
- <RUBY_RUN_CONFIG NAME="WORK DIR" VALUE="" />
353
- <RUBY_RUN_CONFIG NAME="SHOULD_USE_SDK" VALUE="false" />
354
- <RUBY_RUN_CONFIG NAME="ALTERN_SDK_NAME" VALUE="" />
355
- <RUBY_RUN_CONFIG NAME="myPassParentEnvs" VALUE="true" />
356
- <envs />
357
- <EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
358
- <EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
359
- <EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
360
- <COVERAGE_PATTERN ENABLED="true">
361
- <PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
362
- </COVERAGE_PATTERN>
363
- </EXTENSION>
364
- <EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
365
- <RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="" />
366
- <RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="" />
367
- <method />
368
- </configuration>
369
- <configuration default="true" type="js.build_tools.gulp" factoryName="Gulp.js">
370
- <node-options />
371
- <gulpfile />
372
- <tasks />
373
- <arguments />
374
- <pass-parent-envs>true</pass-parent-envs>
375
- <envs />
376
- <method />
377
- </configuration>
378
- <list size="0" />
379
- </component>
380
- <component name="ShelveChangesManager" show_recycled="false" />
381
- <component name="TaskManager">
382
- <task active="true" id="Default" summary="Default task">
383
- <changelist id="a9b6e393-f803-42e0-97f3-9fbcb5028dc2" name="Default" comment="" />
384
- <created>1438827177628</created>
385
- <option name="number" value="Default" />
386
- <updated>1438827177628</updated>
387
- </task>
388
- <servers />
389
- </component>
390
- <component name="ToolWindowManager">
391
- <frame x="0" y="0" width="2560" height="1440" extended-state="6" />
392
- <editor active="true" />
393
- <layout>
394
- <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" />
395
- <window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.16362192" sideWeight="0.5" order="0" side_tool="false" content_ui="combo" />
396
- <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" />
397
- <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" />
398
- <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="7" side_tool="false" content_ui="tabs" />
399
- <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" />
400
- <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" />
401
- <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" />
402
- <window_info id="Terminal" 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" />
403
- <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" />
404
- <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" />
405
- <window_info id="Messages" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.32891566" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
406
- <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" />
407
- <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" />
408
- <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" />
409
- <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" />
410
- <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" />
411
- <window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.32891566" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
412
- <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" />
413
- <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" />
414
- </layout>
415
- </component>
416
- <component name="Vcs.Log.UiProperties">
417
- <option name="RECENTLY_FILTERED_USER_GROUPS">
418
- <collection />
419
- </option>
420
- <option name="RECENTLY_FILTERED_BRANCH_GROUPS">
421
- <collection />
422
- </option>
423
- </component>
424
- <component name="VcsContentAnnotationSettings">
425
- <option name="myLimit" value="2678400000" />
426
- </component>
427
- <component name="VcsManagerConfiguration">
428
- <option name="myTodoPanelSettings">
429
- <TodoPanelSettings />
430
- </option>
431
- </component>
432
- <component name="XDebuggerManager">
433
- <breakpoint-manager />
434
- <watches-manager />
435
- </component>
436
- <component name="editorHistoryManager">
437
- <entry file="file://$PROJECT_DIR$/lib/colorized_routes.rb">
438
- <provider selected="true" editor-type-id="text-editor">
439
- <state vertical-scroll-proportion="0.0" vertical-offset="15" max-vertical-offset="210">
440
- <caret line="1" column="25" selection-start-line="1" selection-start-column="9" selection-end-line="1" selection-end-column="25" />
441
- <folding />
442
- </state>
443
- </provider>
444
- </entry>
445
- <entry file="file://$PROJECT_DIR$/lib/colorized_routes/rails/tasks/colorized_routes.rake">
446
- <provider selected="true" editor-type-id="text-editor">
447
- <state vertical-scroll-proportion="0.0" vertical-offset="45" max-vertical-offset="825">
448
- <caret line="3" column="20" selection-start-line="3" selection-start-column="20" selection-end-line="3" selection-end-column="20" />
449
- <folding />
450
- </state>
451
- </provider>
452
- </entry>
453
- <entry file="file://$PROJECT_DIR$/lib/colorized_routes/railtie.rb">
454
- <provider selected="true" editor-type-id="text-editor">
455
- <state vertical-scroll-proportion="0.0" vertical-offset="75" max-vertical-offset="225">
456
- <caret line="5" column="18" selection-start-line="5" selection-start-column="18" selection-end-line="5" selection-end-column="18" />
457
- <folding />
458
- </state>
459
- </provider>
460
- </entry>
461
- <entry file="file://$PROJECT_DIR$/lib/colorized_routes/version.rb">
462
- <provider selected="true" editor-type-id="text-editor">
463
- <state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="135">
464
- <caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
465
- <folding />
466
- </state>
467
- </provider>
468
- </entry>
469
- <entry file="file://$PROJECT_DIR$/.rvmrc">
470
- <provider selected="true" editor-type-id="text-editor">
471
- <state vertical-scroll-proportion="0.0" vertical-offset="120" max-vertical-offset="780">
472
- <caret line="8" column="27" selection-start-line="8" selection-start-column="27" selection-end-line="8" selection-end-column="27" />
473
- <folding />
474
- </state>
475
- </provider>
476
- </entry>
477
- <entry file="file://$PROJECT_DIR$/Gemfile">
478
- <provider selected="true" editor-type-id="text-editor">
479
- <state vertical-scroll-proportion="0.0" vertical-offset="30" max-vertical-offset="150">
480
- <caret line="2" column="37" selection-start-line="2" selection-start-column="37" selection-end-line="2" selection-end-column="37" />
481
- <folding />
482
- </state>
483
- </provider>
484
- </entry>
485
- <entry file="file://$PROJECT_DIR$/README.md">
486
- <provider selected="true" editor-type-id="text-editor">
487
- <state vertical-scroll-proportion="0.0" vertical-offset="75" max-vertical-offset="675">
488
- <caret line="5" column="0" selection-start-line="5" selection-start-column="0" selection-end-line="5" selection-end-column="0" />
489
- <folding />
490
- </state>
491
- </provider>
492
- </entry>
493
- <entry file="file://$PROJECT_DIR$/bin/console">
494
- <provider selected="true" editor-type-id="text-editor">
495
- <state vertical-scroll-proportion="0.0" vertical-offset="45" max-vertical-offset="300">
496
- <caret line="3" column="9" selection-start-line="3" selection-start-column="9" selection-end-line="3" selection-end-column="9" />
497
- <folding />
498
- </state>
499
- </provider>
500
- </entry>
501
- <entry file="file://$PROJECT_DIR$/lib/colorized_routes.rb">
502
- <provider selected="true" editor-type-id="text-editor">
503
- <state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="100">
504
- <caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
505
- <folding />
506
- </state>
507
- </provider>
508
- </entry>
509
- <entry file="file://$PROJECT_DIR$/lib/colorized_routes/rails/tasks/colorized_routes.rake">
510
- <provider selected="true" editor-type-id="text-editor">
511
- <state vertical-scroll-proportion="0.0" vertical-offset="30" max-vertical-offset="750">
512
- <caret line="2" column="6" selection-start-line="2" selection-start-column="6" selection-end-line="2" selection-end-column="6" />
513
- <folding />
514
- </state>
515
- </provider>
516
- </entry>
517
- <entry file="file://$PROJECT_DIR$/lib/colorized_routes/railtie.rb">
518
- <provider selected="true" editor-type-id="text-editor">
519
- <state vertical-scroll-proportion="0.0" vertical-offset="75" max-vertical-offset="225">
520
- <caret line="5" column="18" selection-start-line="5" selection-start-column="18" selection-end-line="5" selection-end-column="18" />
521
- <folding />
522
- </state>
523
- </provider>
524
- </entry>
525
- <entry file="file://$PROJECT_DIR$/lib/colorized_routes/version.rb">
526
- <provider selected="true" editor-type-id="text-editor">
527
- <state vertical-scroll-proportion="0.0" vertical-offset="15" max-vertical-offset="135">
528
- <caret line="1" column="18" selection-start-line="1" selection-start-column="18" selection-end-line="1" selection-end-column="18" />
529
- <folding />
530
- </state>
531
- </provider>
532
- </entry>
533
- <entry file="file://$PROJECT_DIR$/.rvmrc">
534
- <provider selected="true" editor-type-id="text-editor">
535
- <state vertical-scroll-proportion="0.0" vertical-offset="120" max-vertical-offset="780">
536
- <caret line="8" column="27" selection-start-line="8" selection-start-column="27" selection-end-line="8" selection-end-column="27" />
537
- <folding />
538
- </state>
539
- </provider>
540
- </entry>
541
- <entry file="file://$PROJECT_DIR$/Gemfile">
542
- <provider selected="true" editor-type-id="text-editor">
543
- <state vertical-scroll-proportion="0.0" vertical-offset="30" max-vertical-offset="150">
544
- <caret line="2" column="37" selection-start-line="2" selection-start-column="37" selection-end-line="2" selection-end-column="37" />
545
- <folding />
546
- </state>
547
- </provider>
548
- </entry>
549
- <entry file="file://$PROJECT_DIR$/README.md">
550
- <provider selected="true" editor-type-id="text-editor">
551
- <state vertical-scroll-proportion="0.0" vertical-offset="75" max-vertical-offset="675">
552
- <caret line="5" column="0" selection-start-line="5" selection-start-column="0" selection-end-line="5" selection-end-column="0" />
553
- <folding />
554
- </state>
555
- </provider>
556
- </entry>
557
- <entry file="file://$PROJECT_DIR$/bin/console">
558
- <provider selected="true" editor-type-id="text-editor">
559
- <state vertical-scroll-proportion="0.0" vertical-offset="45" max-vertical-offset="300">
560
- <caret line="3" column="9" selection-start-line="3" selection-start-column="9" selection-end-line="3" selection-end-column="9" />
561
- <folding />
562
- </state>
563
- </provider>
564
- </entry>
565
- <entry file="file://$PROJECT_DIR$/colorized_routes.gemspec">
566
- <provider selected="true" editor-type-id="text-editor">
567
- <state vertical-scroll-proportion="0.0" vertical-offset="105" max-vertical-offset="510">
568
- <caret line="7" column="23" selection-start-line="7" selection-start-column="23" selection-end-line="7" selection-end-column="23" />
569
- <folding />
570
- </state>
571
- </provider>
572
- </entry>
573
- <entry file="file://$PROJECT_DIR$/.rvmrc">
574
- <provider selected="true" editor-type-id="text-editor">
575
- <state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="780">
576
- <caret line="8" column="27" selection-start-line="8" selection-start-column="27" selection-end-line="8" selection-end-column="27" />
577
- <folding />
578
- </state>
579
- </provider>
580
- </entry>
581
- <entry file="file://$PROJECT_DIR$/Gemfile">
582
- <provider selected="true" editor-type-id="text-editor">
583
- <state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="150">
584
- <caret line="2" column="37" selection-start-line="2" selection-start-column="37" selection-end-line="2" selection-end-column="37" />
585
- <folding />
586
- </state>
587
- </provider>
588
- </entry>
589
- <entry file="file://$PROJECT_DIR$/bin/console">
590
- <provider selected="true" editor-type-id="text-editor">
591
- <state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="300">
592
- <caret line="3" column="9" selection-start-line="3" selection-start-column="9" selection-end-line="3" selection-end-column="9" />
593
- <folding />
594
- </state>
595
- </provider>
596
- </entry>
597
- <entry file="file://$PROJECT_DIR$/lib/colorized_routes/railtie.rb">
598
- <provider selected="true" editor-type-id="text-editor">
599
- <state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="225">
600
- <caret line="5" column="18" selection-start-line="5" selection-start-column="18" selection-end-line="5" selection-end-column="18" />
601
- <folding />
602
- </state>
603
- </provider>
604
- </entry>
605
- <entry file="file://$PROJECT_DIR$/lib/colorized_routes.rb">
606
- <provider selected="true" editor-type-id="text-editor">
607
- <state vertical-scroll-proportion="0.0" vertical-offset="15" max-vertical-offset="210">
608
- <caret line="1" column="25" selection-start-line="1" selection-start-column="9" selection-end-line="1" selection-end-column="25" />
609
- <folding />
610
- </state>
611
- </provider>
612
- </entry>
613
- <entry file="file://$PROJECT_DIR$/lib/colorized_routes/rails/tasks/colorized_routes.rake">
614
- <provider selected="true" editor-type-id="text-editor">
615
- <state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="825">
616
- <caret line="3" column="20" selection-start-line="3" selection-start-column="20" selection-end-line="3" selection-end-column="20" />
617
- <folding />
618
- </state>
619
- </provider>
620
- </entry>
621
- <entry file="file://$PROJECT_DIR$/README.md">
622
- <provider selected="true" editor-type-id="text-editor">
623
- <state vertical-scroll-proportion="-14.4" vertical-offset="0" max-vertical-offset="675">
624
- <caret line="24" column="6" selection-start-line="24" selection-start-column="6" selection-end-line="24" selection-end-column="6" />
625
- <folding />
626
- </state>
627
- </provider>
628
- </entry>
629
- <entry file="file://$PROJECT_DIR$/.gitignore">
630
- <provider selected="true" editor-type-id="text-editor">
631
- <state vertical-scroll-proportion="-0.6" vertical-offset="0" max-vertical-offset="105">
632
- <caret line="1" column="1" selection-start-line="1" selection-start-column="1" selection-end-line="1" selection-end-column="1" />
633
- <folding />
634
- </state>
635
- </provider>
636
- </entry>
637
- <entry file="file://$PROJECT_DIR$/colorized_routes.gemspec">
638
- <provider selected="true" editor-type-id="text-editor">
639
- <state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="510">
640
- <caret line="12" column="122" selection-start-line="12" selection-start-column="122" selection-end-line="12" selection-end-column="122" />
641
- <folding />
642
- </state>
643
- </provider>
644
- </entry>
645
- <entry file="file://$PROJECT_DIR$/lib/colorized_routes/version.rb">
646
- <provider selected="true" editor-type-id="text-editor">
647
- <state vertical-scroll-proportion="0.011398177" vertical-offset="0" max-vertical-offset="1316">
648
- <caret line="1" column="18" selection-start-line="1" selection-start-column="18" selection-end-line="1" selection-end-column="18" />
649
- <folding />
650
- </state>
651
- </provider>
652
- </entry>
653
- </component>
654
- </project>
data/LICENSE DELETED
@@ -1,21 +0,0 @@
1
- The MIT License
2
-
3
- Copyright (c) Nicolas Oga
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in
13
- all copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
- THE SOFTWARE.