rautomation 0.2.0 → 0.2.1
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/.gitignore +4 -1
- data/.yardopts +6 -0
- data/History.rdoc +4 -0
- data/Rakefile +2 -9
- data/VERSION +1 -1
- data/rautomation.gemspec +2 -1
- metadata +4 -3
data/.gitignore
CHANGED
data/.yardopts
ADDED
data/History.rdoc
CHANGED
data/Rakefile
CHANGED
|
@@ -35,12 +35,5 @@ task :spec => :check_dependencies
|
|
|
35
35
|
|
|
36
36
|
task :default => :spec
|
|
37
37
|
|
|
38
|
-
require '
|
|
39
|
-
Rake::
|
|
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.
|
|
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.
|
|
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:
|
|
4
|
+
hash: 21
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 2
|
|
9
|
-
-
|
|
10
|
-
version: 0.2.
|
|
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
|