be9-rubbr 1.1.5 → 1.1.5.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 +2 -0
 - data/Gemfile +4 -0
 - data/Rakefile +2 -26
 - data/lib/rubbr/builder/tex.rb +1 -1
 - data/lib/rubbr.rb +1 -1
 - data/rubbr.gemspec +21 -0
 - metadata +33 -61
 
    
        data/.gitignore
    ADDED
    
    
    
        data/Gemfile
    ADDED
    
    
    
        data/Rakefile
    CHANGED
    
    | 
         @@ -1,26 +1,2 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            require ' 
     | 
| 
       2 
     | 
    
         
            -
             
     | 
| 
       3 
     | 
    
         
            -
            require 'spec/rake/spectask'
         
     | 
| 
       4 
     | 
    
         
            -
            require './lib/rubbr.rb'
         
     | 
| 
       5 
     | 
    
         
            -
             
     | 
| 
       6 
     | 
    
         
            -
            Hoe.new('be9-rubbr', Rubbr::VERSION) do |p|
         
     | 
| 
       7 
     | 
    
         
            -
            #  p.rubyforge_name = 'rubbr'
         
     | 
| 
       8 
     | 
    
         
            -
              p.author = 'Eivind Uggedal'
         
     | 
| 
       9 
     | 
    
         
            -
              p.email = 'eu@redflavor.com'
         
     | 
| 
       10 
     | 
    
         
            -
              p.summary = 'LaTeX builder'
         
     | 
| 
       11 
     | 
    
         
            -
              # p.description = p.paragraphs_of('README.txt', 2..5).join("\n\n")
         
     | 
| 
       12 
     | 
    
         
            -
              # p.url = p.paragraphs_of('README.txt', 0).first.split(/\n/)[1..-1]
         
     | 
| 
       13 
     | 
    
         
            -
              p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n")
         
     | 
| 
       14 
     | 
    
         
            -
              p.remote_rdoc_dir = ''
         
     | 
| 
       15 
     | 
    
         
            -
            end
         
     | 
| 
       16 
     | 
    
         
            -
             
     | 
| 
       17 
     | 
    
         
            -
            desc "Run all specs"
         
     | 
| 
       18 
     | 
    
         
            -
            Spec::Rake::SpecTask.new('specs') do |t|
         
     | 
| 
       19 
     | 
    
         
            -
              t.spec_opts = ["--format", "specdoc", "--colour"]
         
     | 
| 
       20 
     | 
    
         
            -
              t.spec_files = Dir['specs/*_spec.rb'].sort
         
     | 
| 
       21 
     | 
    
         
            -
            end
         
     | 
| 
       22 
     | 
    
         
            -
             
     | 
| 
       23 
     | 
    
         
            -
            task :cultivate do
         
     | 
| 
       24 
     | 
    
         
            -
              system "touch Manifest.txt; rake check_manifest | grep -v \"(in \" | patch"
         
     | 
| 
       25 
     | 
    
         
            -
              system "rake debug_gem | grep -v \"(in \" > `basename \\`pwd\\``.gemspec"
         
     | 
| 
       26 
     | 
    
         
            -
            end
         
     | 
| 
      
 1 
     | 
    
         
            +
            require 'bundler'
         
     | 
| 
      
 2 
     | 
    
         
            +
            Bundler::GemHelper.install_tasks
         
     | 
    
        data/lib/rubbr/builder/tex.rb
    CHANGED
    
    
    
        data/lib/rubbr.rb
    CHANGED
    
    
    
        data/rubbr.gemspec
    ADDED
    
    | 
         @@ -0,0 +1,21 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # -*- encoding: utf-8 -*-
         
     | 
| 
      
 2 
     | 
    
         
            +
            $:.push File.expand_path("../lib", __FILE__)
         
     | 
| 
      
 3 
     | 
    
         
            +
            require "rubbr"
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
            Gem::Specification.new do |s|
         
     | 
| 
      
 6 
     | 
    
         
            +
              s.name        = "be9-rubbr"
         
     | 
| 
      
 7 
     | 
    
         
            +
              s.version     = Rubbr::VERSION
         
     | 
| 
      
 8 
     | 
    
         
            +
              s.platform    = Gem::Platform::RUBY
         
     | 
| 
      
 9 
     | 
    
         
            +
              s.authors     = ["Eivind Uggedal", "Oleg Dashevskii"]
         
     | 
| 
      
 10 
     | 
    
         
            +
              s.email       = ["olegdashevskii@gmail.com"]
         
     | 
