tagomatic 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.
- data/.document +5 -0
- data/.gitignore +22 -0
- data/.idea/.rakeTasks +7 -0
- data/.idea/ant.xml +7 -0
- data/.idea/compiler.xml +56 -0
- data/.idea/dictionaries/dl.xml +3 -0
- data/.idea/dynamic.xml +3 -0
- data/.idea/encodings.xml +5 -0
- data/.idea/inspectionProfiles/Project_Default.xml +192 -0
- data/.idea/inspectionProfiles/profiles_settings.xml +8 -0
- data/.idea/misc.xml +42 -0
- data/.idea/modules.xml +9 -0
- data/.idea/projectCodeStyle.xml +8 -0
- data/.idea/tagomatic.iml +13 -0
- data/.idea/templateLanguages.xml +3 -0
- data/.idea/uiDesigner.xml +125 -0
- data/.idea/vcs.xml +7 -0
- data/LICENSE +20 -0
- data/README.rdoc +25 -0
- data/Rakefile +53 -0
- data/VERSION +1 -0
- data/bin/tagomatic +5 -0
- data/lib/monkey/string.rb +10 -0
- data/lib/tagomatic/format_compiler.rb +44 -0
- data/lib/tagomatic/format_matcher.rb +35 -0
- data/lib/tagomatic/info_updater.rb +62 -0
- data/lib/tagomatic/local_options_matcher.rb +40 -0
- data/lib/tagomatic/logger.rb +20 -0
- data/lib/tagomatic/main.rb +68 -0
- data/lib/tagomatic/mp3info_wrapper.rb +14 -0
- data/lib/tagomatic/object_factory.rb +23 -0
- data/lib/tagomatic/options.rb +21 -0
- data/lib/tagomatic/options_parser.rb +90 -0
- data/lib/tagomatic/scanner.rb +101 -0
- data/lib/tagomatic/system_configuration.rb +64 -0
- data/lib/tagomatic/tagger.rb +190 -0
- data/tagomatic.gemspec +114 -0
- data/test/data/sorted/80s/Peter_Schilling/Fast_alles_konstruiert/01-Fast_alles_konstruiert.mp3 +0 -0
- data/test/data/sorted/80s/Peter_Schilling/Fast_alles_konstruiert/02-Dann_truegt_der_schein.mp3 +0 -0
- data/test/helper.rb +10 -0
- data/test/test_tagomatic.rb +7 -0
- metadata +142 -0
data/.document
ADDED
data/.gitignore
ADDED
data/.idea/.rakeTasks
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<Settings><!--This file was automatically generated by Ruby plugin.
|
3
|
+
You are allowed to:
|
4
|
+
1. Remove rake task
|
5
|
+
2. Add existing rake tasks
|
6
|
+
To add existing rake tasks automatically delete this file and reload the project.
|
7
|
+
--><RakeGroup description="" fullCmd="" taksId="rake"><RakeTask description="Remove rcov products for rcov" fullCmd="clobber_rcov" taksId="clobber_rcov" /><RakeTask description="Remove rdoc products" fullCmd="clobber_rdoc" taksId="clobber_rdoc" /><RakeTask description="Analyze code coverage with tests" fullCmd="rcov" taksId="rcov" /><RakeTask description="Build the rdoc HTML Files" fullCmd="rdoc" taksId="rdoc" /><RakeTask description="Force a rebuild of the RDOC files" fullCmd="rerdoc" taksId="rerdoc" /><RakeTask description="Run tests" fullCmd="test" taksId="test" /><RakeTask description="" fullCmd="clobber" taksId="clobber" /><RakeTask description="" fullCmd="default" taksId="default" /><RakeTask description="" fullCmd="rdoc/index.html" taksId="rdoc/index.html" /></RakeGroup></Settings>
|
data/.idea/ant.xml
ADDED
data/.idea/compiler.xml
ADDED
@@ -0,0 +1,56 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project relativePaths="false" version="4">
|
3
|
+
<component name="BuildJarProjectSettings">
|
4
|
+
<option name="BUILD_JARS_ON_MAKE" value="false" />
|
5
|
+
</component>
|
6
|
+
<component name="CompilerConfiguration">
|
7
|
+
<option name="DEFAULT_COMPILER" value="Javac" />
|
8
|
+
<option name="DEPLOY_AFTER_MAKE" value="0" />
|
9
|
+
<resourceExtensions>
|
10
|
+
<entry name=".+\.(properties|xml|html|dtd|tld)" />
|
11
|
+
<entry name=".+\.(gif|png|jpeg|jpg)" />
|
12
|
+
</resourceExtensions>
|
13
|
+
<wildcardResourcePatterns>
|
14
|
+
<entry name="?*.properties" />
|
15
|
+
<entry name="?*.xml" />
|
16
|
+
<entry name="?*.gif" />
|
17
|
+
<entry name="?*.png" />
|
18
|
+
<entry name="?*.jpeg" />
|
19
|
+
<entry name="?*.jpg" />
|
20
|
+
<entry name="?*.html" />
|
21
|
+
<entry name="?*.dtd" />
|
22
|
+
<entry name="?*.tld" />
|
23
|
+
<entry name="?*.ftl" />
|
24
|
+
</wildcardResourcePatterns>
|
25
|
+
</component>
|
26
|
+
<component name="EclipseCompilerSettings">
|
27
|
+
<option name="DEBUGGING_INFO" value="true" />
|
28
|
+
<option name="GENERATE_NO_WARNINGS" value="true" />
|
29
|
+
<option name="DEPRECATION" value="false" />
|
30
|
+
<option name="ADDITIONAL_OPTIONS_STRING" value="" />
|
31
|
+
<option name="MAXIMUM_HEAP_SIZE" value="128" />
|
32
|
+
</component>
|
33
|
+
<component name="JavacSettings">
|
34
|
+
<option name="DEBUGGING_INFO" value="true" />
|
35
|
+
<option name="GENERATE_NO_WARNINGS" value="false" />
|
36
|
+
<option name="DEPRECATION" value="true" />
|
37
|
+
<option name="ADDITIONAL_OPTIONS_STRING" value="" />
|
38
|
+
<option name="MAXIMUM_HEAP_SIZE" value="128" />
|
39
|
+
</component>
|
40
|
+
<component name="JikesSettings">
|
41
|
+
<option name="JIKES_PATH" value="" />
|
42
|
+
<option name="DEBUGGING_INFO" value="true" />
|
43
|
+
<option name="DEPRECATION" value="true" />
|
44
|
+
<option name="GENERATE_NO_WARNINGS" value="false" />
|
45
|
+
<option name="IS_EMACS_ERRORS_MODE" value="true" />
|
46
|
+
<option name="ADDITIONAL_OPTIONS_STRING" value="" />
|
47
|
+
</component>
|
48
|
+
<component name="RmicSettings">
|
49
|
+
<option name="IS_EANABLED" value="false" />
|
50
|
+
<option name="DEBUGGING_INFO" value="true" />
|
51
|
+
<option name="GENERATE_NO_WARNINGS" value="false" />
|
52
|
+
<option name="GENERATE_IIOP_STUBS" value="false" />
|
53
|
+
<option name="ADDITIONAL_OPTIONS_STRING" value="" />
|
54
|
+
</component>
|
55
|
+
</project>
|
56
|
+
|
data/.idea/dynamic.xml
ADDED
data/.idea/encodings.xml
ADDED
@@ -0,0 +1,192 @@
|
|
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="AccessStaticViaInstance" level="WARNING" enabled="false" />
|
6
|
+
<inspection_tool class="CanBeFinal" level="WARNING" enabled="false">
|
7
|
+
<option name="REPORT_CLASSES" value="false" />
|
8
|
+
<option name="REPORT_METHODS" value="false" />
|
9
|
+
<option name="REPORT_FIELDS" value="true" />
|
10
|
+
</inspection_tool>
|
11
|
+
<inspection_tool class="CheckDtdRefs" level="ERROR" enabled="false" />
|
12
|
+
<inspection_tool class="CheckEmptyScriptTag" level="WARNING" enabled="false" />
|
13
|
+
<inspection_tool class="CheckImageSize" level="WARNING" enabled="false" />
|
14
|
+
<inspection_tool class="CheckTagEmptyBody" level="WARNING" enabled="false" />
|
15
|
+
<inspection_tool class="CheckValidXmlInScriptTagBody" level="ERROR" enabled="false" />
|
16
|
+
<inspection_tool class="CheckXmlFileWithXercesValidator" level="ERROR" enabled="false" />
|
17
|
+
<inspection_tool class="ConstantConditions" level="WARNING" enabled="false">
|
18
|
+
<option name="SUGGEST_NULLABLE_ANNOTATIONS" value="false" />
|
19
|
+
<option name="DONT_REPORT_TRUE_ASSERT_STATEMENTS" value="false" />
|
20
|
+
</inspection_tool>
|
21
|
+
<inspection_tool class="CssInvalidElementInspection" level="ERROR" enabled="false" />
|
22
|
+
<inspection_tool class="CssInvalidShorthandPropertyValue" level="ERROR" enabled="false" />
|
23
|
+
<inspection_tool class="CssNegativeValueInspection" level="ERROR" enabled="false" />
|
24
|
+
<inspection_tool class="CssNoGenericFontName" level="WARNING" enabled="false" />
|
25
|
+
<inspection_tool class="CssOverwrittenProperties" level="WARNING" enabled="false" />
|
26
|
+
<inspection_tool class="CssRgbFunctionInspection" level="ERROR" enabled="false" />
|
27
|
+
<inspection_tool class="CssUnitlessNumber" level="WARNING" enabled="false" />
|
28
|
+
<inspection_tool class="CssUnknownProperty" level="WARNING" enabled="false">
|
29
|
+
<option name="myCustomPropertiesEnabled" value="true" />
|
30
|
+
<option name="myCustomPropertiesList">
|
31
|
+
<value>
|
32
|
+
<list size="8">
|
33
|
+
<item index="0" class="java.lang.String" itemvalue="min-size" />
|
34
|
+
<item index="1" class="java.lang.String" itemvalue="bg-color" />
|
35
|
+
<item index="2" class="java.lang.String" itemvalue="layout-data" />
|
36
|
+
<item index="3" class="java.lang.String" itemvalue="layout" />
|
37
|
+
<item index="4" class="java.lang.String" itemvalue="align" />
|
38
|
+
<item index="5" class="java.lang.String" itemvalue="bg-repeat" />
|
39
|
+
<item index="6" class="java.lang.String" itemvalue="bg-align" />
|
40
|
+
<item index="7" class="java.lang.String" itemvalue="bg-image" />
|
41
|
+
</list>
|
42
|
+
</value>
|
43
|
+
</option>
|
44
|
+
</inspection_tool>
|
45
|
+
<inspection_tool class="CssUnusedSymbolInspection" level="WARNING" enabled="false" />
|
46
|
+
<inspection_tool class="DefaultFileTemplate" level="WARNING" enabled="false">
|
47
|
+
<option name="CHECK_FILE_HEADER" value="true" />
|
48
|
+
<option name="CHECK_TRY_CATCH_SECTION" value="true" />
|
49
|
+
<option name="CHECK_METHOD_BODY" value="true" />
|
50
|
+
</inspection_tool>
|
51
|
+
<inspection_tool class="Dependency" level="ERROR" enabled="false" />
|
52
|
+
<inspection_tool class="Deprecation" level="WARNING" enabled="false" />
|
53
|
+
<inspection_tool class="DuplicateThrows" level="WARNING" enabled="false" />
|
54
|
+
<inspection_tool class="EmptyMethod" level="WARNING" enabled="false" />
|
55
|
+
<inspection_tool class="FieldCanBeLocal" level="WARNING" enabled="false" />
|
56
|
+
<inspection_tool class="HtmlExtraClosingTag" level="ERROR" enabled="false" />
|
57
|
+
<inspection_tool class="HtmlUnknownAttribute" level="WARNING" enabled="false">
|
58
|
+
<option name="myValues">
|
59
|
+
<value>
|
60
|
+
<list size="5">
|
61
|
+
<item index="0" class="java.lang.String" itemvalue="type" />
|
62
|
+
<item index="1" class="java.lang.String" itemvalue="wmode" />
|
63
|
+
<item index="2" class="java.lang.String" itemvalue="src" />
|
64
|
+
<item index="3" class="java.lang.String" itemvalue="width" />
|
65
|
+
<item index="4" class="java.lang.String" itemvalue="height" />
|
66
|
+
</list>
|
67
|
+
</value>
|
68
|
+
</option>
|
69
|
+
<option name="myCustomValuesEnabled" value="true" />
|
70
|
+
</inspection_tool>
|
71
|
+
<inspection_tool class="HtmlUnknownTag" level="WARNING" enabled="false">
|
72
|
+
<option name="myValues">
|
73
|
+
<value>
|
74
|
+
<list size="5">
|
75
|
+
<item index="0" class="java.lang.String" itemvalue="embed" />
|
76
|
+
<item index="1" class="java.lang.String" itemvalue="nobr" />
|
77
|
+
<item index="2" class="java.lang.String" itemvalue="noembed" />
|
78
|
+
<item index="3" class="java.lang.String" itemvalue="comment" />
|
79
|
+
<item index="4" class="java.lang.String" itemvalue="script" />
|
80
|
+
</list>
|
81
|
+
</value>
|
82
|
+
</option>
|
83
|
+
<option name="myCustomValuesEnabled" value="true" />
|
84
|
+
</inspection_tool>
|
85
|
+
<inspection_tool class="InconsistentResourceBundle" level="ERROR" enabled="false">
|
86
|
+
<option name="REPORT_MISSING_TRANSLATIONS" value="true" />
|
87
|
+
<option name="REPORT_INCONSISTENT_PROPERTIES" value="true" />
|
88
|
+
<option name="REPORT_DUPLICATED_PROPERTIES" value="true" />
|
89
|
+
</inspection_tool>
|
90
|
+
<inspection_tool class="JavaDoc" level="WARNING" enabled="false">
|
91
|
+
<option name="TOP_LEVEL_CLASS_OPTIONS">
|
92
|
+
<value>
|
93
|
+
<option name="ACCESS_JAVADOC_REQUIRED_FOR" value="none" />
|
94
|
+
<option name="REQUIRED_TAGS" value="" />
|
95
|
+
</value>
|
96
|
+
</option>
|
97
|
+
<option name="INNER_CLASS_OPTIONS">
|
98
|
+
<value>
|
99
|
+
<option name="ACCESS_JAVADOC_REQUIRED_FOR" value="none" />
|
100
|
+
<option name="REQUIRED_TAGS" value="" />
|
101
|
+
</value>
|
102
|
+
</option>
|
103
|
+
<option name="METHOD_OPTIONS">
|
104
|
+
<value>
|
105
|
+
<option name="ACCESS_JAVADOC_REQUIRED_FOR" value="none" />
|
106
|
+
<option name="REQUIRED_TAGS" value="@return@param@throws or @exception" />
|
107
|
+
</value>
|
108
|
+
</option>
|
109
|
+
<option name="FIELD_OPTIONS">
|
110
|
+
<value>
|
111
|
+
<option name="ACCESS_JAVADOC_REQUIRED_FOR" value="none" />
|
112
|
+
<option name="REQUIRED_TAGS" value="" />
|
113
|
+
</value>
|
114
|
+
</option>
|
115
|
+
<option name="IGNORE_DEPRECATED" value="false" />
|
116
|
+
<option name="IGNORE_JAVADOC_PERIOD" value="true" />
|
117
|
+
<option name="myAdditionalJavadocTags" value="" />
|
118
|
+
</inspection_tool>
|
119
|
+
<inspection_tool class="JavadocReference" level="ERROR" enabled="false" />
|
120
|
+
<inspection_tool class="NullableProblems" level="WARNING" enabled="false">
|
121
|
+
<option name="REPORT_NULLABLE_METHOD_OVERRIDES_NOTNULL" value="true" />
|
122
|
+
<option name="REPORT_NOT_ANNOTATED_METHOD_OVERRIDES_NOTNULL" value="true" />
|
123
|
+
<option name="REPORT_NOTNULL_PARAMETER_OVERRIDES_NULLABLE" value="true" />
|
124
|
+
<option name="REPORT_NOT_ANNOTATED_PARAMETER_OVERRIDES_NOTNULL" value="true" />
|
125
|
+
<option name="REPORT_NOT_ANNOTATED_GETTER" value="true" />
|
126
|
+
<option name="REPORT_NOT_ANNOTATED_SETTER_PARAMETER" value="true" />
|
127
|
+
<option name="REPORT_ANNOTATION_NOT_PROPAGATED_TO_OVERRIDERS" value="true" />
|
128
|
+
</inspection_tool>
|
129
|
+
<inspection_tool class="RedundantArrayCreation" level="WARNING" enabled="false" />
|
130
|
+
<inspection_tool class="RedundantCast" level="WARNING" enabled="false" />
|
131
|
+
<inspection_tool class="RedundantThrows" level="WARNING" enabled="false" />
|
132
|
+
<inspection_tool class="RedundantTypeArguments" level="WARNING" enabled="false" />
|
133
|
+
<inspection_tool class="RequiredAttributes" level="WARNING" enabled="false">
|
134
|
+
<option name="myAdditionalRequiredHtmlAttributes" value="" />
|
135
|
+
</inspection_tool>
|
136
|
+
<inspection_tool class="SameParameterValue" level="WARNING" enabled="false" />
|
137
|
+
<inspection_tool class="SameReturnValue" level="WARNING" enabled="false" />
|
138
|
+
<inspection_tool class="SillyAssignment" level="WARNING" enabled="false" />
|
139
|
+
<inspection_tool class="SuspiciousMethodCalls" level="WARNING" enabled="false">
|
140
|
+
<option name="REPORT_CONVERTIBLE_METHOD_CALLS" value="true" />
|
141
|
+
</inspection_tool>
|
142
|
+
<inspection_tool class="SuspiciousNameCombination" level="WARNING" enabled="false">
|
143
|
+
<group names="x,width,left,right" />
|
144
|
+
<group names="y,height,top,bottom" />
|
145
|
+
</inspection_tool>
|
146
|
+
<inspection_tool class="UNCHECKED_WARNING" level="WARNING" enabled="false" />
|
147
|
+
<inspection_tool class="UNUSED_IMPORT" level="WARNING" enabled="false" />
|
148
|
+
<inspection_tool class="UNUSED_SYMBOL" level="WARNING" enabled="false">
|
149
|
+
<option name="LOCAL_VARIABLE" value="true" />
|
150
|
+
<option name="FIELD" value="true" />
|
151
|
+
<option name="METHOD" value="true" />
|
152
|
+
<option name="CLASS" value="true" />
|
153
|
+
<option name="PARAMETER" value="true" />
|
154
|
+
<option name="REPORT_PARAMETER_FOR_PUBLIC_METHODS" value="true" />
|
155
|
+
<option name="INJECTION_ANNOS">
|
156
|
+
<value>
|
157
|
+
<list size="0" />
|
158
|
+
</value>
|
159
|
+
</option>
|
160
|
+
</inspection_tool>
|
161
|
+
<inspection_tool class="UnnecessaryModuleDependencyInspection" level="WARNING" enabled="false" />
|
162
|
+
<inspection_tool class="UnresolvedPropertyKey" level="ERROR" enabled="false" />
|
163
|
+
<inspection_tool class="UnusedAssignment" level="WARNING" enabled="false">
|
164
|
+
<option name="REPORT_PREFIX_EXPRESSIONS" value="false" />
|
165
|
+
<option name="REPORT_POSTFIX_EXPRESSIONS" value="true" />
|
166
|
+
<option name="REPORT_REDUNDANT_INITIALIZER" value="true" />
|
167
|
+
</inspection_tool>
|
168
|
+
<inspection_tool class="UnusedDeclaration" level="WARNING" enabled="false">
|
169
|
+
<option name="ADD_MAINS_TO_ENTRIES" value="true" />
|
170
|
+
<option name="ADD_APPLET_TO_ENTRIES" value="true" />
|
171
|
+
<option name="ADD_SERVLET_TO_ENTRIES" value="true" />
|
172
|
+
<option name="ADD_NONJAVA_TO_ENTRIES" value="true" />
|
173
|
+
<option name="ADDITIONAL_ANNOTATIONS">
|
174
|
+
<value>
|
175
|
+
<list size="0" />
|
176
|
+
</value>
|
177
|
+
</option>
|
178
|
+
<option name="ADD_JUNIT_TO_ENTRIES" value="true" />
|
179
|
+
</inspection_tool>
|
180
|
+
<inspection_tool class="UnusedMessageFormatParameter" level="WARNING" enabled="false" />
|
181
|
+
<inspection_tool class="UnusedParameters" level="WARNING" enabled="false" />
|
182
|
+
<inspection_tool class="UnusedReturnValue" level="WARNING" enabled="false" />
|
183
|
+
<inspection_tool class="WeakerAccess" level="WARNING" enabled="false">
|
184
|
+
<option name="SUGGEST_PACKAGE_LOCAL_FOR_MEMBERS" value="true" />
|
185
|
+
<option name="SUGGEST_PACKAGE_LOCAL_FOR_TOP_CLASSES" value="true" />
|
186
|
+
<option name="SUGGEST_PRIVATE_FOR_INNERS" value="false" />
|
187
|
+
</inspection_tool>
|
188
|
+
<inspection_tool class="WrongPackageStatement" level="ERROR" enabled="false" />
|
189
|
+
<inspection_tool class="XmlWrongClosingTagName" level="ERROR" enabled="false" />
|
190
|
+
<inspection_tool class="XmlWrongRootElement" level="ERROR" enabled="false" />
|
191
|
+
</profile>
|
192
|
+
</component>
|
data/.idea/misc.xml
ADDED
@@ -0,0 +1,42 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project relativePaths="false" version="4">
|
3
|
+
<component name="DependencyValidationManager">
|
4
|
+
<option name="SKIP_IMPORT_STATEMENTS" value="false" />
|
5
|
+
</component>
|
6
|
+
<component name="JavadocGenerationManager">
|
7
|
+
<option name="OUTPUT_DIRECTORY" />
|
8
|
+
<option name="OPTION_SCOPE" value="protected" />
|
9
|
+
<option name="OPTION_HIERARCHY" value="true" />
|
10
|
+
<option name="OPTION_NAVIGATOR" value="true" />
|
11
|
+
<option name="OPTION_INDEX" value="true" />
|
12
|
+
<option name="OPTION_SEPARATE_INDEX" value="true" />
|
13
|
+
<option name="OPTION_DOCUMENT_TAG_USE" value="false" />
|
14
|
+
<option name="OPTION_DOCUMENT_TAG_AUTHOR" value="false" />
|
15
|
+
<option name="OPTION_DOCUMENT_TAG_VERSION" value="false" />
|
16
|
+
<option name="OPTION_DOCUMENT_TAG_DEPRECATED" value="true" />
|
17
|
+
<option name="OPTION_DEPRECATED_LIST" value="true" />
|
18
|
+
<option name="OTHER_OPTIONS" value="" />
|
19
|
+
<option name="HEAP_SIZE" />
|
20
|
+
<option name="LOCALE" />
|
21
|
+
<option name="OPEN_IN_BROWSER" value="true" />
|
22
|
+
</component>
|
23
|
+
<component name="ProjectDetails">
|
24
|
+
<option name="projectName" value="tagomatic" />
|
25
|
+
</component>
|
26
|
+
<component name="ProjectFileVersion" converted="true">
|
27
|
+
<converter id="ror-modules" />
|
28
|
+
<converter id="SelenaRunConfToDiana" />
|
29
|
+
</component>
|
30
|
+
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_3" assert-keyword="false" jdk-15="false" project-jdk-name="Ruby SDK 1.8.7 (/usr/bin/ruby)" project-jdk-type="RUBY_SDK" />
|
31
|
+
<component name="ResourceManagerContainer">
|
32
|
+
<option name="myResourceBundles">
|
33
|
+
<value>
|
34
|
+
<list size="0" />
|
35
|
+
</value>
|
36
|
+
</option>
|
37
|
+
</component>
|
38
|
+
<component name="SvnBranchConfigurationManager">
|
39
|
+
<option name="mySupportsUserInfoFilter" value="true" />
|
40
|
+
</component>
|
41
|
+
</project>
|
42
|
+
|
data/.idea/modules.xml
ADDED
@@ -0,0 +1,9 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project relativePaths="false" version="4">
|
3
|
+
<component name="ProjectModuleManager">
|
4
|
+
<modules>
|
5
|
+
<module fileurl="file://$PROJECT_DIR$/.idea/tagomatic.iml" filepath="$PROJECT_DIR$/.idea/tagomatic.iml" />
|
6
|
+
</modules>
|
7
|
+
</component>
|
8
|
+
</project>
|
9
|
+
|
data/.idea/tagomatic.iml
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<module relativePaths="false" type="RUBY_MODULE" version="4">
|
3
|
+
<component name="GemRequirementsHolder" version="2" />
|
4
|
+
<component name="NewModuleRootManager" inherit-compiler-output="false">
|
5
|
+
<content url="file://$MODULE_DIR$" />
|
6
|
+
<orderEntry type="inheritedJdk" />
|
7
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
8
|
+
</component>
|
9
|
+
<component name="RModuleSettingsStorage">
|
10
|
+
<RMODULE_SETTINGS_STORAGE_ID NAME="NUMBER" VALUE="0" />
|
11
|
+
</component>
|
12
|
+
</module>
|
13
|
+
|
@@ -0,0 +1,125 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project relativePaths="false" version="4">
|
3
|
+
<component name="Palette2">
|
4
|
+
<group name="Swing">
|
5
|
+
<item class="com.intellij.uiDesigner.HSpacer" tooltip-text="Horizontal Spacer" icon="/com/intellij/uiDesigner/icons/hspacer.png" removable="false" auto-create-binding="false" can-attach-label="false">
|
6
|
+
<default-constraints vsize-policy="1" hsize-policy="6" anchor="0" fill="1" />
|
7
|
+
</item>
|
8
|
+
<item class="com.intellij.uiDesigner.VSpacer" tooltip-text="Vertical Spacer" icon="/com/intellij/uiDesigner/icons/vspacer.png" removable="false" auto-create-binding="false" can-attach-label="false">
|
9
|
+
<default-constraints vsize-policy="6" hsize-policy="1" anchor="0" fill="2" />
|
10
|
+
</item>
|
11
|
+
<item class="javax.swing.JPanel" icon="/com/intellij/uiDesigner/icons/panel.png" removable="false" auto-create-binding="false" can-attach-label="false">
|
12
|
+
<default-constraints vsize-policy="3" hsize-policy="3" anchor="0" fill="3" />
|
13
|
+
</item>
|
14
|
+
<item class="javax.swing.JScrollPane" icon="/com/intellij/uiDesigner/icons/scrollPane.png" removable="false" auto-create-binding="false" can-attach-label="true">
|
15
|
+
<default-constraints vsize-policy="7" hsize-policy="7" anchor="0" fill="3" />
|
16
|
+
</item>
|
17
|
+
<item class="javax.swing.JButton" icon="/com/intellij/uiDesigner/icons/button.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
18
|
+
<default-constraints vsize-policy="0" hsize-policy="3" anchor="0" fill="1" />
|
19
|
+
<initial-values>
|
20
|
+
<property name="text" value="Button" />
|
21
|
+
</initial-values>
|
22
|
+
</item>
|
23
|
+
<item class="javax.swing.JRadioButton" icon="/com/intellij/uiDesigner/icons/radioButton.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
24
|
+
<default-constraints vsize-policy="0" hsize-policy="3" anchor="8" fill="0" />
|
25
|
+
<initial-values>
|
26
|
+
<property name="text" value="RadioButton" />
|
27
|
+
</initial-values>
|
28
|
+
</item>
|
29
|
+
<item class="javax.swing.JCheckBox" icon="/com/intellij/uiDesigner/icons/checkBox.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
30
|
+
<default-constraints vsize-policy="0" hsize-policy="3" anchor="8" fill="0" />
|
31
|
+
<initial-values>
|
32
|
+
<property name="text" value="CheckBox" />
|
33
|
+
</initial-values>
|
34
|
+
</item>
|
35
|
+
<item class="javax.swing.JLabel" icon="/com/intellij/uiDesigner/icons/label.png" removable="false" auto-create-binding="false" can-attach-label="false">
|
36
|
+
<default-constraints vsize-policy="0" hsize-policy="0" anchor="8" fill="0" />
|
37
|
+
<initial-values>
|
38
|
+
<property name="text" value="Label" />
|
39
|
+
</initial-values>
|
40
|
+
</item>
|
41
|
+
<item class="javax.swing.JTextField" icon="/com/intellij/uiDesigner/icons/textField.png" removable="false" auto-create-binding="true" can-attach-label="true">
|
42
|
+
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1">
|
43
|
+
<preferred-size width="150" height="-1" />
|
44
|
+
</default-constraints>
|
45
|
+
</item>
|
46
|
+
<item class="javax.swing.JPasswordField" icon="/com/intellij/uiDesigner/icons/passwordField.png" removable="false" auto-create-binding="true" can-attach-label="true">
|
47
|
+
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1">
|
48
|
+
<preferred-size width="150" height="-1" />
|
49
|
+
</default-constraints>
|
50
|
+
</item>
|
51
|
+
<item class="javax.swing.JFormattedTextField" icon="/com/intellij/uiDesigner/icons/formattedTextField.png" removable="false" auto-create-binding="true" can-attach-label="true">
|
52
|
+
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1">
|
53
|
+
<preferred-size width="150" height="-1" />
|
54
|
+
</default-constraints>
|
55
|
+
</item>
|
56
|
+
<item class="javax.swing.JTextArea" icon="/com/intellij/uiDesigner/icons/textArea.png" removable="false" auto-create-binding="true" can-attach-label="true">
|
57
|
+
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
|
58
|
+
<preferred-size width="150" height="50" />
|
59
|
+
</default-constraints>
|
60
|
+
</item>
|
61
|
+
<item class="javax.swing.JTextPane" icon="/com/intellij/uiDesigner/icons/textPane.png" removable="false" auto-create-binding="true" can-attach-label="true">
|
62
|
+
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
|
63
|
+
<preferred-size width="150" height="50" />
|
64
|
+
</default-constraints>
|
65
|
+
</item>
|
66
|
+
<item class="javax.swing.JEditorPane" icon="/com/intellij/uiDesigner/icons/editorPane.png" removable="false" auto-create-binding="true" can-attach-label="true">
|
67
|
+
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
|
68
|
+
<preferred-size width="150" height="50" />
|
69
|
+
</default-constraints>
|
70
|
+
</item>
|
71
|
+
<item class="javax.swing.JComboBox" icon="/com/intellij/uiDesigner/icons/comboBox.png" removable="false" auto-create-binding="true" can-attach-label="true">
|
72
|
+
<default-constraints vsize-policy="0" hsize-policy="2" anchor="8" fill="1" />
|
73
|
+
</item>
|
74
|
+
<item class="javax.swing.JTable" icon="/com/intellij/uiDesigner/icons/table.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
75
|
+
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
|
76
|
+
<preferred-size width="150" height="50" />
|
77
|
+
</default-constraints>
|
78
|
+
</item>
|
79
|
+
<item class="javax.swing.JList" icon="/com/intellij/uiDesigner/icons/list.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
80
|
+
<default-constraints vsize-policy="6" hsize-policy="2" anchor="0" fill="3">
|
81
|
+
<preferred-size width="150" height="50" />
|
82
|
+
</default-constraints>
|
83
|
+
</item>
|
84
|
+
<item class="javax.swing.JTree" icon="/com/intellij/uiDesigner/icons/tree.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
85
|
+
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
|
86
|
+
<preferred-size width="150" height="50" />
|
87
|
+
</default-constraints>
|
88
|
+
</item>
|
89
|
+
<item class="javax.swing.JTabbedPane" icon="/com/intellij/uiDesigner/icons/tabbedPane.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
90
|
+
<default-constraints vsize-policy="3" hsize-policy="3" anchor="0" fill="3">
|
91
|
+
<preferred-size width="200" height="200" />
|
92
|
+
</default-constraints>
|
93
|
+
</item>
|
94
|
+
<item class="javax.swing.JSplitPane" icon="/com/intellij/uiDesigner/icons/splitPane.png" removable="false" auto-create-binding="false" can-attach-label="false">
|
95
|
+
<default-constraints vsize-policy="3" hsize-policy="3" anchor="0" fill="3">
|
96
|
+
<preferred-size width="200" height="200" />
|
97
|
+
</default-constraints>
|
98
|
+
</item>
|
99
|
+
<item class="javax.swing.JSpinner" icon="/com/intellij/uiDesigner/icons/spinner.png" removable="false" auto-create-binding="true" can-attach-label="true">
|
100
|
+
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1" />
|
101
|
+
</item>
|
102
|
+
<item class="javax.swing.JSlider" icon="/com/intellij/uiDesigner/icons/slider.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
103
|
+
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1" />
|
104
|
+
</item>
|
105
|
+
<item class="javax.swing.JSeparator" icon="/com/intellij/uiDesigner/icons/separator.png" removable="false" auto-create-binding="false" can-attach-label="false">
|
106
|
+
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3" />
|
107
|
+
</item>
|
108
|
+
<item class="javax.swing.JProgressBar" icon="/com/intellij/uiDesigner/icons/progressbar.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
109
|
+
<default-constraints vsize-policy="0" hsize-policy="6" anchor="0" fill="1" />
|
110
|
+
</item>
|
111
|
+
<item class="javax.swing.JToolBar" icon="/com/intellij/uiDesigner/icons/toolbar.png" removable="false" auto-create-binding="false" can-attach-label="false">
|
112
|
+
<default-constraints vsize-policy="0" hsize-policy="6" anchor="0" fill="1">
|
113
|
+
<preferred-size width="-1" height="20" />
|
114
|
+
</default-constraints>
|
115
|
+
</item>
|
116
|
+
<item class="javax.swing.JToolBar$Separator" icon="/com/intellij/uiDesigner/icons/toolbarSeparator.png" removable="false" auto-create-binding="false" can-attach-label="false">
|
117
|
+
<default-constraints vsize-policy="0" hsize-policy="0" anchor="0" fill="1" />
|
118
|
+
</item>
|
119
|
+
<item class="javax.swing.JScrollBar" icon="/com/intellij/uiDesigner/icons/scrollbar.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
120
|
+
<default-constraints vsize-policy="6" hsize-policy="0" anchor="0" fill="2" />
|
121
|
+
</item>
|
122
|
+
</group>
|
123
|
+
</component>
|
124
|
+
</project>
|
125
|
+
|