doc 0.2.4 → 0.2.5

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/doc.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = 'doc'
5
- s.version = '0.2.4'
5
+ s.version = '0.2.5'
6
6
  s.summary = %q{Get all ruby documentation in one place}
7
7
  s.description = %Q{Generate `Rakefile` with `docr` and get searchable documentation for ruby, rails, gems, plugins and all other ruby code in one place}
8
8
  s.homepage = "http://github.com/toy/#{s.name}"
@@ -33,14 +33,14 @@ module Doc
33
33
  last_updated_path = base_dir / '.last_updated'
34
34
  update ||= last_updated_path.exist? ? (Time.now > last_updated_path.mtime + min_update_interval) : true
35
35
 
36
- configurators.with_progress('config/update').each do |configurator|
36
+ configurators.with_progress('configuring and updating').each do |configurator|
37
37
  configurator.configure(update)
38
38
  end
39
39
  last_updated_path.touch if update
40
40
 
41
41
  RootMerger.new(self, {
42
42
  :title => title,
43
- :tasks => configurators.with_progress('tasks').map(&:tasks).flatten
43
+ :tasks => configurators.with_progress('generating tasks').map(&:tasks).flatten
44
44
  })
45
45
  end
46
46
 
data/lib/doc/merger.rb CHANGED
@@ -17,7 +17,7 @@ module Doc
17
17
  RUBY
18
18
 
19
19
  def run
20
- tasks.with_progress('build').each do |task|
20
+ tasks.with_progress('building documentation').each do |task|
21
21
  Progress.note = task.dir_name
22
22
  task.run
23
23
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: doc
3
3
  version: !ruby/object:Gem::Version
4
- hash: 31
4
+ hash: 29
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 2
9
- - 4
10
- version: 0.2.4
9
+ - 5
10
+ version: 0.2.5
11
11
  platform: ruby
12
12
  authors:
13
13
  - Ivan Kuchin
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-12-18 00:00:00 Z
18
+ date: 2012-01-03 00:00:00 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: sdoc