dvm 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/lib/dvm/cli.rb +24 -5
- data/lib/dvm/version.rb +1 -1
- metadata +2 -14
- data/.idea/.name +0 -1
- data/.idea/compiler.xml +0 -23
- data/.idea/copyright/profiles_settings.xml +0 -3
- data/.idea/encodings.xml +0 -5
- data/.idea/inspectionProfiles/Project_Default.xml +0 -20
- data/.idea/inspectionProfiles/profiles_settings.xml +0 -7
- data/.idea/misc.xml +0 -95
- data/.idea/modules.xml +0 -9
- data/.idea/scopes/scope_settings.xml +0 -5
- data/.idea/vcs.xml +0 -7
- data/.idea/workspace.xml +0 -713
- data/dvm.iml +0 -25
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a93e5adbb6cbf54f7fcebe1dfafe07ad0ffb1d6b
|
4
|
+
data.tar.gz: ba33799b277afa2fa8231d190d91f8c64adf933d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6f19a2cfa7a33acfdb9b50d017187761286143667bf508497ec3dc822dc82862058374175a2223df6dd73f5ba5a2fc2f56cccae86a46733eedd5c119b95a937a
|
7
|
+
data.tar.gz: b8be6e1fbde43cc255a861fc9dcc52f947a0b8a5a35f0201036281491b93cdd26cdfcdc91565680552750cf69db37073b623aa692ddef4196fb6e2a0724a0555
|
data/.gitignore
CHANGED
data/lib/dvm/cli.rb
CHANGED
@@ -45,8 +45,8 @@ module DVM
|
|
45
45
|
end
|
46
46
|
|
47
47
|
def shared_files
|
48
|
-
Dir.glob(current_path('config', '*.example')).collect do |c|
|
49
|
-
File.join 'config',
|
48
|
+
Dir.glob(current_path('config', '**', '*.example')).collect do |c|
|
49
|
+
File.join 'config', c.split('config')[1][1..-1].split('.')[0..-2].join('.')
|
50
50
|
end
|
51
51
|
end
|
52
52
|
|
@@ -80,8 +80,9 @@ module DVM
|
|
80
80
|
|
81
81
|
|
82
82
|
def copy_config
|
83
|
-
Dir.glob(current_path('config', '*.example')).each do |c|
|
84
|
-
|
83
|
+
Dir.glob(current_path('config', '**', '*.example')).each do |c|
|
84
|
+
puts c
|
85
|
+
FileUtils.cp c, share_path('config', c.split('config')[1][1..-1].split('.')[0..-2].join('.'))
|
85
86
|
end
|
86
87
|
end
|
87
88
|
|
@@ -119,13 +120,31 @@ module DVM
|
|
119
120
|
end
|
120
121
|
|
121
122
|
|
123
|
+
def pull
|
124
|
+
`cd #{scm};git pull`
|
125
|
+
end
|
126
|
+
|
127
|
+
|
128
|
+
def update
|
129
|
+
pull
|
130
|
+
link_current checkout
|
131
|
+
link_shared
|
132
|
+
`cd #{current};RAILS_ENV=production bundle install`
|
133
|
+
`cd #{current};vam install`
|
134
|
+
`cd #{current};RAILS_ENV=production rake assets:precompile`
|
135
|
+
|
136
|
+
puts '======= Deploy success ======'
|
137
|
+
end
|
138
|
+
|
139
|
+
|
122
140
|
def self.run(argv)
|
123
141
|
if argv.length >0
|
124
142
|
action = argv[0]
|
125
143
|
if action == 'remote'
|
126
144
|
puts '1'
|
127
145
|
|
128
|
-
elsif action == '
|
146
|
+
elsif action == 'update'
|
147
|
+
CLI.new(Dir.getwd, '').update
|
129
148
|
else
|
130
149
|
root = Dir.getwd
|
131
150
|
repo = action
|
data/lib/dvm/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dvm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Xingjian Xu
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-11-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -61,24 +61,12 @@ extensions: []
|
|
61
61
|
extra_rdoc_files: []
|
62
62
|
files:
|
63
63
|
- ".gitignore"
|
64
|
-
- ".idea/.name"
|
65
|
-
- ".idea/compiler.xml"
|
66
|
-
- ".idea/copyright/profiles_settings.xml"
|
67
|
-
- ".idea/encodings.xml"
|
68
|
-
- ".idea/inspectionProfiles/Project_Default.xml"
|
69
|
-
- ".idea/inspectionProfiles/profiles_settings.xml"
|
70
|
-
- ".idea/misc.xml"
|
71
|
-
- ".idea/modules.xml"
|
72
|
-
- ".idea/scopes/scope_settings.xml"
|
73
|
-
- ".idea/vcs.xml"
|
74
|
-
- ".idea/workspace.xml"
|
75
64
|
- Gemfile
|
76
65
|
- LICENSE.txt
|
77
66
|
- README.md
|
78
67
|
- Rakefile
|
79
68
|
- bin/dvm
|
80
69
|
- dvm.gemspec
|
81
|
-
- dvm.iml
|
82
70
|
- lib/dvm.rb
|
83
71
|
- lib/dvm/cli.rb
|
84
72
|
- lib/dvm/version.rb
|
data/.idea/.name
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
dvm
|
data/.idea/compiler.xml
DELETED
@@ -1,23 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<project version="4">
|
3
|
-
<component name="CompilerConfiguration">
|
4
|
-
<option name="DEFAULT_COMPILER" value="Javac" />
|
5
|
-
<resourceExtensions />
|
6
|
-
<wildcardResourcePatterns>
|
7
|
-
<entry name="!?*.java" />
|
8
|
-
<entry name="!?*.form" />
|
9
|
-
<entry name="!?*.class" />
|
10
|
-
<entry name="!?*.groovy" />
|
11
|
-
<entry name="!?*.scala" />
|
12
|
-
<entry name="!?*.flex" />
|
13
|
-
<entry name="!?*.kt" />
|
14
|
-
<entry name="!?*.clj" />
|
15
|
-
</wildcardResourcePatterns>
|
16
|
-
<annotationProcessing>
|
17
|
-
<profile default="true" name="Default" enabled="false">
|
18
|
-
<processorPath useClasspath="true" />
|
19
|
-
</profile>
|
20
|
-
</annotationProcessing>
|
21
|
-
</component>
|
22
|
-
</project>
|
23
|
-
|
data/.idea/encodings.xml
DELETED
@@ -1,20 +0,0 @@
|
|
1
|
-
<component name="InspectionProjectProfileManager">
|
2
|
-
<profile version="1.0" is_locked="false">
|
3
|
-
<option name="myName" value="Project Default" />
|
4
|
-
<option name="myLocal" value="false" />
|
5
|
-
<inspection_tool class="GitignoreUnusedEntry" enabled="false" level="WEAK WARNING" enabled_by_default="false" />
|
6
|
-
<inspection_tool class="LoggerInitializedWithForeignClass" enabled="false" level="WARNING" enabled_by_default="false">
|
7
|
-
<option name="loggerClassName" value="org.apache.log4j.Logger,org.slf4j.LoggerFactory,org.apache.commons.logging.LogFactory,java.util.logging.Logger" />
|
8
|
-
<option name="loggerFactoryMethodName" value="getLogger,getLogger,getLog,getLogger" />
|
9
|
-
</inspection_tool>
|
10
|
-
<inspection_tool class="RubyResolve" enabled="false" level="WARNING" enabled_by_default="false">
|
11
|
-
<option name="warnImplicitResults" value="false" />
|
12
|
-
</inspection_tool>
|
13
|
-
<inspection_tool class="RubyUnusedLocalVariable" enabled="false" level="WARNING" enabled_by_default="false" />
|
14
|
-
<inspection_tool class="SpellCheckingInspection" enabled="false" level="TYPO" enabled_by_default="false">
|
15
|
-
<option name="processCode" value="true" />
|
16
|
-
<option name="processLiterals" value="true" />
|
17
|
-
<option name="processComments" value="true" />
|
18
|
-
</inspection_tool>
|
19
|
-
</profile>
|
20
|
-
</component>
|
data/.idea/misc.xml
DELETED
@@ -1,95 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<project version="4">
|
3
|
-
<component name="IdProvider" IDEtalkID="E3B3B1B1388D5DF22C807FF0DD90D86F" />
|
4
|
-
<component name="ProjectDictionaryState">
|
5
|
-
<dictionary name="dotswing" />
|
6
|
-
</component>
|
7
|
-
<component name="ProjectInspectionProfilesVisibleTreeState">
|
8
|
-
<entry key="Project Default">
|
9
|
-
<profile-state>
|
10
|
-
<expanded-state>
|
11
|
-
<State>
|
12
|
-
<id />
|
13
|
-
</State>
|
14
|
-
<State>
|
15
|
-
<id>Cucumber</id>
|
16
|
-
</State>
|
17
|
-
<State>
|
18
|
-
<id>JRuby</id>
|
19
|
-
</State>
|
20
|
-
<State>
|
21
|
-
<id>Naming ConventionsRuby</id>
|
22
|
-
</State>
|
23
|
-
<State>
|
24
|
-
<id>Rails</id>
|
25
|
-
</State>
|
26
|
-
<State>
|
27
|
-
<id>Resource management issues</id>
|
28
|
-
</State>
|
29
|
-
<State>
|
30
|
-
<id>Ruby</id>
|
31
|
-
</State>
|
32
|
-
</expanded-state>
|
33
|
-
<selected-state>
|
34
|
-
<State>
|
35
|
-
<id>Abstraction issues</id>
|
36
|
-
</State>
|
37
|
-
</selected-state>
|
38
|
-
</profile-state>
|
39
|
-
</entry>
|
40
|
-
</component>
|
41
|
-
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_3" assert-keyword="false" jdk-15="false" project-jdk-name="ruby-2.1.2-p95" project-jdk-type="RUBY_SDK">
|
42
|
-
<output url="file://$PROJECT_DIR$/out" />
|
43
|
-
</component>
|
44
|
-
<component name="masterDetails">
|
45
|
-
<states>
|
46
|
-
<state key="GlobalLibrariesConfigurable.UI">
|
47
|
-
<settings>
|
48
|
-
<last-edited>CFPropertyList (v2.2.0, ruby-2.0.0-p451) [gem]</last-edited>
|
49
|
-
<splitter-proportions>
|
50
|
-
<option name="proportions">
|
51
|
-
<list>
|
52
|
-
<option value="0.2" />
|
53
|
-
</list>
|
54
|
-
</option>
|
55
|
-
</splitter-proportions>
|
56
|
-
</settings>
|
57
|
-
</state>
|
58
|
-
<state key="JdkListConfigurable.UI">
|
59
|
-
<settings>
|
60
|
-
<last-edited>ruby-2.1.2-p95</last-edited>
|
61
|
-
<splitter-proportions>
|
62
|
-
<option name="proportions">
|
63
|
-
<list>
|
64
|
-
<option value="0.2" />
|
65
|
-
</list>
|
66
|
-
</option>
|
67
|
-
</splitter-proportions>
|
68
|
-
</settings>
|
69
|
-
</state>
|
70
|
-
<state key="ProjectLibrariesConfigurable.UI">
|
71
|
-
<settings>
|
72
|
-
<splitter-proportions>
|
73
|
-
<option name="proportions">
|
74
|
-
<list>
|
75
|
-
<option value="0.2" />
|
76
|
-
</list>
|
77
|
-
</option>
|
78
|
-
</splitter-proportions>
|
79
|
-
</settings>
|
80
|
-
</state>
|
81
|
-
<state key="ScopeChooserConfigurable.UI">
|
82
|
-
<settings>
|
83
|
-
<splitter-proportions>
|
84
|
-
<option name="proportions">
|
85
|
-
<list>
|
86
|
-
<option value="0.2" />
|
87
|
-
</list>
|
88
|
-
</option>
|
89
|
-
</splitter-proportions>
|
90
|
-
</settings>
|
91
|
-
</state>
|
92
|
-
</states>
|
93
|
-
</component>
|
94
|
-
</project>
|
95
|
-
|
data/.idea/modules.xml
DELETED
data/.idea/vcs.xml
DELETED
data/.idea/workspace.xml
DELETED
@@ -1,713 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<project version="4">
|
3
|
-
<component name="ChangeListManager">
|
4
|
-
<list default="true" id="0319cfef-40f6-498a-beb7-e99f460db78a" name="Default" comment="">
|
5
|
-
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/lib/dvm/cli.rb" />
|
6
|
-
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/bin/dvm" />
|
7
|
-
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/dvm.gemspec" afterPath="$PROJECT_DIR$/dvm.gemspec" />
|
8
|
-
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/lib/dvm.rb" afterPath="$PROJECT_DIR$/lib/dvm.rb" />
|
9
|
-
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/lib/dvm/version.rb" afterPath="$PROJECT_DIR$/lib/dvm/version.rb" />
|
10
|
-
</list>
|
11
|
-
<ignored path="dvm.iws" />
|
12
|
-
<ignored path=".idea/workspace.xml" />
|
13
|
-
<option name="TRACKING_ENABLED" value="true" />
|
14
|
-
<option name="SHOW_DIALOG" value="false" />
|
15
|
-
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
16
|
-
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
17
|
-
<option name="LAST_RESOLUTION" value="IGNORE" />
|
18
|
-
</component>
|
19
|
-
<component name="ChangesViewManager" flattened_view="true" show_ignored="false" />
|
20
|
-
<component name="CreatePatchCommitExecutor">
|
21
|
-
<option name="PATCH_PATH" value="" />
|
22
|
-
</component>
|
23
|
-
<component name="DaemonCodeAnalyzer">
|
24
|
-
<disable_hints />
|
25
|
-
</component>
|
26
|
-
<component name="ExecutionTargetManager" SELECTED_TARGET="default_target" />
|
27
|
-
<component name="FavoritesManager">
|
28
|
-
<favorites_list name="dvm" />
|
29
|
-
</component>
|
30
|
-
<component name="FileEditorManager">
|
31
|
-
<leaf>
|
32
|
-
<file leaf-file-name="dvm.rb" pinned="false" current="false" current-in-tab="false">
|
33
|
-
<entry file="file://$PROJECT_DIR$/lib/dvm.rb">
|
34
|
-
<provider selected="true" editor-type-id="text-editor">
|
35
|
-
<state vertical-scroll-proportion="0.0" vertical-offset="54" max-vertical-offset="198">
|
36
|
-
<caret line="3" column="10" selection-start-line="3" selection-start-column="10" selection-end-line="3" selection-end-column="10" />
|
37
|
-
<folding />
|
38
|
-
</state>
|
39
|
-
</provider>
|
40
|
-
</entry>
|
41
|
-
</file>
|
42
|
-
<file leaf-file-name="dvm" pinned="false" current="false" current-in-tab="false">
|
43
|
-
<entry file="file://$PROJECT_DIR$/bin/dvm">
|
44
|
-
<provider selected="true" editor-type-id="text-editor">
|
45
|
-
<state vertical-scroll-proportion="0.0" vertical-offset="54" max-vertical-offset="198">
|
46
|
-
<caret line="3" column="0" selection-start-line="3" selection-start-column="0" selection-end-line="3" selection-end-column="0" />
|
47
|
-
<folding />
|
48
|
-
</state>
|
49
|
-
</provider>
|
50
|
-
</entry>
|
51
|
-
</file>
|
52
|
-
<file leaf-file-name="version.rb" pinned="false" current="false" current-in-tab="false">
|
53
|
-
<entry file="file://$PROJECT_DIR$/lib/dvm/version.rb">
|
54
|
-
<provider selected="true" editor-type-id="text-editor">
|
55
|
-
<state vertical-scroll-proportion="0.0" vertical-offset="54" max-vertical-offset="162">
|
56
|
-
<caret line="3" column="0" selection-start-line="3" selection-start-column="0" selection-end-line="3" selection-end-column="0" />
|
57
|
-
<folding />
|
58
|
-
</state>
|
59
|
-
</provider>
|
60
|
-
</entry>
|
61
|
-
</file>
|
62
|
-
<file leaf-file-name="cli.rb" pinned="false" current="true" current-in-tab="true">
|
63
|
-
<entry file="file://$PROJECT_DIR$/lib/dvm/cli.rb">
|
64
|
-
<provider selected="true" editor-type-id="text-editor">
|
65
|
-
<state vertical-scroll-proportion="0.7278583" vertical-offset="1600" max-vertical-offset="2880">
|
66
|
-
<caret line="114" column="31" selection-start-line="114" selection-start-column="31" selection-end-line="114" selection-end-column="31" />
|
67
|
-
<folding />
|
68
|
-
</state>
|
69
|
-
</provider>
|
70
|
-
</entry>
|
71
|
-
</file>
|
72
|
-
</leaf>
|
73
|
-
</component>
|
74
|
-
<component name="FindManager">
|
75
|
-
<FindUsagesManager>
|
76
|
-
<setting name="OPEN_NEW_TAB" value="true" />
|
77
|
-
</FindUsagesManager>
|
78
|
-
</component>
|
79
|
-
<component name="Git.Settings">
|
80
|
-
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
81
|
-
</component>
|
82
|
-
<component name="IdeDocumentHistory">
|
83
|
-
<option name="changedFiles">
|
84
|
-
<list>
|
85
|
-
<option value="$PROJECT_DIR$/.gitignore" />
|
86
|
-
<option value="$PROJECT_DIR$/dvm.gemspec" />
|
87
|
-
<option value="$PROJECT_DIR$/lib/dvm.rb" />
|
88
|
-
<option value="$PROJECT_DIR$/lib/dvm/version.rb" />
|
89
|
-
<option value="$PROJECT_DIR$/bin/dvm" />
|
90
|
-
<option value="$PROJECT_DIR$/lib/dvm/cli.rb" />
|
91
|
-
</list>
|
92
|
-
</option>
|
93
|
-
</component>
|
94
|
-
<component name="ProjectFrameBounds">
|
95
|
-
<option name="x" value="4" />
|
96
|
-
<option name="y" value="22" />
|
97
|
-
<option name="width" value="1916" />
|
98
|
-
<option name="height" value="1058" />
|
99
|
-
</component>
|
100
|
-
<component name="ProjectLevelVcsManager" settingsEditedManually="true">
|
101
|
-
<OptionsSetting value="true" id="Add" />
|
102
|
-
<OptionsSetting value="true" id="Remove" />
|
103
|
-
<OptionsSetting value="true" id="Checkout" />
|
104
|
-
<OptionsSetting value="true" id="Update" />
|
105
|
-
<OptionsSetting value="true" id="Status" />
|
106
|
-
<OptionsSetting value="true" id="Edit" />
|
107
|
-
<ConfirmationsSetting value="2" id="Add" />
|
108
|
-
<ConfirmationsSetting value="0" id="Remove" />
|
109
|
-
</component>
|
110
|
-
<component name="ProjectReloadState">
|
111
|
-
<option name="STATE" value="0" />
|
112
|
-
</component>
|
113
|
-
<component name="ProjectView">
|
114
|
-
<navigator currentView="ProjectPane" proportions="" version="1">
|
115
|
-
<flattenPackages />
|
116
|
-
<showMembers />
|
117
|
-
<showModules />
|
118
|
-
<showLibraryContents />
|
119
|
-
<hideEmptyPackages />
|
120
|
-
<abbreviatePackageNames />
|
121
|
-
<autoscrollToSource />
|
122
|
-
<autoscrollFromSource />
|
123
|
-
<sortByType />
|
124
|
-
</navigator>
|
125
|
-
<panes>
|
126
|
-
<pane id="PackagesPane" />
|
127
|
-
<pane id="ProjectPane">
|
128
|
-
<subPane>
|
129
|
-
<PATH>
|
130
|
-
<PATH_ELEMENT>
|
131
|
-
<option name="myItemId" value="dvm" />
|
132
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
133
|
-
</PATH_ELEMENT>
|
134
|
-
</PATH>
|
135
|
-
<PATH>
|
136
|
-
<PATH_ELEMENT>
|
137
|
-
<option name="myItemId" value="dvm" />
|
138
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
139
|
-
</PATH_ELEMENT>
|
140
|
-
<PATH_ELEMENT>
|
141
|
-
<option name="myItemId" value="dvm" />
|
142
|
-
<option name="myItemType" value="com.android.tools.idea.gradle.projectView.AndroidPsiDirectoryNode" />
|
143
|
-
</PATH_ELEMENT>
|
144
|
-
</PATH>
|
145
|
-
<PATH>
|
146
|
-
<PATH_ELEMENT>
|
147
|
-
<option name="myItemId" value="dvm" />
|
148
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
149
|
-
</PATH_ELEMENT>
|
150
|
-
<PATH_ELEMENT>
|
151
|
-
<option name="myItemId" value="dvm" />
|
152
|
-
<option name="myItemType" value="com.android.tools.idea.gradle.projectView.AndroidPsiDirectoryNode" />
|
153
|
-
</PATH_ELEMENT>
|
154
|
-
<PATH_ELEMENT>
|
155
|
-
<option name="myItemId" value="lib" />
|
156
|
-
<option name="myItemType" value="com.android.tools.idea.gradle.projectView.AndroidPsiDirectoryNode" />
|
157
|
-
</PATH_ELEMENT>
|
158
|
-
</PATH>
|
159
|
-
<PATH>
|
160
|
-
<PATH_ELEMENT>
|
161
|
-
<option name="myItemId" value="dvm" />
|
162
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
163
|
-
</PATH_ELEMENT>
|
164
|
-
<PATH_ELEMENT>
|
165
|
-
<option name="myItemId" value="dvm" />
|
166
|
-
<option name="myItemType" value="com.android.tools.idea.gradle.projectView.AndroidPsiDirectoryNode" />
|
167
|
-
</PATH_ELEMENT>
|
168
|
-
<PATH_ELEMENT>
|
169
|
-
<option name="myItemId" value="lib" />
|
170
|
-
<option name="myItemType" value="com.android.tools.idea.gradle.projectView.AndroidPsiDirectoryNode" />
|
171
|
-
</PATH_ELEMENT>
|
172
|
-
<PATH_ELEMENT>
|
173
|
-
<option name="myItemId" value="dvm" />
|
174
|
-
<option name="myItemType" value="com.android.tools.idea.gradle.projectView.AndroidPsiDirectoryNode" />
|
175
|
-
</PATH_ELEMENT>
|
176
|
-
</PATH>
|
177
|
-
<PATH>
|
178
|
-
<PATH_ELEMENT>
|
179
|
-
<option name="myItemId" value="dvm" />
|
180
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
181
|
-
</PATH_ELEMENT>
|
182
|
-
<PATH_ELEMENT>
|
183
|
-
<option name="myItemId" value="dvm" />
|
184
|
-
<option name="myItemType" value="com.android.tools.idea.gradle.projectView.AndroidPsiDirectoryNode" />
|
185
|
-
</PATH_ELEMENT>
|
186
|
-
<PATH_ELEMENT>
|
187
|
-
<option name="myItemId" value="bin" />
|
188
|
-
<option name="myItemType" value="com.android.tools.idea.gradle.projectView.AndroidPsiDirectoryNode" />
|
189
|
-
</PATH_ELEMENT>
|
190
|
-
</PATH>
|
191
|
-
</subPane>
|
192
|
-
</pane>
|
193
|
-
<pane id="Scope" />
|
194
|
-
</panes>
|
195
|
-
</component>
|
196
|
-
<component name="PropertiesComponent">
|
197
|
-
<property name="GoToClass.includeLibraries" value="false" />
|
198
|
-
<property name="GoToClass.toSaveIncludeLibraries" value="false" />
|
199
|
-
<property name="GoToFile.includeJavaFiles" value="false" />
|
200
|
-
<property name="MemberChooser.sorted" value="false" />
|
201
|
-
<property name="MemberChooser.showClasses" value="true" />
|
202
|
-
<property name="MemberChooser.copyJavadoc" value="false" />
|
203
|
-
<property name="options.lastSelected" value="http.proxy" />
|
204
|
-
<property name="options.splitter.main.proportions" value="0.30083334" />
|
205
|
-
<property name="options.splitter.details.proportions" value="0.2" />
|
206
|
-
<property name="options.searchVisible" value="true" />
|
207
|
-
<property name="project.structure.last.edited" value="SDKs" />
|
208
|
-
<property name="project.structure.proportion" value="0.0" />
|
209
|
-
<property name="project.structure.side.proportion" value="0.2" />
|
210
|
-
<property name="recentsLimit" value="5" />
|
211
|
-
<property name="WebServerToolWindowFactoryState" value="false" />
|
212
|
-
<property name="FullScreen" value="false" />
|
213
|
-
</component>
|
214
|
-
<component name="RunManager">
|
215
|
-
<configuration default="true" type="#org.jetbrains.idea.devkit.run.PluginConfigurationType" factoryName="Plugin">
|
216
|
-
<module name="" />
|
217
|
-
<option name="VM_PARAMETERS" value="-Xmx512m -Xms256m -XX:MaxPermSize=250m -ea" />
|
218
|
-
<option name="PROGRAM_PARAMETERS" />
|
219
|
-
<method />
|
220
|
-
</configuration>
|
221
|
-
<configuration default="true" type="RSpecRunConfigurationType" factoryName="RSpec">
|
222
|
-
<predefined_log_file id="RUBY_RSPEC" enabled="true" />
|
223
|
-
<module name="" />
|
224
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
225
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
226
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
227
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
228
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
229
|
-
<envs />
|
230
|
-
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
231
|
-
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
232
|
-
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
233
|
-
<COVERAGE_PATTERN ENABLED="true">
|
234
|
-
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
235
|
-
</COVERAGE_PATTERN>
|
236
|
-
</EXTENSION>
|
237
|
-
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
238
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
239
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
240
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="" />
|
241
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
|
242
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="" />
|
243
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
244
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="" />
|
245
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
246
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_SPEC_RUNNER" VALUE="false" />
|
247
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
248
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
249
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
250
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
251
|
-
<method />
|
252
|
-
</configuration>
|
253
|
-
<configuration default="true" type="Remote" factoryName="Remote">
|
254
|
-
<option name="USE_SOCKET_TRANSPORT" value="true" />
|
255
|
-
<option name="SERVER_MODE" value="false" />
|
256
|
-
<option name="SHMEM_ADDRESS" value="javadebug" />
|
257
|
-
<option name="HOST" value="localhost" />
|
258
|
-
<option name="PORT" value="5005" />
|
259
|
-
<method />
|
260
|
-
</configuration>
|
261
|
-
<configuration default="true" type="RubyRunConfigurationType" factoryName="Ruby">
|
262
|
-
<module name="" />
|
263
|
-
<RUBY_RUN_CONFIG NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
264
|
-
<RUBY_RUN_CONFIG NAME="WORK DIR" VALUE="" />
|
265
|
-
<RUBY_RUN_CONFIG NAME="SHOULD_USE_SDK" VALUE="false" />
|
266
|
-
<RUBY_RUN_CONFIG NAME="ALTERN_SDK_NAME" VALUE="" />
|
267
|
-
<RUBY_RUN_CONFIG NAME="myPassParentEnvs" VALUE="true" />
|
268
|
-
<envs />
|
269
|
-
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
270
|
-
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
271
|
-
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
272
|
-
<COVERAGE_PATTERN ENABLED="true">
|
273
|
-
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
274
|
-
</COVERAGE_PATTERN>
|
275
|
-
</EXTENSION>
|
276
|
-
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
277
|
-
<RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="" />
|
278
|
-
<RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="" />
|
279
|
-
<method />
|
280
|
-
</configuration>
|
281
|
-
<configuration default="true" type="JavascriptDebugType" factoryName="JavaScript Debug">
|
282
|
-
<method />
|
283
|
-
</configuration>
|
284
|
-
<configuration default="true" type="TestUnitRunConfigurationType" factoryName="Test::Unit/Shoulda/Minitest">
|
285
|
-
<predefined_log_file id="RUBY_TESTUNIT" enabled="true" />
|
286
|
-
<module name="" />
|
287
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
288
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
289
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
290
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
291
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
292
|
-
<envs />
|
293
|
-
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
294
|
-
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
295
|
-
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
296
|
-
<COVERAGE_PATTERN ENABLED="true">
|
297
|
-
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
298
|
-
</COVERAGE_PATTERN>
|
299
|
-
</EXTENSION>
|
300
|
-
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
301
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
302
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
303
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="" />
|
304
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_METHOD_NAME" VALUE="" />
|
305
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
306
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
307
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
308
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
309
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_OPTIONS" VALUE="" />
|
310
|
-
<method />
|
311
|
-
</configuration>
|
312
|
-
<configuration default="true" type="Applet" factoryName="Applet">
|
313
|
-
<module name="" />
|
314
|
-
<option name="MAIN_CLASS_NAME" />
|
315
|
-
<option name="HTML_FILE_NAME" />
|
316
|
-
<option name="HTML_USED" value="false" />
|
317
|
-
<option name="WIDTH" value="400" />
|
318
|
-
<option name="HEIGHT" value="300" />
|
319
|
-
<option name="POLICY_FILE" value="$APPLICATION_HOME_DIR$/bin/appletviewer.policy" />
|
320
|
-
<option name="VM_PARAMETERS" />
|
321
|
-
<option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
|
322
|
-
<option name="ALTERNATIVE_JRE_PATH" />
|
323
|
-
<method />
|
324
|
-
</configuration>
|
325
|
-
<configuration default="true" type="TestNG" factoryName="TestNG">
|
326
|
-
<extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" />
|
327
|
-
<module name="" />
|
328
|
-
<option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
|
329
|
-
<option name="ALTERNATIVE_JRE_PATH" />
|
330
|
-
<option name="SUITE_NAME" />
|
331
|
-
<option name="PACKAGE_NAME" />
|
332
|
-
<option name="MAIN_CLASS_NAME" />
|
333
|
-
<option name="METHOD_NAME" />
|
334
|
-
<option name="GROUP_NAME" />
|
335
|
-
<option name="TEST_OBJECT" value="CLASS" />
|
336
|
-
<option name="VM_PARAMETERS" value="-ea" />
|
337
|
-
<option name="PARAMETERS" />
|
338
|
-
<option name="WORKING_DIRECTORY" value="$PROJECT_DIR$" />
|
339
|
-
<option name="OUTPUT_DIRECTORY" />
|
340
|
-
<option name="ANNOTATION_TYPE" />
|
341
|
-
<option name="ENV_VARIABLES" />
|
342
|
-
<option name="PASS_PARENT_ENVS" value="true" />
|
343
|
-
<option name="TEST_SEARCH_SCOPE">
|
344
|
-
<value defaultName="moduleWithDependencies" />
|
345
|
-
</option>
|
346
|
-
<option name="USE_DEFAULT_REPORTERS" value="false" />
|
347
|
-
<option name="PROPERTIES_FILE" />
|
348
|
-
<envs />
|
349
|
-
<properties />
|
350
|
-
<listeners />
|
351
|
-
<method />
|
352
|
-
</configuration>
|
353
|
-
<configuration default="true" type="JUnit" factoryName="JUnit">
|
354
|
-
<extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" />
|
355
|
-
<module name="" />
|
356
|
-
<option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
|
357
|
-
<option name="ALTERNATIVE_JRE_PATH" />
|
358
|
-
<option name="PACKAGE_NAME" />
|
359
|
-
<option name="MAIN_CLASS_NAME" />
|
360
|
-
<option name="METHOD_NAME" />
|
361
|
-
<option name="TEST_OBJECT" value="class" />
|
362
|
-
<option name="VM_PARAMETERS" value="-ea" />
|
363
|
-
<option name="PARAMETERS" />
|
364
|
-
<option name="WORKING_DIRECTORY" value="$PROJECT_DIR$" />
|
365
|
-
<option name="ENV_VARIABLES" />
|
366
|
-
<option name="PASS_PARENT_ENVS" value="true" />
|
367
|
-
<option name="TEST_SEARCH_SCOPE">
|
368
|
-
<value defaultName="moduleWithDependencies" />
|
369
|
-
</option>
|
370
|
-
<envs />
|
371
|
-
<patterns />
|
372
|
-
<method />
|
373
|
-
</configuration>
|
374
|
-
<configuration default="true" type="FlashRunConfigurationType" factoryName="Flash App">
|
375
|
-
<option name="BCName" value="" />
|
376
|
-
<option name="IOSSimulatorSdkPath" value="" />
|
377
|
-
<option name="adlOptions" value="" />
|
378
|
-
<option name="airProgramParameters" value="" />
|
379
|
-
<option name="appDescriptorForEmulator" value="Android" />
|
380
|
-
<option name="debugTransport" value="USB" />
|
381
|
-
<option name="debuggerSdkRaw" value="BC SDK" />
|
382
|
-
<option name="emulator" value="NexusOne" />
|
383
|
-
<option name="emulatorAdlOptions" value="" />
|
384
|
-
<option name="fastPackaging" value="true" />
|
385
|
-
<option name="fullScreenHeight" value="0" />
|
386
|
-
<option name="fullScreenWidth" value="0" />
|
387
|
-
<option name="launchUrl" value="false" />
|
388
|
-
<option name="launcherParameters">
|
389
|
-
<LauncherParameters>
|
390
|
-
<option name="browser" value="a7bb68e0-33c0-4d6f-a81a-aac1fdb870c8" />
|
391
|
-
<option name="launcherType" value="OSDefault" />
|
392
|
-
<option name="newPlayerInstance" value="false" />
|
393
|
-
<option name="playerPath" value="/Applications/Flash Player Debugger.app" />
|
394
|
-
</LauncherParameters>
|
395
|
-
</option>
|
396
|
-
<option name="mobileRunTarget" value="Emulator" />
|
397
|
-
<option name="moduleName" value="" />
|
398
|
-
<option name="overriddenMainClass" value="" />
|
399
|
-
<option name="overriddenOutputFileName" value="" />
|
400
|
-
<option name="overrideMainClass" value="false" />
|
401
|
-
<option name="runTrusted" value="true" />
|
402
|
-
<option name="screenDpi" value="0" />
|
403
|
-
<option name="screenHeight" value="0" />
|
404
|
-
<option name="screenWidth" value="0" />
|
405
|
-
<option name="url" value="http://" />
|
406
|
-
<option name="usbDebugPort" value="7936" />
|
407
|
-
<method />
|
408
|
-
</configuration>
|
409
|
-
<configuration default="true" type="AndroidTestRunConfigurationType" factoryName="Android Tests">
|
410
|
-
<module name="" />
|
411
|
-
<option name="TESTING_TYPE" value="0" />
|
412
|
-
<option name="INSTRUMENTATION_RUNNER_CLASS" value="" />
|
413
|
-
<option name="METHOD_NAME" value="" />
|
414
|
-
<option name="CLASS_NAME" value="" />
|
415
|
-
<option name="PACKAGE_NAME" value="" />
|
416
|
-
<option name="TARGET_SELECTION_MODE" value="EMULATOR" />
|
417
|
-
<option name="USE_LAST_SELECTED_DEVICE" value="false" />
|
418
|
-
<option name="PREFERRED_AVD" value="" />
|
419
|
-
<option name="USE_COMMAND_LINE" value="true" />
|
420
|
-
<option name="COMMAND_LINE" value="" />
|
421
|
-
<option name="WIPE_USER_DATA" value="false" />
|
422
|
-
<option name="DISABLE_BOOT_ANIMATION" value="false" />
|
423
|
-
<option name="NETWORK_SPEED" value="full" />
|
424
|
-
<option name="NETWORK_LATENCY" value="none" />
|
425
|
-
<option name="CLEAR_LOGCAT" value="false" />
|
426
|
-
<option name="SHOW_LOGCAT_AUTOMATICALLY" value="true" />
|
427
|
-
<option name="FILTER_LOGCAT_AUTOMATICALLY" value="true" />
|
428
|
-
<method />
|
429
|
-
</configuration>
|
430
|
-
<configuration default="true" type="FlexUnitRunConfigurationType" factoryName="FlexUnit" appDescriptorForEmulator="Android" class_name="" emulatorAdlOptions="" method_name="" package_name="" scope="Class">
|
431
|
-
<option name="BCName" value="" />
|
432
|
-
<option name="launcherParameters">
|
433
|
-
<LauncherParameters>
|
434
|
-
<option name="browser" value="a7bb68e0-33c0-4d6f-a81a-aac1fdb870c8" />
|
435
|
-
<option name="launcherType" value="OSDefault" />
|
436
|
-
<option name="newPlayerInstance" value="false" />
|
437
|
-
<option name="playerPath" value="/Applications/Flash Player Debugger.app" />
|
438
|
-
</LauncherParameters>
|
439
|
-
</option>
|
440
|
-
<option name="moduleName" value="" />
|
441
|
-
<option name="trusted" value="true" />
|
442
|
-
<method />
|
443
|
-
</configuration>
|
444
|
-
<configuration default="true" type="CucumberJavaRunConfigurationType" factoryName="Cucumber java">
|
445
|
-
<extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" />
|
446
|
-
<option name="myFilePath" />
|
447
|
-
<option name="GLUE" />
|
448
|
-
<option name="myNameFilter" />
|
449
|
-
<option name="myGeneratedName" />
|
450
|
-
<option name="MAIN_CLASS_NAME" />
|
451
|
-
<option name="VM_PARAMETERS" />
|
452
|
-
<option name="PROGRAM_PARAMETERS" />
|
453
|
-
<option name="WORKING_DIRECTORY" />
|
454
|
-
<option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
|
455
|
-
<option name="ALTERNATIVE_JRE_PATH" />
|
456
|
-
<option name="ENABLE_SWING_INSPECTOR" value="false" />
|
457
|
-
<option name="ENV_VARIABLES" />
|
458
|
-
<option name="PASS_PARENT_ENVS" value="true" />
|
459
|
-
<module name="" />
|
460
|
-
<envs />
|
461
|
-
<method />
|
462
|
-
</configuration>
|
463
|
-
<configuration default="true" type="Application" factoryName="Application">
|
464
|
-
<extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" />
|
465
|
-
<option name="MAIN_CLASS_NAME" />
|
466
|
-
<option name="VM_PARAMETERS" />
|
467
|
-
<option name="PROGRAM_PARAMETERS" />
|
468
|
-
<option name="WORKING_DIRECTORY" value="$PROJECT_DIR$" />
|
469
|
-
<option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
|
470
|
-
<option name="ALTERNATIVE_JRE_PATH" />
|
471
|
-
<option name="ENABLE_SWING_INSPECTOR" value="false" />
|
472
|
-
<option name="ENV_VARIABLES" />
|
473
|
-
<option name="PASS_PARENT_ENVS" value="true" />
|
474
|
-
<module name="" />
|
475
|
-
<envs />
|
476
|
-
<method />
|
477
|
-
</configuration>
|
478
|
-
<configuration default="true" type="AndroidRunConfigurationType" factoryName="Android Application">
|
479
|
-
<module name="" />
|
480
|
-
<option name="ACTIVITY_CLASS" value="" />
|
481
|
-
<option name="MODE" value="default_activity" />
|
482
|
-
<option name="DEPLOY" value="true" />
|
483
|
-
<option name="ARTIFACT_NAME" value="" />
|
484
|
-
<option name="TARGET_SELECTION_MODE" value="EMULATOR" />
|
485
|
-
<option name="USE_LAST_SELECTED_DEVICE" value="false" />
|
486
|
-
<option name="PREFERRED_AVD" value="" />
|
487
|
-
<option name="USE_COMMAND_LINE" value="true" />
|
488
|
-
<option name="COMMAND_LINE" value="" />
|
489
|
-
<option name="WIPE_USER_DATA" value="false" />
|
490
|
-
<option name="DISABLE_BOOT_ANIMATION" value="false" />
|
491
|
-
<option name="NETWORK_SPEED" value="full" />
|
492
|
-
<option name="NETWORK_LATENCY" value="none" />
|
493
|
-
<option name="CLEAR_LOGCAT" value="false" />
|
494
|
-
<option name="SHOW_LOGCAT_AUTOMATICALLY" value="true" />
|
495
|
-
<option name="FILTER_LOGCAT_AUTOMATICALLY" value="true" />
|
496
|
-
<method />
|
497
|
-
</configuration>
|
498
|
-
<list size="0" />
|
499
|
-
<configuration name="<template>" type="WebApp" default="true" selected="false">
|
500
|
-
<Host>localhost</Host>
|
501
|
-
<Port>5050</Port>
|
502
|
-
</configuration>
|
503
|
-
</component>
|
504
|
-
<component name="ShelveChangesManager" show_recycled="false" />
|
505
|
-
<component name="TaskManager">
|
506
|
-
<task active="true" id="Default" summary="Default task">
|
507
|
-
<changelist id="0319cfef-40f6-498a-beb7-e99f460db78a" name="Default" comment="" />
|
508
|
-
<created>1408271721057</created>
|
509
|
-
<updated>1408271721057</updated>
|
510
|
-
<workItem from="1408271722311" duration="9246000" />
|
511
|
-
<workItem from="1408343097077" duration="3394000" />
|
512
|
-
</task>
|
513
|
-
<task id="LOCAL-00001" summary="Initial commit">
|
514
|
-
<created>1408272066619</created>
|
515
|
-
<updated>1408272066619</updated>
|
516
|
-
</task>
|
517
|
-
<option name="localTasksCounter" value="2" />
|
518
|
-
<servers />
|
519
|
-
</component>
|
520
|
-
<component name="TimeTrackingManager">
|
521
|
-
<option name="totallyTimeSpent" value="12640000" />
|
522
|
-
</component>
|
523
|
-
<component name="ToolWindowManager">
|
524
|
-
<frame x="4" y="22" width="1916" height="1058" extended-state="6" />
|
525
|
-
<editor active="false" />
|
526
|
-
<layout>
|
527
|
-
<window_info id="Palette	" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
|
528
|
-
<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" />
|
529
|
-
<window_info id="Designer" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
|
530
|
-
<window_info id="Palette" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
|
531
|
-
<window_info id="Terminal" active="true" anchor="bottom" auto_hide="true" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.32815734" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
532
|
-
<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" />
|
533
|
-
<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" />
|
534
|
-
<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" />
|
535
|
-
<window_info id="IDEtalk Messages" 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" />
|
536
|
-
<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" />
|
537
|
-
<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" />
|
538
|
-
<window_info id="IDEtalk" 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" />
|
539
|
-
<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" />
|
540
|
-
<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" />
|
541
|
-
<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" />
|
542
|
-
<window_info id="Maven Projects" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
|
543
|
-
<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" />
|
544
|
-
<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" />
|
545
|
-
<window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.2497332" sideWeight="0.5" order="0" side_tool="false" content_ui="combo" />
|
546
|
-
<window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.32954547" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
|
547
|
-
<window_info id="Hierarchy" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="2" side_tool="false" content_ui="combo" />
|
548
|
-
<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" />
|
549
|
-
<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" />
|
550
|
-
<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="1" side_tool="false" content_ui="tabs" />
|
551
|
-
<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="7" side_tool="false" content_ui="tabs" />
|
552
|
-
<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" />
|
553
|
-
</layout>
|
554
|
-
</component>
|
555
|
-
<component name="Vcs.Log.UiProperties">
|
556
|
-
<option name="RECENTLY_FILTERED_USER_GROUPS">
|
557
|
-
<collection />
|
558
|
-
</option>
|
559
|
-
<option name="RECENTLY_FILTERED_BRANCH_GROUPS">
|
560
|
-
<collection />
|
561
|
-
</option>
|
562
|
-
</component>
|
563
|
-
<component name="VcsContentAnnotationSettings">
|
564
|
-
<option name="myLimit" value="2678400000" />
|
565
|
-
</component>
|
566
|
-
<component name="VcsManagerConfiguration">
|
567
|
-
<option name="myTodoPanelSettings">
|
568
|
-
<TodoPanelSettings />
|
569
|
-
</option>
|
570
|
-
<MESSAGE value="Initial commit" />
|
571
|
-
<option name="LAST_COMMIT_MESSAGE" value="Initial commit" />
|
572
|
-
</component>
|
573
|
-
<component name="XDebuggerManager">
|
574
|
-
<breakpoint-manager />
|
575
|
-
</component>
|
576
|
-
<component name="editorHistoryManager">
|
577
|
-
<entry file="file://$PROJECT_DIR$/lib/dvm.rb">
|
578
|
-
<provider selected="true" editor-type-id="text-editor">
|
579
|
-
<state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="198">
|
580
|
-
<caret line="3" column="10" selection-start-line="3" selection-start-column="10" selection-end-line="3" selection-end-column="10" />
|
581
|
-
<folding />
|
582
|
-
</state>
|
583
|
-
</provider>
|
584
|
-
</entry>
|
585
|
-
<entry file="file://$PROJECT_DIR$/bin/dvm">
|
586
|
-
<provider selected="true" editor-type-id="text-editor">
|
587
|
-
<state vertical-scroll-proportion="0.0" vertical-offset="54" max-vertical-offset="198">
|
588
|
-
<caret line="3" column="0" selection-start-line="3" selection-start-column="0" selection-end-line="3" selection-end-column="0" />
|
589
|
-
<folding />
|
590
|
-
</state>
|
591
|
-
</provider>
|
592
|
-
</entry>
|
593
|
-
<entry file="file://$PROJECT_DIR$/lib/dvm/version.rb">
|
594
|
-
<provider selected="true" editor-type-id="text-editor">
|
595
|
-
<state vertical-scroll-proportion="0.0" vertical-offset="54" max-vertical-offset="162">
|
596
|
-
<caret line="3" column="0" selection-start-line="3" selection-start-column="0" selection-end-line="3" selection-end-column="0" />
|
597
|
-
<folding />
|
598
|
-
</state>
|
599
|
-
</provider>
|
600
|
-
</entry>
|
601
|
-
<entry file="file://$PROJECT_DIR$/lib/dvm/cli.rb">
|
602
|
-
<provider selected="true" editor-type-id="text-editor">
|
603
|
-
<state vertical-scroll-proportion="0.0" vertical-offset="1062" max-vertical-offset="2700">
|
604
|
-
<caret line="76" column="10" selection-start-line="76" selection-start-column="0" selection-end-line="77" selection-end-column="0" />
|
605
|
-
<folding />
|
606
|
-
</state>
|
607
|
-
</provider>
|
608
|
-
</entry>
|
609
|
-
<entry file="file://$PROJECT_DIR$/.gitignore">
|
610
|
-
<provider selected="true" editor-type-id="text-editor">
|
611
|
-
<state vertical-scroll-proportion="0.4347826" vertical-offset="0" max-vertical-offset="621">
|
612
|
-
<caret line="15" column="0" selection-start-line="15" selection-start-column="0" selection-end-line="15" selection-end-column="0" />
|
613
|
-
</state>
|
614
|
-
</provider>
|
615
|
-
</entry>
|
616
|
-
<entry file="file://$PROJECT_DIR$/Gemfile">
|
617
|
-
<provider selected="true" editor-type-id="text-editor">
|
618
|
-
<state vertical-scroll-proportion="0.057971016" vertical-offset="0" max-vertical-offset="621">
|
619
|
-
<caret line="2" column="48" selection-start-line="2" selection-start-column="48" selection-end-line="2" selection-end-column="48" />
|
620
|
-
<folding />
|
621
|
-
</state>
|
622
|
-
</provider>
|
623
|
-
</entry>
|
624
|
-
<entry file="file://$PROJECT_DIR$/Gemfile.lock">
|
625
|
-
<provider selected="true" editor-type-id="text-editor">
|
626
|
-
<state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="940">
|
627
|
-
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
628
|
-
</state>
|
629
|
-
</provider>
|
630
|
-
</entry>
|
631
|
-
<entry file="file://$PROJECT_DIR$/LICENSE.txt">
|
632
|
-
<provider selected="true" editor-type-id="text-editor">
|
633
|
-
<state vertical-scroll-proportion="0.07903403" vertical-offset="0" max-vertical-offset="911">
|
634
|
-
<caret line="4" column="25" selection-start-line="4" selection-start-column="25" selection-end-line="4" selection-end-column="25" />
|
635
|
-
</state>
|
636
|
-
</provider>
|
637
|
-
<provider editor-type-id="com.intellij.persistence.database.editor.CsvTableFileEditorProvider">
|
638
|
-
<state />
|
639
|
-
</provider>
|
640
|
-
</entry>
|
641
|
-
<entry file="file://$PROJECT_DIR$/README.md">
|
642
|
-
<provider selected="true" editor-type-id="text-editor">
|
643
|
-
<state vertical-scroll-proportion="0.23027718" vertical-offset="0" max-vertical-offset="938">
|
644
|
-
<caret line="12" column="17" selection-start-line="12" selection-start-column="17" selection-end-line="12" selection-end-column="17" />
|
645
|
-
</state>
|
646
|
-
</provider>
|
647
|
-
</entry>
|
648
|
-
<entry file="file://$PROJECT_DIR$/bin/dvm">
|
649
|
-
<provider selected="true" editor-type-id="text-editor">
|
650
|
-
<state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="198">
|
651
|
-
<caret line="3" column="0" selection-start-line="3" selection-start-column="0" selection-end-line="3" selection-end-column="0" />
|
652
|
-
<folding />
|
653
|
-
</state>
|
654
|
-
</provider>
|
655
|
-
</entry>
|
656
|
-
<entry file="file://$PROJECT_DIR$/lib/dvm/version.rb">
|
657
|
-
<provider selected="true" editor-type-id="text-editor">
|
658
|
-
<state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="162">
|
659
|
-
<caret line="3" column="0" selection-start-line="3" selection-start-column="0" selection-end-line="3" selection-end-column="0" />
|
660
|
-
<folding />
|
661
|
-
</state>
|
662
|
-
</provider>
|
663
|
-
</entry>
|
664
|
-
<entry file="file://$PROJECT_DIR$/dvm.gemspec">
|
665
|
-
<provider selected="true" editor-type-id="text-editor">
|
666
|
-
<state vertical-scroll-proportion="0.19189766" vertical-offset="0" max-vertical-offset="938">
|
667
|
-
<caret line="10" column="47" selection-start-line="10" selection-start-column="47" selection-end-line="10" selection-end-column="47" />
|
668
|
-
</state>
|
669
|
-
</provider>
|
670
|
-
</entry>
|
671
|
-
<entry file="file://$PROJECT_DIR$/lib/dvm.rb">
|
672
|
-
<provider selected="true" editor-type-id="text-editor">
|
673
|
-
<state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="198">
|
674
|
-
<caret line="3" column="10" selection-start-line="3" selection-start-column="10" selection-end-line="3" selection-end-column="10" />
|
675
|
-
<folding />
|
676
|
-
</state>
|
677
|
-
</provider>
|
678
|
-
</entry>
|
679
|
-
<entry file="file://$APPLICATION_PLUGINS_DIR$/ruby/rubystubs/rubystubs21/file.rb">
|
680
|
-
<provider selected="true" editor-type-id="text-editor">
|
681
|
-
<state vertical-scroll-proportion="0.31343284" vertical-offset="6834" max-vertical-offset="26802">
|
682
|
-
<caret line="396" column="39" selection-start-line="396" selection-start-column="39" selection-end-line="396" selection-end-column="39" />
|
683
|
-
<folding />
|
684
|
-
</state>
|
685
|
-
</provider>
|
686
|
-
</entry>
|
687
|
-
<entry file="file://$PROJECT_DIR$/../../local/rbenv/versions/2.1.2/lib/ruby/2.1.0/fileutils.rb">
|
688
|
-
<provider selected="true" editor-type-id="text-editor">
|
689
|
-
<state vertical-scroll-proportion="0.4498382" vertical-offset="6783" max-vertical-offset="31860">
|
690
|
-
<caret line="400" column="7" selection-start-line="400" selection-start-column="7" selection-end-line="400" selection-end-column="7" />
|
691
|
-
<folding />
|
692
|
-
</state>
|
693
|
-
</provider>
|
694
|
-
</entry>
|
695
|
-
<entry file="file://$APPLICATION_PLUGINS_DIR$/ruby/rubystubs/rubystubs21/object.rb">
|
696
|
-
<provider selected="true" editor-type-id="text-editor">
|
697
|
-
<state vertical-scroll-proportion="0.31343284" vertical-offset="6528" max-vertical-offset="17496">
|
698
|
-
<caret line="379" column="16" selection-start-line="379" selection-start-column="16" selection-end-line="379" selection-end-column="16" />
|
699
|
-
<folding />
|
700
|
-
</state>
|
701
|
-
</provider>
|
702
|
-
</entry>
|
703
|
-
<entry file="file://$PROJECT_DIR$/lib/dvm/cli.rb">
|
704
|
-
<provider selected="true" editor-type-id="text-editor">
|
705
|
-
<state vertical-scroll-proportion="0.7278583" vertical-offset="1600" max-vertical-offset="2880">
|
706
|
-
<caret line="114" column="31" selection-start-line="114" selection-start-column="31" selection-end-line="114" selection-end-column="31" />
|
707
|
-
<folding />
|
708
|
-
</state>
|
709
|
-
</provider>
|
710
|
-
</entry>
|
711
|
-
</component>
|
712
|
-
</project>
|
713
|
-
|
data/dvm.iml
DELETED
@@ -1,25 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<module type="RUBY_MODULE" version="4">
|
3
|
-
<component name="CompassSettings">
|
4
|
-
<option name="compassSupportEnabled" value="true" />
|
5
|
-
</component>
|
6
|
-
<component name="FacetManager">
|
7
|
-
<facet type="gem" name="Ruby Gem">
|
8
|
-
<configuration>
|
9
|
-
<option name="GEM_APP_ROOT_PATH" value="" />
|
10
|
-
<option name="GEM_APP_TEST_PATH" value="" />
|
11
|
-
<option name="GEM_APP_LIB_PATH" value="" />
|
12
|
-
</configuration>
|
13
|
-
</facet>
|
14
|
-
</component>
|
15
|
-
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
16
|
-
<exclude-output />
|
17
|
-
<content url="file://$MODULE_DIR$" />
|
18
|
-
<orderEntry type="jdk" jdkName="ruby-2.1.2-p95" jdkType="RUBY_SDK" />
|
19
|
-
<orderEntry type="sourceFolder" forTests="false" />
|
20
|
-
<orderEntry type="library" scope="PROVIDED" name="bundler (v1.6.5, ruby-2.1.2-p95) [gem]" level="application" />
|
21
|
-
<orderEntry type="library" scope="PROVIDED" name="colorize (v0.7.3, ruby-2.1.2-p95) [gem]" level="application" />
|
22
|
-
<orderEntry type="library" scope="PROVIDED" name="rake (v10.3.2, ruby-2.1.2-p95) [gem]" level="application" />
|
23
|
-
</component>
|
24
|
-
</module>
|
25
|
-
|