cron-spec 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.document +5 -0
- data/.idea/.name +1 -0
- data/.idea/.rakeTasks +7 -0
- data/.idea/cron-spec.iml +40 -0
- data/.idea/encodings.xml +5 -0
- data/.idea/misc.xml +8 -0
- data/.idea/modules.xml +9 -0
- data/.idea/vcs.xml +7 -0
- data/.idea/workspace.xml +347 -0
- data/.rspec +1 -0
- data/.rvmrc +6 -0
- data/Gemfile +13 -0
- data/Gemfile.lock +28 -0
- data/LICENSE.txt +20 -0
- data/README.rdoc +19 -0
- data/Rakefile +50 -0
- data/VERSION +1 -0
- data/cron-spec.gemspec +94 -0
- data/lib/cron-spec.rb +12 -0
- data/lib/cron-spec/cron_specification.rb +70 -0
- data/lib/cron-spec/cron_specification_factory.rb +39 -0
- data/lib/cron-spec/cron_value_base.rb +19 -0
- data/lib/cron-spec/day_factory.rb +12 -0
- data/lib/cron-spec/dow_factory.rb +33 -0
- data/lib/cron-spec/hour_factory.rb +16 -0
- data/lib/cron-spec/minute_factory.rb +16 -0
- data/lib/cron-spec/month_factory.rb +32 -0
- data/lib/cron-spec/range_cron_value.rb +23 -0
- data/lib/cron-spec/single_value_cron_value.rb +21 -0
- data/lib/cron-spec/step_cron_value.rb +21 -0
- data/lib/cron-spec/wildcard_cron_value.rb +15 -0
- data/spec/cron_specification_spec.rb +119 -0
- data/spec/range_cron_value_spec.rb +18 -0
- data/spec/single_value_cron_value_spec.rb +18 -0
- data/spec/spec_helper.rb +12 -0
- data/spec/step_cron_value_spec.rb +17 -0
- data/spec/wildcard_cron_value_spec.rb +13 -0
- metadata +164 -0
data/.document
ADDED
data/.idea/.name
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
cron-spec
|
data/.idea/.rakeTasks
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<Settings><!--This file was automatically generated by Ruby plugin.
|
|
3
|
+
You are allowed to:
|
|
4
|
+
1. Remove rake task
|
|
5
|
+
2. Add existing rake tasks
|
|
6
|
+
To add existing rake tasks automatically delete this file and reload the project.
|
|
7
|
+
--><RakeGroup description="" fullCmd="" taksId="rake"><RakeTask description="Build gem into pkg/" fullCmd="build" taksId="build" /><RakeTask description="Remove rdoc products" fullCmd="clobber_rdoc" taksId="clobber_rdoc" /><RakeTask description="Start IRB with all runtime dependencies loaded" fullCmd="console[script]" taksId="console[script]" /><RakeGroup description="" fullCmd="" taksId="gemcutter"><RakeTask description="Release gem to Gemcutter" fullCmd="gemcutter:release" taksId="release" /></RakeGroup><RakeTask description="Generate and validate gemspec" fullCmd="gemspec" taksId="gemspec" /><RakeGroup description="" fullCmd="" taksId="gemspec"><RakeTask description="Display the gemspec for debugging purposes, as jeweler knows it (not from the filesystem)" fullCmd="gemspec:debug" taksId="debug" /><RakeTask description="Regenreate the gemspec on the filesystem" fullCmd="gemspec:generate" taksId="generate" /><RakeTask description="Regenerate and validate gemspec, and then commits and pushes to git" fullCmd="gemspec:release" taksId="release" /><RakeTask description="Validates the gemspec on the filesystem" fullCmd="gemspec:validate" taksId="validate" /></RakeGroup><RakeGroup description="" fullCmd="" taksId="git"><RakeTask description="Tag and push release to git" fullCmd="git:release" taksId="release" /></RakeGroup><RakeTask description="Build and install gem using `gem install`" fullCmd="install" taksId="install" /><RakeTask description="Run RSpec code examples" fullCmd="rcov" taksId="rcov" /><RakeTask description="Build the rdoc HTML Files" fullCmd="rdoc" taksId="rdoc" /><RakeTask description="Release gem" fullCmd="release" taksId="release" /><RakeTask description="Force a rebuild of the RDOC files" fullCmd="rerdoc" taksId="rerdoc" /><RakeTask description="Run RSpec code examples" fullCmd="spec" taksId="spec" /><RakeTask description="Displays the current version" fullCmd="version" taksId="version" /><RakeGroup description="" fullCmd="" taksId="version"><RakeGroup description="" fullCmd="" taksId="bump"><RakeTask description="Bump the major version by 1" fullCmd="version:bump:major" taksId="major" /><RakeTask description="Bump the a minor version by 1" fullCmd="version:bump:minor" taksId="minor" /><RakeTask description="Bump the patch version by 1" fullCmd="version:bump:patch" taksId="patch" /></RakeGroup><RakeTask description="Writes out an explicit version" fullCmd="version:write" taksId="write" /></RakeGroup><RakeTask description="" fullCmd="clobber" taksId="clobber" /><RakeTask description="" fullCmd="console" taksId="console" /><RakeTask description="" fullCmd="default" taksId="default" /><RakeTask description="" fullCmd="gemspec_required" taksId="gemspec_required" /><RakeTask description="" fullCmd="rdoc/index.html" taksId="rdoc/index.html" /><RakeTask description="" fullCmd="version_required" taksId="version_required" /></RakeGroup></Settings>
|
data/.idea/cron-spec.iml
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<module type="RUBY_MODULE" version="4">
|
|
3
|
+
<component name="GemRequirementsHolder" version="3">
|
|
4
|
+
<requirement>
|
|
5
|
+
<requirement>
|
|
6
|
+
<dependency name="bundler" version="1.0.0" bound="LATEST_IN_BRANCH" git="false" path="false" doRequire="true" />
|
|
7
|
+
</requirement>
|
|
8
|
+
<source from="Gemfile" />
|
|
9
|
+
</requirement>
|
|
10
|
+
<requirement>
|
|
11
|
+
<requirement>
|
|
12
|
+
<dependency name="jeweler" version="1.5.2" bound="LATEST_IN_BRANCH" git="false" path="false" doRequire="true" />
|
|
13
|
+
</requirement>
|
|
14
|
+
<source from="Gemfile" />
|
|
15
|
+
</requirement>
|
|
16
|
+
<requirement>
|
|
17
|
+
<requirement>
|
|
18
|
+
<dependency name="rcov" version="0" bound="GREATER_OR_EQUAL" git="false" path="false" doRequire="true" />
|
|
19
|
+
</requirement>
|
|
20
|
+
<source from="Gemfile" />
|
|
21
|
+
</requirement>
|
|
22
|
+
<requirement>
|
|
23
|
+
<requirement>
|
|
24
|
+
<dependency name="rspec" version="2.1.0" bound="LATEST_IN_BRANCH" git="false" path="false" doRequire="true" />
|
|
25
|
+
</requirement>
|
|
26
|
+
<source from="Gemfile" />
|
|
27
|
+
</requirement>
|
|
28
|
+
</component>
|
|
29
|
+
<component name="NewModuleRootManager">
|
|
30
|
+
<content url="file://$MODULE_DIR$" />
|
|
31
|
+
<orderEntry type="inheritedJdk" />
|
|
32
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
|
33
|
+
<orderEntry type="library" scope="PROVIDED" name="[gem] bundler (v1.0.2, /Users/dave/.rvm/gems/ruby-1.9.2-p0@rails3/gems/bundler-1.0.2)" level="application" />
|
|
34
|
+
<orderEntry type="library" scope="PROVIDED" name="[gem] jeweler (v1.5.2, /Users/dave/.rvm/gems/ruby-1.9.2-p0@rails3/gems/jeweler-1.5.2)" level="application" />
|
|
35
|
+
<orderEntry type="library" scope="PROVIDED" name="[gem] rcov (v0.9.8, /Users/dave/.rvm/gems/ruby-1.9.2-p0@rails3/gems/rcov-0.9.8)" level="application" />
|
|
36
|
+
<orderEntry type="library" scope="PROVIDED" name="[gem] git (v1.2.5, /Users/dave/.rvm/gems/ruby-1.9.2-p0@rails3/gems/git-1.2.5)" level="application" />
|
|
37
|
+
<orderEntry type="library" scope="PROVIDED" name="[gem] rake (v0.8.7, /Users/dave/.rvm/gems/ruby-1.9.2-p0@rails3/gems/rake-0.8.7)" level="application" />
|
|
38
|
+
</component>
|
|
39
|
+
</module>
|
|
40
|
+
|
data/.idea/encodings.xml
ADDED
data/.idea/misc.xml
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="DependencyValidationManager">
|
|
4
|
+
<option name="SKIP_IMPORT_STATEMENTS" value="false" />
|
|
5
|
+
</component>
|
|
6
|
+
<component name="ProjectRootManager" version="2" project-jdk-name="Ruby SDK 1.9.2 [rails3] (/Users/dave/.rvm/rubies/ruby-1.9.2-p0/bin/ruby)" project-jdk-type="RUBY_SDK" />
|
|
7
|
+
</project>
|
|
8
|
+
|
data/.idea/modules.xml
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
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/cron-spec.iml" filepath="$PROJECT_DIR$/.idea/cron-spec.iml" />
|
|
6
|
+
</modules>
|
|
7
|
+
</component>
|
|
8
|
+
</project>
|
|
9
|
+
|
data/.idea/vcs.xml
ADDED
data/.idea/workspace.xml
ADDED
|
@@ -0,0 +1,347 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="ChangeListManager">
|
|
4
|
+
<list default="true" id="5a15dc32-6ade-4091-9f48-a1ce07241214" name="Default" comment="" />
|
|
5
|
+
<ignored path="cron-spec.iws" />
|
|
6
|
+
<ignored path=".idea/workspace.xml" />
|
|
7
|
+
<option name="TRACKING_ENABLED" value="true" />
|
|
8
|
+
<option name="SHOW_DIALOG" value="false" />
|
|
9
|
+
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
|
10
|
+
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
|
11
|
+
<option name="LAST_RESOLUTION" value="IGNORE" />
|
|
12
|
+
</component>
|
|
13
|
+
<component name="ChangesViewManager" flattened_view="true" show_ignored="false" />
|
|
14
|
+
<component name="CoverageDataManager" choice="3" />
|
|
15
|
+
<component name="CreatePatchCommitExecutor">
|
|
16
|
+
<option name="PATCH_PATH" value="" />
|
|
17
|
+
<option name="REVERSE_PATCH" value="false" />
|
|
18
|
+
</component>
|
|
19
|
+
<component name="DaemonCodeAnalyzer">
|
|
20
|
+
<disable_hints />
|
|
21
|
+
</component>
|
|
22
|
+
<component name="FavoritesManager">
|
|
23
|
+
<favorites_list name="cron-spec" />
|
|
24
|
+
</component>
|
|
25
|
+
<component name="FileEditorManager">
|
|
26
|
+
<leaf>
|
|
27
|
+
<file leaf-file-name="Rakefile" pinned="false" current="false" current-in-tab="false">
|
|
28
|
+
<entry file="file://$PROJECT_DIR$/Rakefile">
|
|
29
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
30
|
+
<state line="26" column="55" selection-start="1012" selection-end="1012" vertical-scroll-proportion="-14.444445">
|
|
31
|
+
<folding />
|
|
32
|
+
</state>
|
|
33
|
+
</provider>
|
|
34
|
+
</entry>
|
|
35
|
+
</file>
|
|
36
|
+
<file leaf-file-name="single_value_cron_value_spec.rb" pinned="false" current="false" current-in-tab="false">
|
|
37
|
+
<entry file="file://$PROJECT_DIR$/spec/single_value_cron_value_spec.rb">
|
|
38
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
39
|
+
<state line="1" column="0" selection-start="22" selection-end="22" vertical-scroll-proportion="-0.5555556">
|
|
40
|
+
<folding />
|
|
41
|
+
</state>
|
|
42
|
+
</provider>
|
|
43
|
+
</entry>
|
|
44
|
+
</file>
|
|
45
|
+
<file leaf-file-name="cron_specification_spec.rb" pinned="false" current="true" current-in-tab="true">
|
|
46
|
+
<entry file="file://$PROJECT_DIR$/spec/cron_specification_spec.rb">
|
|
47
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
48
|
+
<state line="1" column="0" selection-start="22" selection-end="22" vertical-scroll-proportion="0.028571429">
|
|
49
|
+
<folding />
|
|
50
|
+
</state>
|
|
51
|
+
</provider>
|
|
52
|
+
</entry>
|
|
53
|
+
</file>
|
|
54
|
+
</leaf>
|
|
55
|
+
</component>
|
|
56
|
+
<component name="FindManager">
|
|
57
|
+
<FindUsagesManager>
|
|
58
|
+
<setting name="OPEN_NEW_TAB" value="false" />
|
|
59
|
+
</FindUsagesManager>
|
|
60
|
+
</component>
|
|
61
|
+
<component name="Git.Settings">
|
|
62
|
+
<option name="CHECKOUT_INCLUDE_TAGS" value="false" />
|
|
63
|
+
<option name="UPDATE_CHANGES_POLICY" value="STASH" />
|
|
64
|
+
</component>
|
|
65
|
+
<component name="IdeDocumentHistory">
|
|
66
|
+
<option name="changedFiles">
|
|
67
|
+
<list>
|
|
68
|
+
<option value="$PROJECT_DIR$/lib/cron-spec/step_cron_value.rb" />
|
|
69
|
+
<option value="$PROJECT_DIR$/lib/cron-spec/wildcard_cron_value.rb" />
|
|
70
|
+
<option value="$PROJECT_DIR$/lib/cron-spec/cron_specification_factory.rb" />
|
|
71
|
+
<option value="$PROJECT_DIR$/lib/cron-spec/cron_specification.rb" />
|
|
72
|
+
<option value="$PROJECT_DIR$/lib/cron-spec.rb" />
|
|
73
|
+
<option value="$PROJECT_DIR$/spec/cron_specification_spec.rb" />
|
|
74
|
+
<option value="$PROJECT_DIR$/spec/range_cron_value_spec.rb" />
|
|
75
|
+
<option value="$PROJECT_DIR$/spec/single_value_cron_value_spec.rb" />
|
|
76
|
+
<option value="$PROJECT_DIR$/spec/step_cron_value_spec.rb" />
|
|
77
|
+
<option value="$PROJECT_DIR$/spec/wildcard_cron_value_spec.rb" />
|
|
78
|
+
<option value="$PROJECT_DIR$/lib/cron-spec/day_factory.rb" />
|
|
79
|
+
<option value="$PROJECT_DIR$/lib/cron-spec/dow_factory.rb" />
|
|
80
|
+
<option value="$PROJECT_DIR$/lib/cron-spec/hour_factory.rb" />
|
|
81
|
+
<option value="$PROJECT_DIR$/lib/cron-spec/minute_factory.rb" />
|
|
82
|
+
<option value="$PROJECT_DIR$/lib/cron-spec/month_factory.rb" />
|
|
83
|
+
<option value="$PROJECT_DIR$/Rakefile" />
|
|
84
|
+
</list>
|
|
85
|
+
</option>
|
|
86
|
+
</component>
|
|
87
|
+
<component name="ProjectLevelVcsManager" settingsEditedManually="false">
|
|
88
|
+
<OptionsSetting value="true" id="Add" />
|
|
89
|
+
<OptionsSetting value="true" id="Remove" />
|
|
90
|
+
<OptionsSetting value="true" id="Checkout" />
|
|
91
|
+
<OptionsSetting value="true" id="Update" />
|
|
92
|
+
<OptionsSetting value="true" id="Status" />
|
|
93
|
+
<OptionsSetting value="true" id="Edit" />
|
|
94
|
+
<ConfirmationsSetting value="0" id="Add" />
|
|
95
|
+
<ConfirmationsSetting value="0" id="Remove" />
|
|
96
|
+
</component>
|
|
97
|
+
<component name="ProjectReloadState">
|
|
98
|
+
<option name="STATE" value="0" />
|
|
99
|
+
</component>
|
|
100
|
+
<component name="ProjectView">
|
|
101
|
+
<navigator currentView="ProjectPane" proportions="" version="1" splitterProportion="0.5">
|
|
102
|
+
<flattenPackages />
|
|
103
|
+
<showMembers />
|
|
104
|
+
<showModules />
|
|
105
|
+
<showLibraryContents />
|
|
106
|
+
<hideEmptyPackages />
|
|
107
|
+
<abbreviatePackageNames />
|
|
108
|
+
<autoscrollToSource />
|
|
109
|
+
<autoscrollFromSource />
|
|
110
|
+
<sortByType />
|
|
111
|
+
</navigator>
|
|
112
|
+
<panes>
|
|
113
|
+
<pane id="ProjectPane">
|
|
114
|
+
<subPane>
|
|
115
|
+
<PATH>
|
|
116
|
+
<PATH_ELEMENT>
|
|
117
|
+
<option name="myItemId" value="cron-spec" />
|
|
118
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
119
|
+
</PATH_ELEMENT>
|
|
120
|
+
</PATH>
|
|
121
|
+
<PATH>
|
|
122
|
+
<PATH_ELEMENT>
|
|
123
|
+
<option name="myItemId" value="cron-spec" />
|
|
124
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
125
|
+
</PATH_ELEMENT>
|
|
126
|
+
<PATH_ELEMENT>
|
|
127
|
+
<option name="myItemId" value="cron-spec" />
|
|
128
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
129
|
+
</PATH_ELEMENT>
|
|
130
|
+
</PATH>
|
|
131
|
+
<PATH>
|
|
132
|
+
<PATH_ELEMENT>
|
|
133
|
+
<option name="myItemId" value="cron-spec" />
|
|
134
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
135
|
+
</PATH_ELEMENT>
|
|
136
|
+
<PATH_ELEMENT>
|
|
137
|
+
<option name="myItemId" value="cron-spec" />
|
|
138
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
139
|
+
</PATH_ELEMENT>
|
|
140
|
+
<PATH_ELEMENT>
|
|
141
|
+
<option name="myItemId" value="spec" />
|
|
142
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
143
|
+
</PATH_ELEMENT>
|
|
144
|
+
</PATH>
|
|
145
|
+
</subPane>
|
|
146
|
+
</pane>
|
|
147
|
+
<pane id="Favorites" />
|
|
148
|
+
<pane id="Scope" />
|
|
149
|
+
</panes>
|
|
150
|
+
</component>
|
|
151
|
+
<component name="RunManager">
|
|
152
|
+
<list size="0" />
|
|
153
|
+
</component>
|
|
154
|
+
<component name="ShelveChangesManager" show_recycled="false" />
|
|
155
|
+
<component name="SvnConfiguration" maxAnnotateRevisions="500">
|
|
156
|
+
<option name="USER" value="" />
|
|
157
|
+
<option name="PASSWORD" value="" />
|
|
158
|
+
<option name="LAST_MERGED_REVISION" />
|
|
159
|
+
<option name="MERGE_DRY_RUN" value="false" />
|
|
160
|
+
<option name="MERGE_DIFF_USE_ANCESTRY" value="true" />
|
|
161
|
+
<option name="UPDATE_LOCK_ON_DEMAND" value="false" />
|
|
162
|
+
<option name="IGNORE_SPACES_IN_MERGE" value="false" />
|
|
163
|
+
<option name="DETECT_NESTED_COPIES" value="false" />
|
|
164
|
+
<option name="CHECK_NESTED_FOR_QUICK_MERGE" value="false" />
|
|
165
|
+
<option name="IGNORE_SPACES_IN_ANNOTATE" value="true" />
|
|
166
|
+
<option name="SHOW_MERGE_SOURCES_IN_ANNOTATE" value="true" />
|
|
167
|
+
<option name="FORCE_UPDATE" value="false" />
|
|
168
|
+
<myIsUseDefaultProxy>false</myIsUseDefaultProxy>
|
|
169
|
+
</component>
|
|
170
|
+
<component name="TaskManager">
|
|
171
|
+
<task active="true" id="Default" summary="Default task">
|
|
172
|
+
<created>1298829562652</created>
|
|
173
|
+
<updated>1298829562652</updated>
|
|
174
|
+
</task>
|
|
175
|
+
<servers />
|
|
176
|
+
</component>
|
|
177
|
+
<component name="ToolWindowManager">
|
|
178
|
+
<frame x="142" y="22" width="1538" height="959" extended-state="0" />
|
|
179
|
+
<editor active="false" />
|
|
180
|
+
<layout>
|
|
181
|
+
<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="-1" side_tool="false" content_ui="tabs" />
|
|
182
|
+
<window_info id="Changes" active="true" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.3298731" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" />
|
|
183
|
+
<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" />
|
|
184
|
+
<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="true" content_ui="tabs" />
|
|
185
|
+
<window_info id="Dependency Viewer" 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" />
|
|
186
|
+
<window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.24966975" sideWeight="0.67012686" order="0" side_tool="false" content_ui="tabs" />
|
|
187
|
+
<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" />
|
|
188
|
+
<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" />
|
|
189
|
+
<window_info id="Version Control" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" />
|
|
190
|
+
<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" />
|
|
191
|
+
<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" />
|
|
192
|
+
<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" />
|
|
193
|
+
<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" />
|
|
194
|
+
<window_info id="Commander" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.4" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
|
|
195
|
+
<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" />
|
|
196
|
+
<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" />
|
|
197
|
+
</layout>
|
|
198
|
+
</component>
|
|
199
|
+
<component name="VcsManagerConfiguration">
|
|
200
|
+
<option name="OFFER_MOVE_TO_ANOTHER_CHANGELIST_ON_PARTIAL_COMMIT" value="true" />
|
|
201
|
+
<option name="CHECK_CODE_SMELLS_BEFORE_PROJECT_COMMIT" value="true" />
|
|
202
|
+
<option name="PERFORM_UPDATE_IN_BACKGROUND" value="true" />
|
|
203
|
+
<option name="PERFORM_COMMIT_IN_BACKGROUND" value="true" />
|
|
204
|
+
<option name="PERFORM_EDIT_IN_BACKGROUND" value="true" />
|
|
205
|
+
<option name="PERFORM_CHECKOUT_IN_BACKGROUND" value="true" />
|
|
206
|
+
<option name="PERFORM_ADD_REMOVE_IN_BACKGROUND" value="true" />
|
|
207
|
+
<option name="PERFORM_ROLLBACK_IN_BACKGROUND" value="false" />
|
|
208
|
+
<option name="CHECK_LOCALLY_CHANGED_CONFLICTS_IN_BACKGROUND" value="true" />
|
|
209
|
+
<option name="ENABLE_BACKGROUND_PROCESSES" value="true" />
|
|
210
|
+
<option name="CHANGED_ON_SERVER_INTERVAL" value="5" />
|
|
211
|
+
<option name="SHOW_ONLY_CHANGED_IN_SELECTION_DIFF" value="true" />
|
|
212
|
+
<option name="CHECK_COMMIT_MESSAGE_SPELLING" value="true" />
|
|
213
|
+
<option name="FORCE_NON_EMPTY_COMMENT" value="false" />
|
|
214
|
+
<option name="LAST_COMMIT_MESSAGE" value="Initial code checkin" />
|
|
215
|
+
<option name="MAKE_NEW_CHANGELIST_ACTIVE" value="true" />
|
|
216
|
+
<option name="OPTIMIZE_IMPORTS_BEFORE_PROJECT_COMMIT" value="false" />
|
|
217
|
+
<option name="CHECK_FILES_UP_TO_DATE_BEFORE_COMMIT" value="false" />
|
|
218
|
+
<option name="REFORMAT_BEFORE_PROJECT_COMMIT" value="false" />
|
|
219
|
+
<option name="REFORMAT_BEFORE_FILE_COMMIT" value="false" />
|
|
220
|
+
<option name="FILE_HISTORY_DIALOG_COMMENTS_SPLITTER_PROPORTION" value="0.8" />
|
|
221
|
+
<option name="FILE_HISTORY_DIALOG_SPLITTER_PROPORTION" value="0.5" />
|
|
222
|
+
<option name="ACTIVE_VCS_NAME" />
|
|
223
|
+
<option name="UPDATE_GROUP_BY_PACKAGES" value="false" />
|
|
224
|
+
<option name="UPDATE_GROUP_BY_CHANGELIST" value="false" />
|
|
225
|
+
<option name="SHOW_FILE_HISTORY_AS_TREE" value="false" />
|
|
226
|
+
<option name="FILE_HISTORY_SPLITTER_PROPORTION" value="0.6" />
|
|
227
|
+
<MESSAGE value="Initial code checkin" />
|
|
228
|
+
</component>
|
|
229
|
+
<component name="XDebuggerManager">
|
|
230
|
+
<breakpoint-manager />
|
|
231
|
+
</component>
|
|
232
|
+
<component name="editorHistoryManager">
|
|
233
|
+
<entry file="file://$PROJECT_DIR$/lib/cron-spec/minute_factory.rb">
|
|
234
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
235
|
+
<state line="2" column="28" selection-start="45" selection-end="45" vertical-scroll-proportion="0.037926674">
|
|
236
|
+
<folding />
|
|
237
|
+
</state>
|
|
238
|
+
</provider>
|
|
239
|
+
</entry>
|
|
240
|
+
<entry file="file://$PROJECT_DIR$/lib/cron-spec/hour_factory.rb">
|
|
241
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
242
|
+
<state line="2" column="26" selection-start="43" selection-end="43" vertical-scroll-proportion="0.037926674">
|
|
243
|
+
<folding />
|
|
244
|
+
</state>
|
|
245
|
+
</provider>
|
|
246
|
+
</entry>
|
|
247
|
+
<entry file="file://$PROJECT_DIR$/lib/cron-spec/dow_factory.rb">
|
|
248
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
249
|
+
<state line="1" column="25" selection-start="41" selection-end="41" vertical-scroll-proportion="0.018963337">
|
|
250
|
+
<folding />
|
|
251
|
+
</state>
|
|
252
|
+
</provider>
|
|
253
|
+
</entry>
|
|
254
|
+
<entry file="file://$PROJECT_DIR$/lib/cron-spec/day_factory.rb">
|
|
255
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
256
|
+
<state line="1" column="25" selection-start="41" selection-end="41" vertical-scroll-proportion="0.018963337">
|
|
257
|
+
<folding />
|
|
258
|
+
</state>
|
|
259
|
+
</provider>
|
|
260
|
+
</entry>
|
|
261
|
+
<entry file="file://$PROJECT_DIR$/spec/wildcard_cron_value_spec.rb">
|
|
262
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
263
|
+
<state line="1" column="0" selection-start="22" selection-end="22" vertical-scroll-proportion="0.018495684">
|
|
264
|
+
<folding />
|
|
265
|
+
</state>
|
|
266
|
+
</provider>
|
|
267
|
+
</entry>
|
|
268
|
+
<entry file="file://$PROJECT_DIR$/spec/step_cron_value_spec.rb">
|
|
269
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
270
|
+
<state line="1" column="0" selection-start="22" selection-end="22" vertical-scroll-proportion="0.018495684">
|
|
271
|
+
<folding />
|
|
272
|
+
</state>
|
|
273
|
+
</provider>
|
|
274
|
+
</entry>
|
|
275
|
+
<entry file="file://$PROJECT_DIR$/spec/range_cron_value_spec.rb">
|
|
276
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
277
|
+
<state line="0" column="6" selection-start="6" selection-end="6" vertical-scroll-proportion="-0.0">
|
|
278
|
+
<folding />
|
|
279
|
+
</state>
|
|
280
|
+
</provider>
|
|
281
|
+
</entry>
|
|
282
|
+
<entry file="file://$PROJECT_DIR$/VERSION">
|
|
283
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
284
|
+
<state line="0" column="19" selection-start="5" selection-end="5" vertical-scroll-proportion="0.0">
|
|
285
|
+
<folding />
|
|
286
|
+
</state>
|
|
287
|
+
</provider>
|
|
288
|
+
</entry>
|
|
289
|
+
<entry file="file://$PROJECT_DIR$/.document">
|
|
290
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
291
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
|
292
|
+
<folding />
|
|
293
|
+
</state>
|
|
294
|
+
</provider>
|
|
295
|
+
</entry>
|
|
296
|
+
<entry file="file://$PROJECT_DIR$/README.rdoc">
|
|
297
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
298
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
|
299
|
+
<folding />
|
|
300
|
+
</state>
|
|
301
|
+
</provider>
|
|
302
|
+
</entry>
|
|
303
|
+
<entry file="file://$PROJECT_DIR$/.rspec">
|
|
304
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
305
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
|
306
|
+
<folding />
|
|
307
|
+
</state>
|
|
308
|
+
</provider>
|
|
309
|
+
</entry>
|
|
310
|
+
<entry file="file://$PROJECT_DIR$/Gemfile">
|
|
311
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
312
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
|
313
|
+
<folding />
|
|
314
|
+
</state>
|
|
315
|
+
</provider>
|
|
316
|
+
</entry>
|
|
317
|
+
<entry file="file://$PROJECT_DIR$/LICENSE.txt">
|
|
318
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
319
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
|
320
|
+
<folding />
|
|
321
|
+
</state>
|
|
322
|
+
</provider>
|
|
323
|
+
</entry>
|
|
324
|
+
<entry file="file://$PROJECT_DIR$/Rakefile">
|
|
325
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
326
|
+
<state line="26" column="55" selection-start="1012" selection-end="1012" vertical-scroll-proportion="-14.444445">
|
|
327
|
+
<folding />
|
|
328
|
+
</state>
|
|
329
|
+
</provider>
|
|
330
|
+
</entry>
|
|
331
|
+
<entry file="file://$PROJECT_DIR$/spec/single_value_cron_value_spec.rb">
|
|
332
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
333
|
+
<state line="1" column="0" selection-start="22" selection-end="22" vertical-scroll-proportion="-0.5555556">
|
|
334
|
+
<folding />
|
|
335
|
+
</state>
|
|
336
|
+
</provider>
|
|
337
|
+
</entry>
|
|
338
|
+
<entry file="file://$PROJECT_DIR$/spec/cron_specification_spec.rb">
|
|
339
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
340
|
+
<state line="1" column="0" selection-start="22" selection-end="22" vertical-scroll-proportion="0.028571429">
|
|
341
|
+
<folding />
|
|
342
|
+
</state>
|
|
343
|
+
</provider>
|
|
344
|
+
</entry>
|
|
345
|
+
</component>
|
|
346
|
+
</project>
|
|
347
|
+
|
data/.rspec
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
--color
|