rubbr 1.0.6 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,7 @@
1
+ == 1.1.0 / 2008-04-06
2
+
3
+ * Source files are now compiled only if they've changed since last build.
4
+
1
5
  == 1.0.6 / 2008-04-01
2
6
 
3
7
  * New option: more verbose output.
@@ -2,13 +2,13 @@ require 'optparse'
2
2
  $:.unshift File.dirname(__FILE__)
3
3
 
4
4
  module Rubbr
5
- VERSION = '1.0.6'
5
+ VERSION = '1.1.0'
6
6
 
7
7
  autoload :Options, 'rubbr/options'
8
8
  autoload :Cli, 'rubbr/cli'
9
9
  autoload :Config, 'rubbr/config'
10
10
  autoload :Scm, 'rubbr/scm'
11
- autoload :Template, 'rubbr/template'
11
+ autoload :Change, 'rubbr/change'
12
12
  autoload :Runner, 'rubbr/runner'
13
13
  autoload :Builder, 'rubbr/builder'
14
14
  autoload :Viewer, 'rubbr/viewer'
@@ -12,6 +12,8 @@ module Rubbr
12
12
 
13
13
  # Build to the spesified format.
14
14
  def self.build
15
+ return unless Rubbr::Change.d?
16
+
15
17
  if Rubbr.options[:engine] == :pdflatex
16
18
  Rubbr::Builder::Tex.build
17
19
  else
@@ -16,6 +16,7 @@ module Rubbr
16
16
  :graphics_dir => source_dir + '/graphics',
17
17
  :spell_dir => source_dir,
18
18
  :spell_file => 'dictionary.ispell',
19
+ :inventory_file => '.inventory',
19
20
  :distribution_name => distribution_name(root_dir),
20
21
  :verbose => false,
21
22
  :verboser => false,
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubbr
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.6
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eivind Uggedal
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-04-01 00:00:00 +02:00
12
+ date: 2008-04-06 00:00:00 +02:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency