rautomation 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore CHANGED
@@ -19,4 +19,7 @@ rdoc
19
19
  pkg
20
20
 
21
21
  ## PROJECT::SPECIFIC
22
- .idea/*
22
+ .idea/*
23
+
24
+ .yardoc/
25
+ doc/
data/.yardopts ADDED
@@ -0,0 +1,6 @@
1
+ --readme README.rdoc
2
+ --no-private
3
+ --hide-void-return
4
+ --title "RAutomation"
5
+ --files History.rdoc,LICENSE
6
+ --default-return ""
data/History.rdoc CHANGED
@@ -1,3 +1,7 @@
1
+ === Version 0.2.1 / 2010-12-17
2
+
3
+ * added yard options for documentation
4
+
1
5
  === Version 0.2.0 / 2010-12-17
2
6
 
3
7
  * added Window#pid method
data/Rakefile CHANGED
@@ -35,12 +35,5 @@ task :spec => :check_dependencies
35
35
 
36
36
  task :default => :spec
37
37
 
38
- require 'rake/rdoctask'
39
- Rake::RDocTask.new do |rdoc|
40
- version = File.exist?('VERSION') ? File.read('VERSION') : ""
41
-
42
- rdoc.rdoc_dir = 'rdoc'
43
- rdoc.title = "RAutomation #{version}"
44
- rdoc.rdoc_files.include('README*')
45
- rdoc.rdoc_files.include('lib/**/*.rb')
46
- end
38
+ require 'yard'
39
+ YARD::Rake::YardocTask.new
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.0
1
+ 0.2.1
data/rautomation.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{rautomation}
8
- s.version = "0.2.0"
8
+ s.version = "0.2.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Jarmo Pertman"]
@@ -27,6 +27,7 @@ RAutomation provides:
27
27
  ".document",
28
28
  ".gitignore",
29
29
  ".rspec",
30
+ ".yardopts",
30
31
  "History.rdoc",
31
32
  "LICENSE",
32
33
  "README.rdoc",
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rautomation
3
3
  version: !ruby/object:Gem::Version
4
- hash: 23
4
+ hash: 21
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 2
9
- - 0
10
- version: 0.2.0
9
+ - 1
10
+ version: 0.2.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Jarmo Pertman
@@ -54,6 +54,7 @@ files:
54
54
  - .document
55
55
  - .gitignore
56
56
  - .rspec
57
+ - .yardopts
57
58
  - History.rdoc
58
59
  - LICENSE
59
60
  - README.rdoc