| 
      
 11 
     | 
    
         
            +
              s.homepage    = "http://github.com/be9/rubbr"
         
     | 
| 
      
 12 
     | 
    
         
            +
              s.summary     = %q{LaTeX builder}
         
     | 
| 
      
 13 
     | 
    
         
            +
              s.description = %q{Build LaTeX documents.}
         
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
      
 15 
     | 
    
         
            +
              s.rubyforge_project = "rubbr"
         
     | 
| 
      
 16 
     | 
    
         
            +
             
     | 
| 
      
 17 
     | 
    
         
            +
              s.files         = `git ls-files`.split("\n")
         
     | 
| 
      
 18 
     | 
    
         
            +
              s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
         
     | 
| 
      
 19 
     | 
    
         
            +
              s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
         
     | 
| 
      
 20 
     | 
    
         
            +
              s.require_paths = ["lib"]
         
     | 
| 
      
 21 
     | 
    
         
            +
            end
         
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,66 +1,38 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification 
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: be9-rubbr
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version 
         
     | 
| 
       4 
     | 
    
         
            -
              hash:  
     | 
| 
       5 
     | 
    
         
            -
              prerelease:  
     | 
| 
      
 4 
     | 
    
         
            +
              hash: 65
         
     | 
| 
      
 5 
     | 
    
         
            +
              prerelease: 
         
     | 
| 
       6 
6 
     | 
    
         
             
              segments: 
         
     | 
| 
       7 
7 
     | 
    
         
             
              - 1
         
     | 
| 
       8 
8 
     | 
    
         
             
              - 1
         
     | 
| 
       9 
9 
     | 
    
         
             
              - 5
         
     | 
| 
       10 
     | 
    
         
            -
               
     | 
| 
      
 10 
     | 
    
         
            +
              - 1
         
     | 
| 
      
 11 
     | 
    
         
            +
              version: 1.1.5.1
         
     | 
| 
       11 
12 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       12 
13 
     | 
    
         
             
            authors: 
         
     | 
| 
       13 
14 
     | 
    
         
             
            - Eivind Uggedal
         
     | 
| 
      
 15 
     | 
    
         
            +
            - Oleg Dashevskii
         
     | 
| 
       14 
16 
     | 
    
         
             
            autorequire: 
         
     | 
| 
       15 
17 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       16 
18 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       17 
19 
     | 
    
         | 
| 
       18 
     | 
    
         
            -
            date:  
     | 
| 
      
 20 
     | 
    
         
            +
            date: 2011-04-14 00:00:00 +07:00
         
     | 
| 
       19 
21 
     | 
    
         
             
            default_executable: 
         
     | 
| 
       20 
     | 
    
         
            -
            dependencies: 
         
     | 
| 
       21 
     | 
    
         
            -
             
     | 
| 
       22 
     | 
    
         
            -
              name: rubyforge
         
     | 
| 
       23 
     | 
    
         
            -
              prerelease: false
         
     | 
| 
       24 
     | 
    
         
            -
              requirement: &id001 !ruby/object:Gem::Requirement 
         
     | 
| 
       25 
     | 
    
         
            -
                none: false
         
     | 
| 
       26 
     | 
    
         
            -
                requirements: 
         
     | 
| 
       27 
     | 
    
         
            -
                - - ">="
         
     | 
| 
       28 
     | 
    
         
            -
                  - !ruby/object:Gem::Version 
         
     | 
| 
       29 
     | 
    
         
            -
                    hash: 7
         
     | 
| 
       30 
     | 
    
         
            -
                    segments: 
         
     | 
| 
       31 
     | 
    
         
            -
                    - 2
         
     | 
| 
       32 
     | 
    
         
            -
                    - 0
         
     | 
| 
       33 
     | 
    
         
            -
                    - 4
         
     | 
| 
       34 
     | 
    
         
            -
                    version: 2.0.4
         
     | 
| 
       35 
     | 
    
         
            -
              type: :development
         
     | 
| 
       36 
     | 
    
         
            -
              version_requirements: *id001
         
     | 
| 
       37 
     | 
    
         
            -
            - !ruby/object:Gem::Dependency 
         
     | 
| 
       38 
     | 
    
         
            -
              name: hoe
         
     | 
| 
       39 
     | 
    
         
            -
              prerelease: false
         
     | 
| 
       40 
     | 
    
         
            -
              requirement: &id002 !ruby/object:Gem::Requirement 
         
     | 
| 
       41 
     | 
    
         
            -
                none: false
         
     | 
