karl-loris 0.0.5 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (48) hide show
  1. data/.autotest +12 -0
  2. data/.gitignore +1 -0
  3. data/TODO +21 -0
  4. data/VERSION +1 -0
  5. data/autotest/discover.rb +3 -0
  6. data/cucumber.yml +1 -0
  7. data/examples/self_test/jsl.conf +0 -0
  8. data/examples/self_test/spec/spec.rhino.js +6 -0
  9. data/features/run.feature +37 -0
  10. data/features/step_definitons/all.rb +61 -0
  11. data/features/support/env.rb +145 -0
  12. data/lib/always_continuer.rb +7 -0
  13. data/lib/extension_filter.rb +20 -0
  14. data/lib/file_actioner.rb +16 -0
  15. data/lib/file_filter.rb +14 -0
  16. data/lib/file_finder.rb +31 -0
  17. data/lib/icons/error.png +0 -0
  18. data/lib/icons/failure.png +0 -0
  19. data/lib/icons/info.png +0 -0
  20. data/lib/icons/success.png +0 -0
  21. data/lib/icons/warning.png +0 -0
  22. data/lib/loris.rb +108 -0
  23. data/lib/modified_filter.rb +21 -0
  24. data/lib/outputs/console_clearing_output.rb +14 -0
  25. data/lib/outputs/growl_output.rb +26 -0
  26. data/lib/outputs/output_collection.rb +23 -0
  27. data/lib/outputs/shell_output.rb +17 -0
  28. data/lib/poller.rb +16 -0
  29. data/lib/sleep_waiter.rb +11 -0
  30. data/lib/task_manager.rb +27 -0
  31. data/lib/tasks/javascript_lint_runner.rb +15 -0
  32. data/lib/tasks/javascript_lint_task.rb +63 -0
  33. data/lib/tasks/jspec_runner.rb +15 -0
  34. data/lib/tasks/jspec_task.rb +53 -0
  35. data/lib/tasks/list_task.rb +34 -0
  36. data/loris.tmproj +202 -0
  37. data/spec/file_actioner_spec.rb +41 -0
  38. data/spec/file_filter_spec.rb +28 -0
  39. data/spec/file_finder_spec.rb +73 -0
  40. data/spec/growl_output_spec.rb +33 -0
  41. data/spec/jspec_task_spec.rb +47 -0
  42. data/spec/list_task_spec.rb +58 -0
  43. data/spec/modified_filter_spec.rb +47 -0
  44. data/spec/poller_spec.rb +28 -0
  45. data/spec/shell_output_spec.rb +25 -0
  46. data/spec/task_manager_spec.rb +64 -0
  47. metadata +70 -19
  48. data/loris.gemspec +0 -33
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: karl-loris
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Karl O'Keeffe
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-07-12 00:00:00 -07:00
12
+ date: 2009-09-16 00:00:00 -07:00
13
13
  default_executable: loris
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -32,9 +32,8 @@ dependencies:
32
32
  - !ruby/object:Gem::Version
33
33
  version: 1.0.3
34
34
  version:
35
- description: Automatically run tasks on file system changes (unit tests, acceptance tests, etc)
36
- email:
37
- - loris@monket.net
35
+ description: "TODO: Automatically run javascript tests"
36
+ email: loris@monket.net
38
37
  executables:
39
38
  - loris
40
39
  extensions: []
@@ -42,17 +41,60 @@ extensions: []
42
41
  extra_rdoc_files:
43
42
  - README.rdoc
44
43
  files:
44
+ - .autotest
45
+ - .gitignore
45
46
  - README.rdoc
