loris 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/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.1
1
+ 0.1.2
data/bin/loris CHANGED
@@ -1,15 +1,15 @@
1
- #!/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby
2
- $:.unshift(File.dirname(__FILE__ + '.rb') + '/../lib') unless $:.include?(File.dirname(__FILE__ + '.rb') + '/../lib')
3
-
4
- require 'loris'
5
- begin
6
- # The dup is to keep ARGV intact, so that tools like ruby-debug can respawn.
7
- failure = Loris::CLI::Main.execute(ARGV.dup)
8
- Kernel.exit(failure ? 1 : 0)
9
- rescue SystemExit => e
10
- Kernel.exit(e.status)
11
- rescue Exception => e
12
- STDERR.puts("#{e.message} (#{e.class})")
13
- STDERR.puts(e.backtrace.join("\n"))
14
- Kernel.exit 1
1
+ #!/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby
2
+ $:.unshift(File.dirname(__FILE__ + '.rb') + '/../lib') unless $:.include?(File.dirname(__FILE__ + '.rb') + '/../lib')
3
+
4
+ require 'loris'
5
+ begin
6
+ # The dup is to keep ARGV intact, so that tools like ruby-debug can respawn.
7
+ failure = Loris::CLI::Main.execute(ARGV.dup)
8
+ Kernel.exit(failure ? 1 : 0)
9
+ rescue SystemExit => e
10
+ Kernel.exit(e.status)
11
+ rescue Exception => e
12
+ STDERR.puts("#{e.message} (#{e.class})")
13
+ STDERR.puts(e.backtrace.join("\n"))
14
+ Kernel.exit 1
15
15
  end
data/features/run.feature CHANGED
@@ -1,36 +1,36 @@
1
- Feature: Run Loris
2
-
3
- Scenario: Creating a file triggers loris
4
- Given I run loris --debug
5
- When I create a file named "created.txt"
6
- And I wait until loris has finished processing changes
7
- Then I should see "created.txt" in the Loris output
8
- And I should not see any errors
9
-
10
- Scenario: Modifying a file triggers loris
11
- Given I create a file named "modified.txt"
12
- When I run loris --debug
13
- And I wait until loris has finished processing changes
14
- And I start recording the Loris output
15
- And I modify the "modified.txt" file
16
- And I wait until loris has finished processing changes
17
- Then I should see "modified.txt" in the recorded output
18
- And I should not see any errors
19
-
20
- Scenario: Modified only triggered once
21
- Given I create a file named "modified.txt"
22
- When I run loris --debug
23
- And I wait until loris has finished processing changes
24
- And I start recording the Loris output
25
- And I modify the "modified.txt" file
26
- And I wait until loris has finished processing changes
27
- And I wait until loris has finished processing changes
28
- Then I should only see "modified.txt" once in the recorded output
29
- And I should not see any errors
30
-
31
- Scenario: Directories not included
32
- Given I run loris --debug
33
- When I create a directory named "dir"
34
- And I wait until loris has finished processing changes
35
- Then I should NOT see "dir" in the Loris output
1
+ Feature: Run Loris
2
+
3
+ Scenario: Creating a file triggers loris
4
+ Given I run loris --debug
5
+ When I create a file named "created.txt"
6
+ And I wait until loris has finished processing changes
7
+ Then I should see "created.txt" in the Loris output
8
+ And I should not see any errors
9
+
10
+ Scenario: Modifying a file triggers loris
11
+ Given I create a file named "modified.txt"
12
+ When I run loris --debug
13
+ And I wait until loris has finished processing changes
14
+ And I start recording the Loris output
15
+ And I modify the "modified.txt" file
16
+ And I wait until loris has finished processing changes
17
+ Then I should see "modified.txt" in the recorded output
18
+ And I should not see any errors
19
+
20
+ Scenario: Modified only triggered once
21
+ Given I create a file named "modified.txt"
22
+ When I run loris --debug
23
+ And I wait until loris has finished processing changes
24
+ And I start recording the Loris output
25
+ And I modify the "modified.txt" file
26
+ And I wait until loris has finished processing changes
27
+ And I wait until loris has finished processing changes
28
+ Then I should only see "modified.txt" once in the recorded output
29
+ And I should not see any errors
30
+
31
+ Scenario: Directories not included
32
+ Given I run loris --debug
33
+ When I create a directory named "dir"
34
+ And I wait until loris has finished processing changes
35
+ Then I should NOT see "dir" in the Loris output
36
36
  And I should not see any errors
