carlosbrando-autotest-notification 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,32 +1,38 @@
1
1
  Gem::Specification.new do |s|
2
- s.name = %q{autotest-notification}
3
- s.version = "0.0.1"
4
-
5
- s.specification_version = 2 if s.respond_to? :specification_version=
6
-
7
- s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
2
+ s.name = "autotest-notification"
3
+ s.version = "0.0.2"
4
+ s.date = "2008-05-11"
5
+ s.summary = "Set the autotest to display messages through software such as Growl"
6
+ s.email = "eduardobrando@gmail.com"
7
+ s.homepage = "http://github.com/carlosbrando/autotest-notification"
8
+ s.description = "Set the autotest to display messages through software such as Growl"
9
+ s.has_rdoc = true
8
10
  s.authors = ["Carlos Brando"]
9
- s.date = %q{2008-05-11}
10
- s.default_executable = %q{an-install}
11
- s.description = %q{Set the autotest to display messages through software such as Growl}
12
- s.email = ["eduardobrando@gmail.com"]
13
- s.executables = ["an-install"]
14
- s.extra_rdoc_files = ["History.txt", "License.txt", "Manifest.txt", "PostInstall.txt", "README.txt", "website/index.txt"]
15
11
  s.files = ["History.txt", "License.txt", "Manifest.txt", "PostInstall.txt", "README.txt", "Rakefile", "config/hoe.rb", "config/requirements.rb", "lib/autotest_notification.rb", "lib/autotest_notification/version.rb", "script/console", "script/destroy", "script/generate", "script/txt2html", "setup.rb", "tasks/deployment.rake", "tasks/environment.rake", "tasks/website.rake", "test/test_autotest_notification.rb", "test/test_helper.rb", "website/index.html", "website/index.txt", "website/javascripts/rounded_corners_lite.inc.js", "website/stylesheets/screen.css", "website/template.html.erb", "bin/an-install", "images/pass.png", "images/fail.png", "autotest-notification.gemspec"]
16
- s.has_rdoc = true
17
- s.homepage = %q{http://autotest-notification.rubyforge.org}
18
- s.post_install_message = %q{
19
- For more information on autotest_notification, see http://autotest_notification.rubyforge.org
12
+ s.test_files = ["test/test_autotest_notification.rb", "test/test_helper.rb"]
13
+ s.rdoc_options = ["--main", "README.txt"]
14
+ s.extra_rdoc_files = ["History.txt", "License.txt", "Manifest.txt", "PostInstall.txt", "README.txt", "website/index.txt"]
20
15
 
21
- NOTE: Change this information in PostInstall.txt
22
- You can also delete it if you don't want it.
23
16
 
17
+
18
+ # s.specification_version = 2 if s.respond_to? :specification_version=
24
19
 
25
- }
26
- s.rdoc_options = ["--main", "README.txt"]
27
- s.require_paths = ["lib"]
28
- s.rubyforge_project = %q{autotest-notification}
29
- s.rubygems_version = %q{1.1.1}
30
- s.summary = %q{Set the autotest to display messages through software such as Growl}
31
- s.test_files = ["test/test_autotest_notification.rb", "test/test_helper.rb"]
32
- end
20
+ # s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
21
+
22
+
23
+ # s.default_executable = %q{an-install}
24
+ # s.executables = ["an-install"]
25
+
26
+ # s.post_install_message = %q{
27
+ # For more information on autotest_notification, see http://autotest_notification.rubyforge.org
28
+ #
29
+ # NOTE: Change this information in PostInstall.txt
30
+ # You can also delete it if you don't want it.
31
+ #
32
+ #
33
+ # }
34
+
35
+ # s.require_paths = ["lib"]
36
+ # s.rubyforge_project = %q{autotestnotific}
37
+ # s.rubygems_version = %q{1.1.1}
38
+ end
data/bin/an-install CHANGED
@@ -11,7 +11,6 @@ end
11
11
 
12
12
  require 'optparse'
13
13
  require 'ftools'
14
- require "ruby-debug"
15
14
 
16
15
  # NOTE: the option -p/--path= is given as an example, and should probably be replaced in your application.
17
16
 
@@ -45,5 +44,5 @@ path = OPTIONS[:path]
45
44
 
46
45
  f = File.new(File.expand_path(path) + "/.autotest", "w")
47
46
  f.write "# ~.autotest\n"
48
- f.write "require 'carlosbrando-autotest-notification'"
47
+ f.write "require 'autotest-notification'"
49
48
  f.close
data/config/hoe.rb CHANGED
@@ -4,7 +4,7 @@ AUTHOR = 'Carlos Brando' # can also be an array of Authors
4
4
  EMAIL = "eduardobrando@gmail.com"
5
5
  DESCRIPTION = "Set the autotest to display messages through software such as Growl"
6
6
  GEM_NAME = 'autotest-notification' # what ppl will type to install your gem
7
- RUBYFORGE_PROJECT = 'autotest-notification' # The unix name for your project
7
+ RUBYFORGE_PROJECT = 'autotestnotific' # The unix name for your project
8
8
  HOMEPATH = "http://#{RUBYFORGE_PROJECT}.rubyforge.org"
9
9
  DOWNLOAD_PATH = "http://rubyforge.org/projects/#{RUBYFORGE_PROJECT}"
10
10
  EXTRA_DEPENDENCIES = [
@@ -2,7 +2,7 @@ module AutotestNotification #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 0
5
- TINY = 1
5
+ TINY = 2
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: carlosbrando-autotest-notification
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Carlos Brando
@@ -10,14 +10,13 @@ bindir: bin
10
10
  cert_chain: []
11
11
 
12
12
  date: 2008-05-11 00:00:00 -07:00
13
- default_executable: an-install
13
+ default_executable:
14
14
  dependencies: []
15
15
 
16
16
  description: Set the autotest to display messages through software such as Growl
17
- email:
18
- - eduardobrando@gmail.com
19
- executables:
20
- - an-install
17
+ email: eduardobrando@gmail.com
18
+ executables: []
19
+
21
20
  extensions: []
22
21
 
23
22
  extra_rdoc_files:
@@ -58,15 +57,8 @@ files:
58
57
  - images/fail.png
59
58
  - autotest-notification.gemspec
60
59
  has_rdoc: true
61
- homepage: http://autotest-notification.rubyforge.org
62
- post_install_message: |+
63
-
64
- For more information on autotest_notification, see http://autotest_notification.rubyforge.org
65
-
66
- NOTE: Change this information in PostInstall.txt
67
- You can also delete it if you don't want it.
68
-
69
-
60
+ homepage: http://github.com/carlosbrando/autotest-notification
61
+ post_install_message:
70
62
  rdoc_options:
71
63
  - --main
72
64
  - README.txt
@@ -86,7 +78,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
86
78
  version:
87
79
  requirements: []
88
80
 
89
- rubyforge_project: autotest-notification
81
+ rubyforge_project:
90
82
  rubygems_version: 1.0.1
91
83
  signing_key:
92
84
  specification_version: 2