tailor 0.1.1 → 0.1.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/History.txt +4 -0
- data/Manifest.txt +2 -0
- data/PostInstall.txt +4 -0
- data/bin/tailor +10 -3
- data/features/spacing.feature +2 -2
- data/lib/tailor.rb +21 -2
- data/lib/tailor/grammars/bad_comma_style.citrus +53 -0
- data/output.txt +6577 -0
- metadata +14 -5
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tailor
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 31
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 1
|
|
9
|
-
-
|
|
10
|
-
version: 0.1.
|
|
9
|
+
- 2
|
|
10
|
+
version: 0.1.2
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Steve Loveless
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2010-
|
|
18
|
+
date: 2010-09-01 00:00:00 -07:00
|
|
19
19
|
default_executable:
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|
|
@@ -142,6 +142,7 @@ extra_rdoc_files:
|
|
|
142
142
|
- Manifest.txt
|
|
143
143
|
- PostInstall.txt
|
|
144
144
|
- logic.txt
|
|
145
|
+
- output.txt
|
|
145
146
|
files:
|
|
146
147
|
- .autotest
|
|
147
148
|
- History.txt
|
|
@@ -181,11 +182,13 @@ files:
|
|
|
181
182
|
- features/support/world.rb
|
|
182
183
|
- lib/tailor.rb
|
|
183
184
|
- lib/tailor/file_line.rb
|
|
185
|
+
- lib/tailor/grammars/bad_comma_style.citrus
|
|
184
186
|
- lib/tailor/indentation.rb
|
|
185
187
|
- lib/tailor/spacing.rb
|
|
186
188
|
- lib/tasks/metrics.rake
|
|
187
189
|
- lib/tasks/stats.rake
|
|
188
190
|
- logic.txt
|
|
191
|
+
- output.txt
|
|
189
192
|
- ruby-style-checker.rb
|
|
190
193
|
- script/console
|
|
191
194
|
- script/destroy
|
|
@@ -217,6 +220,12 @@ post_install_message:
|
|
|
217
220
|
- |
|
|
218
221
|
|
|
219
222
|
|
|
223
|
+
- " -OR-\n"
|
|
224
|
+
- " \n"
|
|
225
|
+
- " # tailor [.rb file to check]\n"
|
|
226
|
+
- |
|
|
227
|
+
|
|
228
|
+
|
|
220
229
|
- |
|
|
221
230
|
|
|
222
231
|
|
|
@@ -235,7 +244,7 @@ rdoc_options:
|
|
|
235
244
|
- - Manifest.txt
|
|
236
245
|
- History.txt
|
|
237
246
|
- --title
|
|
238
|
-
- tailor Documentation (0.1.
|
|
247
|
+
- tailor Documentation (0.1.2)
|
|
239
248
|
- --markup
|
|
240
249
|
- :rdoc
|
|
241
250
|
require_paths:
|