@@ -1,69 +1,69 @@
1
- require 'spec/expectations'
2
-
3
- When /^I run loris(.*)$/ do |loris_opts|
4
- run_in_background "#{Loris::RUBY_BINARY} #{Loris::BINARY} #{loris_opts}"
5
- end
6
-
7
- Given /^(?:I create )a file named "([^\"]*)"$/ do |file_name|
8
- @current_dir = working_dir
9
- create_file(file_name, '')
10
- end
11
-
12
- Given /^(?:I create )a directory named "([^\"]*)"$/ do |dir_name|
13
- @current_dir = working_dir
14
- create_dir(dir_name)
15
- end
16
-
17
- Given /^(?:I create )a file named "([^\"]*)" with:$/ do |file_name, file_content|
18
- @current_dir = working_dir
19
- create_file(file_name, file_content)
20
- end
21
-
22
- When /^I modify the "([^\"]*)" file$/ do |file_name|
23
- @current_dir = working_dir
24
- touch_file(file_name)
25
- end
26
-
27
- When /^I wait until loris has finished processing changes$/ do
28
- len = get_background_output.length
29
- new_output = ""
30
- while not new_output =~ /\[Poll complete\]/
31
- new_output = get_background_output[len..-1]
32
- sleep 0.5
33
- end
34
- end
35
-
36
- When /^I start recording the Loris output$/ do
37
- @pre_recorded_length = get_background_output.length
38
- end
39
-
40
- Then /^I should see "([^\"]*)" in the recorded output$/ do |text|
41
- recorded = get_background_output[@pre_recorded_length..-1]
42
- recorded.should include text
43
- end
44
-
45
- Then /^I should only see "([^\"]*)" once in the recorded output$/ do |text|
46
- recorded = get_background_output[@pre_recorded_length..-1]
47
- recorded.should include text
48
- recorded.scan(text).length.should equal 1
49
- end
50
-
51
- Then /^I should see "([^\"]*)" in the Loris output$/ do |text|
52
- get_background_output.should include text
53
- end
54
-
55
- Then /^the Loris output should contain:$/ do |text|
56
- get_background_output.should include text
57
- end
58
-
59
- Then /^the Loris output should NOT contain:$/ do |text|
60
- get_background_output.should_not include text
61
- end
62
-
63
- Then /^I should NOT see "([^\"]*)" in the Loris output$/ do |text|
64
- get_background_output.should_not include text
65
- end
66
-
67
- Then /^I should not see any errors$/ do
68
- get_background_error.strip.should == ""
69
- end
1
+ require 'spec/expectations'
2
+
3
+ When /^I run loris(.*)$/ do |loris_opts|
4
+ run_in_background "#{Loris::RUBY_BINARY} #{Loris::BINARY} #{loris_opts}"
5
+ end
6
+
7
+ Given /^(?:I create )a file named "([^\"]*)"$/ do |file_name|
8
+ @current_dir = working_dir
9
+ create_file(file_name, '')
10
+ end
11
+
12
+ Given /^(?:I create )a directory named "([^\"]*)"$/ do |dir_name|
13
+ @current_dir = working_dir
14
+ create_dir(dir_name)
15
+ end
16
+
17
+ Given /^(?:I create )a file named "([^\"]*)" with:$/ do |file_name, file_content|
18
+ @current_dir = working_dir
19
+ create_file(file_name, file_content)
20
+ end
21
+
22
+ When /^I modify the "([^\"]*)" file$/ do |file_name|
23
+ @current_dir = working_dir
24
+ touch_file(file_name)
25
+ end
26
+
27
+ When /^I wait until loris has finished processing changes$/ do
28
+ len = get_background_output.length
29
+ new_output = ""
30
+ while not new_output =~ /\[Poll complete\]/
31
+ new_output = get_background_output[len..-1]
32
+ sleep 0.5
33
+ end
34
+ end
35
+
36
+ When /^I start recording the Loris output$/ do
37
+ @pre_recorded_length = get_background_output.length
38
+ end
39
+
40
+ Then /^I should see "([^\"]*)" in the recorded output$/ do |text|
41
+ recorded = get_background_output[@pre_recorded_length..-1]
42
+ recorded.should include text
43
+ end
44
+
45
+ Then /^I should only see "([^\"]*)" once in the recorded output$/ do |text|
46
+ recorded = get_background_output[@pre_recorded_length..-1]
47
+ recorded.should include text
48
+ recorded.scan(text).length.should equal 1
49
+ end
50
+
51
+ Then /^I should see "([^\"]*)" in the Loris output$/ do |text|
52
+ get_background_output.should include text
53
+ end
54
+
55
+ Then /^the Loris output should contain:$/ do |text|
56
+ get_background_output.should include text
57
+ end
58
+
59
+ Then /^the Loris output should NOT contain:$/ do |text|
60
+ get_background_output.should_not include text
61
+ end
62
+
63
+ Then /^I should NOT see "([^\"]*)" in the Loris output$/ do |text|
64
+ get_background_output.should_not include text
65
+ end
66
+
67
+ Then /^I should not see any errors$/ do
68
+ get_background_error.strip.should == ""
69
+ end
data/lib/icons/error.png CHANGED
File without changes
File without changes
data/lib/icons/info.png CHANGED
File without changes
File without changes
File without changes
File without changes
@@ -14,7 +14,7 @@ class JsTestDriverRunner
14
14
 
15
15
  def execute
16
16
  @server.start_if_required
17
- return `java -jar "#{@jar}" --config "#{@config}" --reset˝˝ --tests all 2>&1`
17
+ return `java -jar "#{@jar}" --config "#{@config}" --reset --tests all 2>&1`
18
18
  end
19
19
 
20
20
  def is_configured?(all_files)