46
- - loris.gemspec
47
+ - TODO
48
+ - VERSION
49
+ - autotest/discover.rb
50
+ - bin/loris
51
+ - cucumber.yml
52
+ - examples/self_test/jsl.conf
53
+ - examples/self_test/spec/spec.rhino.js
54
+ - features/run.feature
55
+ - features/step_definitons/all.rb
56
+ - features/support/env.rb
57
+ - lib/always_continuer.rb
58
+ - lib/extension_filter.rb
59
+ - lib/file_actioner.rb
60
+ - lib/file_filter.rb
61
+ - lib/file_finder.rb
62
+ - lib/icons/error.png
63
+ - lib/icons/failure.png
64
+ - lib/icons/info.png
65
+ - lib/icons/success.png
66
+ - lib/icons/warning.png
67
+ - lib/loris.rb
68
+ - lib/modified_filter.rb
69
+ - lib/outputs/console_clearing_output.rb
70
+ - lib/outputs/growl_output.rb
71
+ - lib/outputs/output_collection.rb
72
+ - lib/outputs/shell_output.rb
73
+ - lib/poller.rb
74
+ - lib/sleep_waiter.rb
75
+ - lib/task_manager.rb
76
+ - lib/tasks/javascript_lint_runner.rb
77
+ - lib/tasks/javascript_lint_task.rb
78
+ - lib/tasks/jspec_runner.rb
79
+ - lib/tasks/jspec_task.rb
80
+ - lib/tasks/list_task.rb
81
+ - loris.tmproj
82
+ - spec/file_actioner_spec.rb
83
+ - spec/file_filter_spec.rb
84
+ - spec/file_finder_spec.rb
85
+ - spec/growl_output_spec.rb
86
+ - spec/jspec_task_spec.rb
87
+ - spec/list_task_spec.rb
88
+ - spec/modified_filter_spec.rb
89
+ - spec/poller_spec.rb
90
+ - spec/shell_output_spec.rb
91
+ - spec/task_manager_spec.rb
47
92
  has_rdoc: false
48
- homepage: http://wiki.github.com/karl/loris
49
- post_install_message: |
50
-
51
- Loris Installed!
52
-
93
+ homepage: http://github.com/karl/loris
94
+ licenses:
95
+ post_install_message:
53
96
  rdoc_options:
54
- - --main
55
- - README.rdoc
97
+ - --charset=UTF-8
56
98
  require_paths:
57
99
  - lib
58
100
  required_ruby_version: !ruby/object:Gem::Requirement
@@ -69,10 +111,19 @@ required_rubygems_version: !ruby/object:Gem::Requirement
69
111
  version:
70
112
  requirements: []
71
113
 
72
- rubyforge_project: loris
73
- rubygems_version: 1.2.0
114
+ rubyforge_project:
115
+ rubygems_version: 1.3.5
74
116
  signing_key:
75
- specification_version: 2
76
- summary: Automatically run tasks on file system changes (unit tests, acceptance tests, etc)
77
- test_files: []
78
-
117
+ specification_version: 3
118
+ summary: "TODO: Automatically run javascript tests"
119
+ test_files:
120
+ - spec/file_actioner_spec.rb
121
+ - spec/file_filter_spec.rb
122
+ - spec/file_finder_spec.rb
123
+ - spec/growl_output_spec.rb
124
+ - spec/jspec_task_spec.rb
125
+ - spec/list_task_spec.rb
126
+ - spec/modified_filter_spec.rb
127
+ - spec/poller_spec.rb
128
+ - spec/shell_output_spec.rb
129
+ - spec/task_manager_spec.rb
@@ -1,33 +0,0 @@
1
- # -*- encoding: utf-8 -*-
2
-
3
- Gem::Specification.new do |s|
4
- s.name = %q{loris}
5
- s.version = "0.0.5"
6
-
7
- s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
- s.authors = ["Karl O'Keeffe"]
9
- s.date = %q{2009-07-12}
10
- s.description = %q{Automatically run tasks on file system changes (unit tests, acceptance tests, etc)}
11
- s.email = ["loris@monket.net"]
12
- s.extra_rdoc_files = ["README.rdoc"]
13
-
14
- s.files = ["README.rdoc", "loris.gemspec"] + Dir['bin/*'] + Dir['lib/**/*'] + Dir['spec/**/*.rb']
15
- s.default_executable = %q{loris}
16
- s.executables = ["loris"]
17
-
18
- s.homepage = %q{http://wiki.github.com/karl/loris}
19
- s.post_install_message = %q{
20
- Loris Installed!
21
- }
22
- s.rdoc_options = ["--main", "README.rdoc"]
23
- s.require_paths = ["lib"]
24
- s.rubyforge_project = %q{loris}
25
- s.rubygems_version = %q{1.3.3}
26
- s.summary = %q{Automatically run tasks on file system changes (unit tests, acceptance tests, etc)}
27
-
28
- s.add_dependency(%q<visionmedia-bind>, [">= 0.2.6"])
29
- s.add_dependency(%q<karl-growl>, [">= 1.0.3"])
30
-
31
- # javascript lint
32
- # jspec
33
- end