| 
       42 
     | 
    
         
            -
                requirements: 
         
     | 
| 
       43 
     | 
    
         
            -
                - - ">="
         
     | 
| 
       44 
     | 
    
         
            -
                  - !ruby/object:Gem::Version 
         
     | 
| 
       45 
     | 
    
         
            -
                    hash: 21
         
     | 
| 
       46 
     | 
    
         
            -
                    segments: 
         
     | 
| 
       47 
     | 
    
         
            -
                    - 2
         
     | 
| 
       48 
     | 
    
         
            -
                    - 6
         
     | 
| 
       49 
     | 
    
         
            -
                    - 1
         
     | 
| 
       50 
     | 
    
         
            -
                    version: 2.6.1
         
     | 
| 
       51 
     | 
    
         
            -
              type: :development
         
     | 
| 
       52 
     | 
    
         
            -
              version_requirements: *id002
         
     | 
| 
      
 22 
     | 
    
         
            +
            dependencies: []
         
     | 
| 
      
 23 
     | 
    
         
            +
             
     | 
| 
       53 
24 
     | 
    
         
             
            description: Build LaTeX documents.
         
     | 
| 
       54 
     | 
    
         
            -
            email:  
     | 
| 
      
 25 
     | 
    
         
            +
            email: 
         
     | 
| 
      
 26 
     | 
    
         
            +
            - olegdashevskii@gmail.com
         
     | 
| 
       55 
27 
     | 
    
         
             
            executables: 
         
     | 
| 
       56 
28 
     | 
    
         
             
            - rubbr
         
     | 
| 
       57 
29 
     | 
    
         
             
            extensions: []
         
     | 
| 
       58 
30 
     | 
    
         | 
| 
       59 
     | 
    
         
            -
            extra_rdoc_files: 
         
     | 
| 
       60 
     | 
    
         
            -
             
     | 
| 
       61 
     | 
    
         
            -
            - Manifest.txt
         
     | 
| 
       62 
     | 
    
         
            -
            - README.txt
         
     | 
| 
      
 31 
     | 
    
         
            +
            extra_rdoc_files: []
         
     | 
| 
      
 32 
     | 
    
         
            +
             
     | 
| 
       63 
33 
     | 
    
         
             
            files: 
         
     | 
| 
      
 34 
     | 
    
         
            +
            - .gitignore
         
     | 
| 
      
 35 
     | 
    
         
            +
            - Gemfile
         
     | 
| 
       64 
36 
     | 
    
         
             
            - History.txt
         
     | 
| 
       65 
37 
     | 
    
         
             
            - Manifest.txt
         
     | 
| 
       66 
38 
     | 
    
         
             
            - README.txt
         
     | 
| 
         @@ -68,35 +40,35 @@ files: 
     | 
|
| 
       68 
40 
     | 
    
         
             
            - bin/rubbr
         
     | 
| 
       69 
41 
     | 
    
         
             
            - lib/rubbr.rb
         
     | 
| 
       70 
42 
     | 
    
         
             
            - lib/rubbr/builder.rb
         
     | 
| 
      
 43 
     | 
    
         
            +
            - lib/rubbr/builder/dvi.rb
         
     | 
| 
      
 44 
     | 
    
         
            +
            - lib/rubbr/builder/ps.rb
         
     | 
| 
      
 45 
     | 
    
         
            +
            - lib/rubbr/builder/tex.rb
         
     | 
| 
       71 
46 
     | 
    
         
             
            - lib/rubbr/change.rb
         
     | 
| 
       72 
47 
     | 
    
         
             
            - lib/rubbr/cli.rb
         
     | 
| 
       73 
48 
     | 
    
         
             
            - lib/rubbr/options.rb
         
     | 
| 
       74 
49 
     | 
    
         
             
            - lib/rubbr/runner.rb
         
     | 
| 
       75 
     | 
    
         
            -
            - lib/rubbr/scm.rb
         
     | 
| 
       76 
     | 
    
         
            -
            - lib/rubbr/spell.rb
         
     | 
| 
       77 
     | 
    
         
            -
            - lib/rubbr/viewer.rb
         
     | 
| 
       78 
     | 
    
         
            -
            - lib/rubbr/builder/tex.rb
         
     | 
| 
       79 
     | 
    
         
            -
            - lib/rubbr/builder/ps.rb
         
     | 
| 
       80 
     | 
    
         
            -
            - lib/rubbr/builder/dvi.rb
         
     | 