data/loris.gemspec CHANGED
@@ -1,134 +1,134 @@
1
- # Generated by jeweler
2
- # DO NOT EDIT THIS FILE DIRECTLY
3
- # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
- # -*- encoding: utf-8 -*-
5
-
6
- Gem::Specification.new do |s|
7
- s.name = %q{loris}
8
- s.version = "0.1.1"
9
-
10
- s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
- s.authors = ["Karl O'Keeffe"]
12
- s.date = %q{2010-03-26}
13
- s.default_executable = %q{loris}
14
- s.description = %q{Automatically run javascript unit tests}
15
- s.email = %q{loris@monket.net}
16
- s.executables = ["loris"]
17
- s.extra_rdoc_files = [
18
- "README.rdoc",
19
- "TODO"
20
- ]
21
- s.files = [
22
- ".gitignore",
23
- "README.rdoc",
24
- "Rakefile",
25
- "TODO",
26
- "VERSION",
27
- "bin/loris",
28
- "cucumber.yml",
29
- "examples/self_test/jsl.conf",
30
- "examples/self_test/spec/spec.rhino.js",
31
- "features/javascript_lint.feature",
32
- "features/run.feature",
33
- "features/step_definitons/all.rb",
34
- "features/support/env.rb",
35
- "lib/always_continuer.rb",
36
- "lib/browser_finder.rb",
37
- "lib/file_actioner.rb",
38
- "lib/file_finder.rb",
39
- "lib/filters/ends_with_filter.rb",
40
- "lib/filters/extension_filter.rb",
41
- "lib/filters/file_filter.rb",
42
- "lib/filters/modified_filter.rb",
43
- "lib/icons/error.png",
44
- "lib/icons/failure.png",
45
- "lib/icons/info.png",
46
- "lib/icons/success.png",
47
- "lib/icons/warning.png",
48
- "lib/javascript-lint/jsl",
49
- "lib/javascript-lint/jsl.exe",
50
- "lib/js-test-driver/JsTestDriver-1.2.jar",
51
- "lib/js-test-driver/plugins/coverage-1.2.jar",
52
- "lib/loris.rb",
53
- "lib/outputs/growl_output.rb",
54
- "lib/outputs/output_collection.rb",
55
- "lib/outputs/shell_output.rb",
56
- "lib/outputs/unix_console_clearing_output.rb",
57
- "lib/outputs/windows_console_clearing_output.rb",
58
- "lib/pinger.rb",
59
- "lib/poller.rb",
60
- "lib/sleep_waiter.rb",
61
- "lib/task_manager.rb",
62
- "lib/tasks/command_line_task.rb",
63
- "lib/tasks/javascript_lint/javascript_lint_parser.rb",
64
- "lib/tasks/javascript_lint/javascript_lint_runner.rb",
65
- "lib/tasks/js_test_driver/js_test_driver_config.rb",
66
- "lib/tasks/js_test_driver/js_test_driver_parser.rb",
67
- "lib/tasks/js_test_driver/js_test_driver_runner.rb",
68
- "lib/tasks/js_test_driver/js_test_driver_server.rb",
69
- "lib/tasks/jspec/jspec_parser.rb",
70
- "lib/tasks/jspec/jspec_runner.rb",
71
- "lib/tasks/list_task.rb",
72
- "lib/tasks/rspec/rspec_parser.rb",
73
- "lib/tasks/rspec/rspec_runner.rb",
74
- "lib/unix_process.rb",
75
- "lib/windows_process.rb",
76
- "loris.gemspec",
77
- "loris.tmproj",
78
- "spec/file_actioner_spec.rb",
79
- "spec/file_finder_spec.rb",
80
- "spec/filters/ends_with_filter_spec.rb",
81
- "spec/filters/file_filter_spec.rb",
82
- "spec/filters/modified_filter_spec.rb",
83
- "spec/growl_output_spec.rb",
84
- "spec/list_task_spec.rb",
85
- "spec/poller_spec.rb",
86
- "spec/shell_output_spec.rb",
87
- "spec/task_manager_spec.rb",
88
- "spec/tasks/javascript_lint/javascript_lint_runner_spec.rb",
89
- "spec/tasks/js_test_driver/js_test_driver_runner_spec.rb",
90
- "spec/tasks/jspec/jspec_parser_spec.rb",
91
- "spec/tasks/jspec/jspec_runner_spec.rb"
92
- ]
93
- s.homepage = %q{http://github.com/karl/loris}
94
- s.rdoc_options = ["--charset=UTF-8"]
95
- s.require_paths = ["lib"]
96
- s.rubygems_version = %q{1.3.6}
97
- s.summary = %q{Automatically run javascript unit tests}
98
- s.test_files = [
99
- "spec/file_actioner_spec.rb",
100
- "spec/file_finder_spec.rb",
101
- "spec/filters/ends_with_filter_spec.rb",
102
- "spec/filters/file_filter_spec.rb",
103
- "spec/filters/modified_filter_spec.rb",
104
- "spec/growl_output_spec.rb",
105
- "spec/list_task_spec.rb",
106
- "spec/poller_spec.rb",
107
- "spec/shell_output_spec.rb",
108
- "spec/task_manager_spec.rb",
109
- "spec/tasks/javascript_lint/javascript_lint_runner_spec.rb",
110
- "spec/tasks/js_test_driver/js_test_driver_runner_spec.rb",
111
- "spec/tasks/jspec/jspec_parser_spec.rb",
112
- "spec/tasks/jspec/jspec_runner_spec.rb"
113
- ]
114
-
115
- if s.respond_to? :specification_version then
116
- current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
117
- s.specification_version = 3
118
-
119
- if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
120
- s.add_runtime_dependency(%q<visionmedia-bind>, [">= 0.2.6"])
121
- s.add_runtime_dependency(%q<karl-growl>, [">= 1.0.6"])
122
- s.add_runtime_dependency(%q<extensions>, [">= 0.6.0"])
123
- else
124
- s.add_dependency(%q<visionmedia-bind>, [">= 0.2.6"])
125
- s.add_dependency(%q<karl-growl>, [">= 1.0.6"])
126
- s.add_dependency(%q<extensions>, [">= 0.6.0"])
127
- end
128
- else
129
- s.add_dependency(%q<visionmedia-bind>, [">= 0.2.6"])
130
- s.add_dependency(%q<karl-growl>, [">= 1.0.6"])
131
- s.add_dependency(%q<extensions>, [">= 0.6.0"])
132
- end
133
- end
134
-
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{loris}
8
+ s.version = "0.1.2"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Karl O'Keeffe"]
12
+ s.date = %q{2010-04-12}
13
+ s.default_executable = %q{loris}
14
+ s.description = %q{Automatically run javascript unit tests}
15
+ s.email = %q{loris@monket.net}
16
+ s.executables = ["loris"]
17
+ s.extra_rdoc_files = [
18
+ "README.rdoc",
19
+ "TODO"
20
+ ]
21
+ s.files = [
22
+ ".gitignore",
23
+ "README.rdoc",
24
+ "Rakefile",
25
+ "TODO",
26
+ "VERSION",
27
+ "bin/loris",
28
+ "cucumber.yml",
29
+ "examples/self_test/jsl.conf",
30
+ "examples/self_test/spec/spec.rhino.js",
31
+ "features/javascript_lint.feature",
32
+ "features/run.feature",
33
+ "features/step_definitons/all.rb",
34
+ "features/support/env.rb",
35
+ "lib/always_continuer.rb",
36
+ "lib/browser_finder.rb",
37
+ "lib/file_actioner.rb",
38
+ "lib/file_finder.rb",
39
+ "lib/filters/ends_with_filter.rb",
40
+ "lib/filters/extension_filter.rb",
41
+ "lib/filters/file_filter.rb",
42
+ "lib/filters/modified_filter.rb",
43
+ "lib/icons/error.png",
44
+ "lib/icons/failure.png",
45
+ "lib/icons/info.png",
46
+ "lib/icons/success.png",
47
+ "lib/icons/warning.png",
48
+ "lib/javascript-lint/jsl",
49
+ "lib/javascript-lint/jsl.exe",
50
+ "lib/js-test-driver/JsTestDriver-1.2.jar",
51
+ "lib/js-test-driver/plugins/coverage-1.2.jar",
52
+ "lib/loris.rb",
53
+ "lib/outputs/growl_output.rb",
54
+ "lib/outputs/output_collection.rb",
55
+ "lib/outputs/shell_output.rb",
56
+ "lib/outputs/unix_console_clearing_output.rb",
57
+ "lib/outputs/windows_console_clearing_output.rb",
58
+ "lib/pinger.rb",
59
+ "lib/poller.rb",
60
+ "lib/sleep_waiter.rb",
61
+ "lib/task_manager.rb",
62
+ "lib/tasks/command_line_task.rb",
63
+ "lib/tasks/javascript_lint/javascript_lint_parser.rb",
64
+ "lib/tasks/javascript_lint/javascript_lint_runner.rb",
65
+ "lib/tasks/js_test_driver/js_test_driver_config.rb",
66
+ "lib/tasks/js_test_driver/js_test_driver_parser.rb",
67
+ "lib/tasks/js_test_driver/js_test_driver_runner.rb",
68
+ "lib/tasks/js_test_driver/js_test_driver_server.rb",
69
+ "lib/tasks/jspec/jspec_parser.rb",
70
+ "lib/tasks/jspec/jspec_runner.rb",
71
+ "lib/tasks/list_task.rb",
72
+ "lib/tasks/rspec/rspec_parser.rb",
73
+ "lib/tasks/rspec/rspec_runner.rb",
74
+ "lib/unix_process.rb",
75
+ "lib/windows_process.rb",
76
+ "loris.gemspec",
77
+ "loris.tmproj",
78
+ "spec/file_actioner_spec.rb",
79
+ "spec/file_finder_spec.rb",
80
+ "spec/filters/ends_with_filter_spec.rb",
81
+ "spec/filters/file_filter_spec.rb",
82
+ "spec/filters/modified_filter_spec.rb",
83
+ "spec/growl_output_spec.rb",
84
+ "spec/list_task_spec.rb",
85
+ "spec/poller_spec.rb",
86
+ "spec/shell_output_spec.rb",
87
+ "spec/task_manager_spec.rb",
88
+ "spec/tasks/javascript_lint/javascript_lint_runner_spec.rb",
89
+ "spec/tasks/js_test_driver/js_test_driver_runner_spec.rb",
90
+ "spec/tasks/jspec/jspec_parser_spec.rb",
91
+ "spec/tasks/jspec/jspec_runner_spec.rb"
92
+ ]
93
+ s.homepage = %q{http://github.com/karl/loris}
94
+ s.rdoc_options = ["--charset=UTF-8"]
95
+ s.require_paths = ["lib"]
96
+ s.rubygems_version = %q{1.3.6}
97
+ s.summary = %q{Automatically run javascript unit tests}
98
+ s.test_files = [
99
+ "spec/file_actioner_spec.rb",
100
+ "spec/file_finder_spec.rb",
101
+ "spec/filters/ends_with_filter_spec.rb",
102
+ "spec/filters/file_filter_spec.rb",
103
+ "spec/filters/modified_filter_spec.rb",
104
+ "spec/growl_output_spec.rb",
105
+ "spec/list_task_spec.rb",
106
+ "spec/poller_spec.rb",
107
+ "spec/shell_output_spec.rb",
108
+ "spec/tasks/javascript_lint/javascript_lint_runner_spec.rb",
109
+ "spec/tasks/jspec/jspec_parser_spec.rb",
110
+ "spec/tasks/jspec/jspec_runner_spec.rb",
111
+ "spec/tasks/js_test_driver/js_test_driver_runner_spec.rb",
112
+ "spec/task_manager_spec.rb"
113
+ ]
114
+
115
+ if s.respond_to? :specification_version then
116
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
117
+ s.specification_version = 3
118
+
119
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
120
+ s.add_runtime_dependency(%q<visionmedia-bind>, [">= 0.2.6"])
121
+ s.add_runtime_dependency(%q<karl-growl>, [">= 1.0.6"])
122
+ s.add_runtime_dependency(%q<extensions>, [">= 0.6.0"])
123
+ else
124
+ s.add_dependency(%q<visionmedia-bind>, [">= 0.2.6"])
125
+ s.add_dependency(%q<karl-growl>, [">= 1.0.6"])
126
+ s.add_dependency(%q<extensions>, [">= 0.6.0"])
127
+ end
128
+ else
129
+ s.add_dependency(%q<visionmedia-bind>, [">= 0.2.6"])
130
+ s.add_dependency(%q<karl-growl>, [">= 1.0.6"])
131
+ s.add_dependency(%q<extensions>, [">= 0.6.0"])
132
+ end
133
+ end
134
+
data/loris.tmproj CHANGED
@@ -1,273 +1,273 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
- <plist version="1.0">
4
- <dict>
5
- <key>currentDocument</key>
6
- <string>lib/file_actioner.rb</string>
7
- <key>documents</key>
8
- <array>
9
- <dict>
10
- <key>expanded</key>
11
- <true/>
12
- <key>name</key>
13
- <string>loris</string>
14
- <key>regexFolderFilter</key>
15
- <string>!.*/(\.[^/]*|CVS|_darcs|_MTN|\{arch\}|blib|.*~\.nib|.*\.(framework|app|pbproj|pbxproj|xcode(proj)?|bundle))$</string>
16
- <key>sourceDirectory</key>
17
- <string></string>
18
- </dict>
19
- </array>
20
- <key>fileHierarchyDrawerWidth</key>
21
- <integer>200</integer>
22
- <key>metaData</key>
23
- <dict>
24
- <key>Rakefile</key>
25
- <dict>
26
- <key>caret</key>
27
- <dict>
28
- <key>column</key>
29
- <integer>47</integer>
30
- <key>line</key>
31
- <integer>17</integer>
32
- </dict>
33
- <key>firstVisibleColumn</key>
34
- <integer>0</integer>
35
- <key>firstVisibleLine</key>
36
- <integer>0</integer>
37
- </dict>
38
- <key>TODO</key>
39
- <dict>
40
- <key>caret</key>
41
- <dict>
42
- <key>column</key>
43
- <integer>0</integer>
44
- <key>line</key>
45
- <integer>0</integer>
46
- </dict>
47
- <key>firstVisibleColumn</key>
48
- <integer>0</integer>
49
- <key>firstVisibleLine</key>
50
- <integer>0</integer>
51
- </dict>
52
- <key>lib/file_actioner.rb</key>
53
- <dict>
54
- <key>caret</key>
55
- <dict>
56
- <key>column</key>
57
- <integer>44</integer>
58
- <key>line</key>
59
- <integer>12</integer>
60
- </dict>
61
- <key>firstVisibleColumn</key>
62
- <integer>0</integer>
63
- <key>firstVisibleLine</key>
64
- <integer>0</integer>
65
- </dict>
66
- <key>lib/file_finder.rb</key>
67
- <dict>
68
- <key>caret</key>
69
- <dict>
70
- <key>column</key>
71
- <integer>39</integer>
72
- <key>line</key>
73
- <integer>16</integer>
74
- </dict>
75
- <key>firstVisibleColumn</key>
76
- <integer>0</integer>
77
- <key>firstVisibleLine</key>
78
- <integer>0</integer>
79
- </dict>
80
- <key>lib/filters/ends_with_filter.rb</key>
81
- <dict>
82
- <key>caret</key>
83
- <dict>
84
- <key>column</key>
85
- <integer>47</integer>
86
- <key>line</key>
87
- <integer>10</integer>
88
- </dict>
89
- <key>firstVisibleColumn</key>
90
- <integer>0</integer>
91
- <key>firstVisibleLine</key>
92
- <integer>0</integer>
93
- </dict>
94
- <key>lib/outputs/growl_output.rb</key>
95
- <dict>
96
- <key>caret</key>
97
- <dict>
98
- <key>column</key>
99
- <integer>15</integer>
100
- <key>line</key>
101
- <integer>6</integer>
102
- </dict>
103
- <key>firstVisibleColumn</key>
104
- <integer>0</integer>
105
- <key>firstVisibleLine</key>
106
- <integer>0</integer>
107
- </dict>
108
- <key>lib/outputs/output_collection.rb</key>
109
- <dict>
110
- <key>caret</key>
111
- <dict>
112
- <key>column</key>
113
- <integer>22</integer>
114
- <key>line</key>
115
- <integer>8</integer>
116
- </dict>
117
- <key>firstVisibleColumn</key>
118
- <integer>0</integer>
119
- <key>firstVisibleLine</key>
120
- <integer>0</integer>
121
- </dict>
122
- <key>lib/task_manager.rb</key>
123
- <dict>
124
- <key>caret</key>
125
- <dict>
126
- <key>column</key>
127
- <integer>0</integer>
128
- <key>line</key>
129
- <integer>23</integer>
130
- </dict>
131
- <key>firstVisibleColumn</key>
132
- <integer>0</integer>
133
- <key>firstVisibleLine</key>
134
- <integer>0</integer>
135
- </dict>
136
- <key>lib/tasks/command_line_task.rb</key>
137
- <dict>
138
- <key>caret</key>
139
- <dict>
140
- <key>column</key>
141
- <integer>28</integer>
142
- <key>line</key>
143
- <integer>14</integer>
144
- </dict>
145
- <key>firstVisibleColumn</key>
146
- <integer>0</integer>
147
- <key>firstVisibleLine</key>
148
- <integer>0</integer>
149
- </dict>
150
- <key>lib/tasks/javascript_lint/javascript_lint_parser.rb</key>
151
- <dict>
152
- <key>caret</key>
153
- <dict>
154
- <key>column</key>
155
- <integer>24</integer>
156
- <key>line</key>
157
- <integer>32</integer>
158
- </dict>
159
- <key>firstVisibleColumn</key>
160
- <integer>0</integer>
161
- <key>firstVisibleLine</key>
162
- <integer>0</integer>
163
- </dict>
164
- <key>lib/tasks/javascript_lint/javascript_lint_runner.rb</key>
165
- <dict>
166
- <key>caret</key>
167
- <dict>
168
- <key>column</key>
169
- <integer>57</integer>
170
- <key>line</key>
171
- <integer>13</integer>
172
- </dict>
173
- <key>columnSelection</key>
174
- <false/>
175
- <key>firstVisibleColumn</key>
176
- <integer>0</integer>
177
- <key>firstVisibleLine</key>
178
- <integer>0</integer>
179
- <key>selectFrom</key>
180
- <dict>
181
- <key>column</key>
182
- <integer>43</integer>
183
- <key>line</key>
184
- <integer>13</integer>
185
- </dict>
186
- <key>selectTo</key>
187
- <dict>
188
- <key>column</key>
189
- <integer>57</integer>
190
- <key>line</key>
191
- <integer>13</integer>
192
- </dict>
193
- </dict>
194
- <key>lib/tasks/js_test_driver/js_test_driver_parser.rb</key>
195
- <dict>
196
- <key>caret</key>
197
- <dict>
198
- <key>column</key>
199
- <integer>2</integer>
200
- <key>line</key>
201
- <integer>30</integer>
202
- </dict>
203
- <key>firstVisibleColumn</key>
204
- <integer>0</integer>
205
- <key>firstVisibleLine</key>
206
- <integer>0</integer>
207
- </dict>
208
- <key>lib/tasks/js_test_driver/js_test_driver_runner.rb</key>
209
- <dict>
210
- <key>caret</key>
211
- <dict>
212
- <key>column</key>
213
- <integer>61</integer>
214
- <key>line</key>
215
- <integer>16</integer>
216
- </dict>
217
- <key>firstVisibleColumn</key>
218
- <integer>0</integer>
219
- <key>firstVisibleLine</key>
220
- <integer>0</integer>
221
- </dict>
222
- <key>lib/tasks/list_task.rb</key>
223
- <dict>
224
- <key>caret</key>
225
- <dict>
226
- <key>column</key>
227
- <integer>61</integer>
228
- <key>line</key>
229
- <integer>13</integer>
230
- </dict>
231
- <key>firstVisibleColumn</key>
232
- <integer>0</integer>
233
- <key>firstVisibleLine</key>
234
- <integer>0</integer>
235
- </dict>
236
- <key>spec/filters/ends_with_filter_spec.rb</key>
237
- <dict>
238
- <key>caret</key>
239
- <dict>
240
- <key>column</key>
241
- <integer>43</integer>
242
- <key>line</key>
243
- <integer>9</integer>
244
- </dict>
245
- <key>firstVisibleColumn</key>
246
- <integer>0</integer>
247
- <key>firstVisibleLine</key>
248
- <integer>0</integer>
249
- </dict>
250
- </dict>
251
- <key>openDocuments</key>
252
- <array>
253
- <string>TODO</string>
254
- <string>lib/tasks/javascript_lint/javascript_lint_parser.rb</string>
255
- <string>lib/tasks/js_test_driver/js_test_driver_parser.rb</string>
256
- <string>lib/tasks/js_test_driver/js_test_driver_runner.rb</string>
257
- <string>lib/outputs/growl_output.rb</string>
258
- <string>lib/outputs/output_collection.rb</string>
259
- <string>lib/filters/ends_with_filter.rb</string>
260
- <string>lib/tasks/javascript_lint/javascript_lint_runner.rb</string>
261
- <string>Rakefile</string>
262
- <string>lib/task_manager.rb</string>
263
- <string>lib/file_finder.rb</string>
264
- <string>lib/file_actioner.rb</string>
265
- <string>lib/tasks/list_task.rb</string>
266
- <string>lib/tasks/command_line_task.rb</string>
267
- </array>
268
- <key>showFileHierarchyDrawer</key>
269
- <false/>
270
- <key>windowFrame</key>
271
- <string>{{0, 0}, {1436, 878}}</string>
272
- </dict>
273
- </plist>
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>currentDocument</key>
6
+ <string>lib/file_actioner.rb</string>
7
+ <key>documents</key>
8
+ <array>
9
+ <dict>
10
+ <key>expanded</key>
11
+ <true/>
12
+ <key>name</key>
13
+ <string>loris</string>
14
+ <key>regexFolderFilter</key>
15
+ <string>!.*/(\.[^/]*|CVS|_darcs|_MTN|\{arch\}|blib|.*~\.nib|.*\.(framework|app|pbproj|pbxproj|xcode(proj)?|bundle))$</string>
16
+ <key>sourceDirectory</key>
17
+ <string></string>
18
+ </dict>
19
+ </array>
20
+ <key>fileHierarchyDrawerWidth</key>
21
+ <integer>200</integer>
22
+ <key>metaData</key>
23
+ <dict>
24
+ <key>Rakefile</key>
25
+ <dict>
26
+ <key>caret</key>
27
+ <dict>
28
+ <key>column</key>
29
+ <integer>47</integer>
30
+ <key>line</key>
31
+ <integer>17</integer>
32
+ </dict>
33
+ <key>firstVisibleColumn</key>
34
+ <integer>0</integer>
35
+ <key>firstVisibleLine</key>
36
+ <integer>0</integer>
37
+ </dict>
38
+ <key>TODO</key>
39
+ <dict>
40
+ <key>caret</key>
41
+ <dict>
42
+ <key>column</key>
43
+ <integer>0</integer>
44
+ <key>line</key>
45
+ <integer>0</integer>
46
+ </dict>
47
+ <key>firstVisibleColumn</key>
48
+ <integer>0</integer>
49
+ <key>firstVisibleLine</key>
50
+ <integer>0</integer>
51
+ </dict>
52
+ <key>lib/file_actioner.rb</key>
53
+ <dict>
54
+ <key>caret</key>
55
+ <dict>
56
+ <key>column</key>
57
+ <integer>44</integer>
58
+ <key>line</key>
59
+ <integer>12</integer>
60
+ </dict>
61
+ <key>firstVisibleColumn</key>
62
+ <integer>0</integer>
63
+ <key>firstVisibleLine</key>
64
+ <integer>0</integer>
65
+ </dict>
66
+ <key>lib/file_finder.rb</key>
67
+ <dict>
68
+ <key>caret</key>
69
+ <dict>
70
+ <key>column</key>
71
+ <integer>39</integer>
72
+ <key>line</key>
73
+ <integer>16</integer>
74
+ </dict>
75
+ <key>firstVisibleColumn</key>
76
+ <integer>0</integer>
77
+ <key>firstVisibleLine</key>
78
+ <integer>0</integer>
79
+ </dict>
80
+ <key>lib/filters/ends_with_filter.rb</key>
81
+ <dict>
82
+ <key>caret</key>
83
+ <dict>
84
+ <key>column</key>
85
+ <integer>47</integer>
86
+ <key>line</key>
87
+ <integer>10</integer>
88
+ </dict>
89
+ <key>firstVisibleColumn</key>
90
+ <integer>0</integer>
91
+ <key>firstVisibleLine</key>
92
+ <integer>0</integer>
93
+ </dict>
94
+ <key>lib/outputs/growl_output.rb</key>
95
+ <dict>
96
+ <key>caret</key>
97
+ <dict>
98
+ <key>column</key>
99
+ <integer>15</integer>
100
+ <key>line</key>
101
+ <integer>6</integer>
102
+ </dict>
103
+ <key>firstVisibleColumn</key>
104
+ <integer>0</integer>
105
+ <key>firstVisibleLine</key>
106
+ <integer>0</integer>
107
+ </dict>
108
+ <key>lib/outputs/output_collection.rb</key>
109
+ <dict>
110
+ <key>caret</key>
111
+ <dict>
112
+ <key>column</key>
113
+ <integer>22</integer>
114
+ <key>line</key>
115
+ <integer>8</integer>
116
+ </dict>
117
+ <key>firstVisibleColumn</key>
118
+ <integer>0</integer>
119
+ <key>firstVisibleLine</key>
120
+ <integer>0</integer>
121
+ </dict>
122
+ <key>lib/task_manager.rb</key>
123
+ <dict>
124
+ <key>caret</key>
125
+ <dict>
126
+ <key>column</key>
127
+ <integer>0</integer>
128
+ <key>line</key>
129
+ <integer>23</integer>
130
+ </dict>
131
+ <key>firstVisibleColumn</key>
132
+ <integer>0</integer>
133
+ <key>firstVisibleLine</key>
134
+ <integer>0</integer>
135
+ </dict>
136
+ <key>lib/tasks/command_line_task.rb</key>
137
+ <dict>
138
+ <key>caret</key>
139
+ <dict>
140
+ <key>column</key>
141
+ <integer>28</integer>
142
+ <key>line</key>
143
+ <integer>14</integer>
144
+ </dict>
145
+ <key>firstVisibleColumn</key>
146
+ <integer>0</integer>
147
+ <key>firstVisibleLine</key>
148
+ <integer>0</integer>
149
+ </dict>
150
+ <key>lib/tasks/javascript_lint/javascript_lint_parser.rb</key>
151
+ <dict>
152
+ <key>caret</key>
153
+ <dict>
154
+ <key>column</key>
155
+ <integer>24</integer>
156
+ <key>line</key>
157
+ <integer>32</integer>
158
+ </dict>
159
+ <key>firstVisibleColumn</key>
160
+ <integer>0</integer>
161
+ <key>firstVisibleLine</key>
162
+ <integer>0</integer>
163
+ </dict>
164
+ <key>lib/tasks/javascript_lint/javascript_lint_runner.rb</key>
165
+ <dict>
166
+ <key>caret</key>
167
+ <dict>
168
+ <key>column</key>
169
+ <integer>57</integer>
170
+ <key>line</key>
171
+ <integer>13</integer>
172
+ </dict>
173
+ <key>columnSelection</key>
174
+ <false/>
175
+ <key>firstVisibleColumn</key>
176
+ <integer>0</integer>
177
+ <key>firstVisibleLine</key>
178
+ <integer>0</integer>
179
+ <key>selectFrom</key>
180
+ <dict>
181
+ <key>column</key>
182
+ <integer>43</integer>
183
+ <key>line</key>
184
+ <integer>13</integer>
185
+ </dict>
186
+ <key>selectTo</key>
187
+ <dict>
188
+ <key>column</key>
189
+ <integer>57</integer>
190
+ <key>line</key>
191
+ <integer>13</integer>
192
+ </dict>
193
+ </dict>
194
+ <key>lib/tasks/js_test_driver/js_test_driver_parser.rb</key>
195
+ <dict>
196
+ <key>caret</key>
197
+ <dict>
198
+ <key>column</key>
199
+ <integer>2</integer>
200
+ <key>line</key>
201
+ <integer>30</integer>
202
+ </dict>
203
+ <key>firstVisibleColumn</key>
204
+ <integer>0</integer>
205
+ <key>firstVisibleLine</key>
206
+ <integer>0</integer>
207
+ </dict>
208
+ <key>lib/tasks/js_test_driver/js_test_driver_runner.rb</key>
209
+ <dict>
210
+ <key>caret</key>
211
+ <dict>
212
+ <key>column</key>
213
+ <integer>61</integer>
214
+ <key>line</key>
215
+ <integer>16</integer>
216
+ </dict>
217
+ <key>firstVisibleColumn</key>
218
+ <integer>0</integer>
219
+ <key>firstVisibleLine</key>
220
+ <integer>0</integer>
221
+ </dict>
222
+ <key>lib/tasks/list_task.rb</key>
223
+ <dict>
224
+ <key>caret</key>
225
+ <dict>
226
+ <key>column</key>
227
+ <integer>61</integer>
228
+ <key>line</key>
229
+ <integer>13</integer>
230
+ </dict>
231
+ <key>firstVisibleColumn</key>
232
+ <integer>0</integer>
233
+ <key>firstVisibleLine</key>
234
+ <integer>0</integer>
235
+ </dict>
236
+ <key>spec/filters/ends_with_filter_spec.rb</key>
237
+ <dict>
238
+ <key>caret</key>
239
+ <dict>
240
+ <key>column</key>
241
+ <integer>43</integer>
242
+ <key>line</key>
243
+ <integer>9</integer>
244
+ </dict>
245
+ <key>firstVisibleColumn</key>
246
+ <integer>0</integer>
247
+ <key>firstVisibleLine</key>
248
+ <integer>0</integer>
249
+ </dict>
250
+ </dict>
251
+ <key>openDocuments</key>
252
+ <array>
253
+ <string>TODO</string>
254
+ <string>lib/tasks/javascript_lint/javascript_lint_parser.rb</string>
255
+ <string>lib/tasks/js_test_driver/js_test_driver_parser.rb</string>
256
+ <string>lib/tasks/js_test_driver/js_test_driver_runner.rb</string>
257
+ <string>lib/outputs/growl_output.rb</string>
258
+ <string>lib/outputs/output_collection.rb</string>
259
+ <string>lib/filters/ends_with_filter.rb</string>
260
+ <string>lib/tasks/javascript_lint/javascript_lint_runner.rb</string>
261
+ <string>Rakefile</string>
262
+ <string>lib/task_manager.rb</string>
263
+ <string>lib/file_finder.rb</string>
264
+ <string>lib/file_actioner.rb</string>
265
+ <string>lib/tasks/list_task.rb</string>
266
+ <string>lib/tasks/command_line_task.rb</string>
267
+ </array>
268
+ <key>showFileHierarchyDrawer</key>
269
+ <false/>
270
+ <key>windowFrame</key>
271
+ <string>{{0, 0}, {1436, 878}}</string>
272
+ </dict>
273
+ </plist>
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 1
9
- version: 0.1.1
8
+ - 2
9
+ version: 0.1.2
10
10
  platform: ruby
11
11
  authors:
12
12
  - Karl O'Keeffe
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-03-26 00:00:00 +00:00
17
+ date: 2010-04-12 00:00:00 +01:00
18
18
  default_executable: loris
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
@@ -179,8 +179,8 @@ test_files:
179
179
  - spec/list_task_spec.rb
180
180
  - spec/poller_spec.rb
181
181
  - spec/shell_output_spec.rb
182
- - spec/task_manager_spec.rb
183
182
  - spec/tasks/javascript_lint/javascript_lint_runner_spec.rb
184
- - spec/tasks/js_test_driver/js_test_driver_runner_spec.rb
185
183
  - spec/tasks/jspec/jspec_parser_spec.rb
186
184
  - spec/tasks/jspec/jspec_runner_spec.rb
185
+ - spec/tasks/js_test_driver/js_test_driver_runner_spec.rb
186
+ - spec/task_manager_spec.rb