xxx-integrity-script 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,11 +1,6 @@
1
1
  require "test/unit"
2
2
  require "integrity/notifier/test"
3
3
 
4
- begin
5
- require "redgreen"
6
- rescue LoadError
7
- end
8
-
9
4
  require File.dirname(__FILE__) + "/../lib/integrity/notifier/script"
10
5
 
11
6
  class IntegrityScriptTest < Test::Unit::TestCase
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: xxx-integrity-script
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Dungan
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-09-14 00:00:00 -07:00
12
+ date: 2009-09-15 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies: []
15
15
 
@@ -22,14 +22,8 @@ extensions: []
22
22
  extra_rdoc_files:
23
23
  - README.markdown
24
24
  files:
25
- - README.markdown
26
- - VERSION
27
- - Rakefile
28
- - integrity-script.gemspec
29
- - lib/integrity/notifier/config.haml
30
25
  - lib/integrity/notifier/script.rb
31
- - test/integrity_script_test.rb
32
- - test/test_script.rb
26
+ - README.markdown
33
27
  has_rdoc: false
34
28
  homepage: http://github.com/xxx/integrity-script
35
29
  post_install_message:
data/Rakefile DELETED
@@ -1,26 +0,0 @@
1
- task :default => :test
2
-
3
- task :test do
4
- ruby "test/integrity_script_test.rb"
5
- end
6
-
7
- begin
8
- require 'jeweler'
9
- Jeweler::Tasks.new do |gemspec|
10
- gemspec.name = "integrity-script"
11
- gemspec.summary = "Integrity notifier that runs an arbitrary script"
12
- gemspec.description = "This notifier will execute a script of your choosing, passing pass/fail as well as any extra args you choose to it. It was originally conceived to be used to talk to an Arduino board"
13
- gemspec.email = "mpd@jesters-court.net"
14
- gemspec.homepage = "http://github.com/xxx/integrity-script"
15
- gemspec.authors = ["Michael Dungan"]
16
- end
17
- rescue LoadError
18
- puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
19
- end
20
-
21
-
22
- #begin
23
- # require "mg"
24
- # MG.new("integrity-script.gemspec")
25
- #rescue LoadError
26
- #end
data/VERSION DELETED
@@ -1 +0,0 @@
1
- 0.1.1
@@ -1,50 +0,0 @@
1
- # Generated by jeweler
2
- # DO NOT EDIT THIS FILE
3
- # Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
4
- # -*- encoding: utf-8 -*-
5
-
6
- Gem::Specification.new do |s|
7
- s.name = %q{integrity-script}
8
- s.version = "0.1.0"
9
-
10
- s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
- s.authors = ["Michael Dungan"]
12
- s.date = %q{2009-09-14}
13
- s.description = %q{This notifier will execute a script of your choosing, passing pass/fail as well as any extra args you choose to it. It was originally conceived to be used to talk to an Arduino board}
14
- s.email = %q{mpd@jesters-court.net}
15
- s.extra_rdoc_files = [
16
- "README.markdown"
17
- ]
18
- s.files = [
19
- "VERSION"
20
- ]
21
- s.homepage = %q{http://github.com/xxx/integrity-script}
22
- s.rdoc_options = ["--charset=UTF-8"]
23
- s.rubygems_version = %q{1.3.5}
24
- s.summary = %q{Integrity notifier that runs an arbitrary script}
25
- s.test_files = [
26
- "test/integrity_script_test.rb",
27
- "test/test_script.rb"
28
- ]
29
-
30
- s.files = %w[
31
- README.markdown
32
- VERSION
33
- Rakefile
34
- integrity-script.gemspec
35
- lib/integrity/notifier/config.haml
36
- lib/integrity/notifier/script.rb
37
- test/integrity_script_test.rb
38
- test/test_script.rb
39
- ]
40
-
41
- if s.respond_to? :specification_version then
42
- current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
43
- s.specification_version = 3
44
-
45
- if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
46
- else
47
- end
48
- else
49
- end
50
- end
@@ -1,8 +0,0 @@
1
- %p.normal
2
- %label{ :for => "script_notifier_script_path" } Script path (make sure it's readable and executable!)
3
- %input.text#script_notifier_script_path{ :name => "notifiers[Script][script_path]", :type => "text", :value => config["script_path"] }
4
-
5
- %p.normal
6
- %label{ :for => "script_notifier_extra_args" } Extra args, to be added at the end of the invocation.
7
- %input.text#script_notifier_extra_args{ :name => "notifiers[Script][extra_args]", :type => "text", :value => config["extra_args"] }
8
-