| 
       81 
     | 
    
         
            -
            - lib/rubbr/runner/ps2pdf.rb
         
     | 
| 
       82 
     | 
    
         
            -
            - lib/rubbr/runner/pdflatex.rb
         
     | 
| 
       83 
     | 
    
         
            -
            - lib/rubbr/runner/latex.rb
         
     | 
| 
       84 
     | 
    
         
            -
            - lib/rubbr/runner/dvips.rb
         
     | 
| 
       85 
50 
     | 
    
         
             
            - lib/rubbr/runner/bibtex.rb
         
     | 
| 
      
 51 
     | 
    
         
            +
            - lib/rubbr/runner/dvips.rb
         
     | 
| 
      
 52 
     | 
    
         
            +
            - lib/rubbr/runner/latex.rb
         
     | 
| 
      
 53 
     | 
    
         
            +
            - lib/rubbr/runner/pdflatex.rb
         
     | 
| 
      
 54 
     | 
    
         
            +
            - lib/rubbr/runner/ps2pdf.rb
         
     | 
| 
      
 55 
     | 
    
         
            +
            - lib/rubbr/scm.rb
         
     | 
| 
       86 
56 
     | 
    
         
             
            - lib/rubbr/scm/git.rb
         
     | 
| 
       87 
     | 
    
         
            -
            - lib/rubbr/scm/subversion.rb
         
     | 
| 
       88 
57 
     | 
    
         
             
            - lib/rubbr/scm/mercurial.rb
         
     | 
| 
       89 
     | 
    
         
            -
            - lib/rubbr/ 
     | 
| 
       90 
     | 
    
         
            -
            - lib/rubbr/ 
     | 
| 
      
 58 
     | 
    
         
            +
            - lib/rubbr/scm/subversion.rb
         
     | 
| 
      
 59 
     | 
    
         
            +
            - lib/rubbr/spell.rb
         
     | 
| 
      
 60 
     | 
    
         
            +
            - lib/rubbr/viewer.rb
         
     | 
| 
       91 
61 
     | 
    
         
             
            - lib/rubbr/viewer/dvi.rb
         
     | 
| 
      
 62 
     | 
    
         
            +
            - lib/rubbr/viewer/pdf.rb
         
     | 
| 
      
 63 
     | 
    
         
            +
            - lib/rubbr/viewer/ps.rb
         
     | 
| 
      
 64 
     | 
    
         
            +
            - rubbr.gemspec
         
     | 
| 
       92 
65 
     | 
    
         
             
            has_rdoc: true
         
     | 
| 
       93 
     | 
    
         
            -
            homepage: http:// 
     | 
| 
      
 66 
     | 
    
         
            +
            homepage: http://github.com/be9/rubbr
         
     | 
| 
       94 
67 
     | 
    
         
             
            licenses: []
         
     | 
| 
       95 
68 
     | 
    
         | 
| 
       96 
69 
     | 
    
         
             
            post_install_message: 
         
     | 
| 
       97 
     | 
    
         
            -
            rdoc_options: 
         
     | 
| 
       98 
     | 
    
         
            -
             
     | 
| 
       99 
     | 
    
         
            -
            - README.txt
         
     | 
| 
      
 70 
     | 
    
         
            +
            rdoc_options: []
         
     | 
| 
      
 71 
     | 
    
         
            +
             
     | 
| 
       100 
72 
     | 
    
         
             
            require_paths: 
         
     | 
| 
       101 
73 
     | 
    
         
             
            - lib
         
     | 
| 
       102 
74 
     | 
    
         
             
            required_ruby_version: !ruby/object:Gem::Requirement 
         
     | 
| 
         @@ -119,8 +91,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement 
     | 
|
| 
       119 
91 
     | 
    
         
             
                  version: "0"
         
     | 
| 
       120 
92 
     | 
    
         
             
            requirements: []
         
     | 
| 
       121 
93 
     | 
    
         | 
| 
       122 
     | 
    
         
            -
            rubyforge_project:  
     | 
| 
       123 
     | 
    
         
            -
            rubygems_version: 1. 
     | 
| 
      
 94 
     | 
    
         
            +
            rubyforge_project: rubbr
         
     | 
| 
      
 95 
     | 
    
         
            +
            rubygems_version: 1.6.2
         
     | 
| 
       124 
96 
     | 
    
         
             
            signing_key: 
         
     | 
| 
       125 
97 
     | 
    
         
             
            specification_version: 3
         
     | 
| 
       126 
98 
     | 
    
         
             
            summary: LaTeX builder
         
     |