rant 0.3.0
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/COPYING +504 -0
 - data/README +203 -0
 - data/Rantfile +104 -0
 - data/TODO +19 -0
 - data/bin/rant +12 -0
 - data/bin/rant-import +12 -0
 - data/devel-notes +50 -0
 - data/doc/configure.rdoc +40 -0
 - data/doc/csharp.rdoc +74 -0
 - data/doc/rant-import.rdoc +32 -0
 - data/doc/rant.rdoc +24 -0
 - data/doc/rantfile.rdoc +227 -0
 - data/doc/rubyproject.rdoc +210 -0
 - data/lib/rant.rb +9 -0
 - data/lib/rant/cs_compiler.rb +334 -0
 - data/lib/rant/import.rb +291 -0
 - data/lib/rant/import/rubydoc.rb +125 -0
 - data/lib/rant/import/rubypackage.rb +417 -0
 - data/lib/rant/import/rubytest.rb +97 -0
 - data/lib/rant/plugin/README +50 -0
 - data/lib/rant/plugin/configure.rb +345 -0
 - data/lib/rant/plugin/csharp.rb +275 -0
 - data/lib/rant/plugin_methods.rb +41 -0
 - data/lib/rant/rantenv.rb +217 -0
 - data/lib/rant/rantfile.rb +664 -0
 - data/lib/rant/rantlib.rb +1118 -0
 - data/lib/rant/rantsys.rb +258 -0
 - data/lib/rant/rantvar.rb +82 -0
 - data/rantmethods.rb +79 -0
 - data/run_import +7 -0
 - data/run_rant +7 -0
 - data/setup.rb +1360 -0
 - data/test/Rantfile +2 -0
 - data/test/plugin/configure/Rantfile +47 -0
 - data/test/plugin/configure/test_configure.rb +58 -0
 - data/test/plugin/csharp/Hello.cs +10 -0
 - data/test/plugin/csharp/Rantfile +30 -0
 - data/test/plugin/csharp/src/A.cs +8 -0
 - data/test/plugin/csharp/src/B.cs +8 -0
 - data/test/plugin/csharp/test_csharp.rb +99 -0
 - data/test/project1/Rantfile +127 -0
 - data/test/project1/test_project.rb +203 -0
 - data/test/project2/buildfile +14 -0
 - data/test/project2/rantfile.rb +20 -0
 - data/test/project2/sub1/Rantfile +12 -0
 - data/test/project2/test_project.rb +87 -0
 - data/test/project_rb1/README +14 -0
 - data/test/project_rb1/bin/wgrep +5 -0
 - data/test/project_rb1/lib/wgrep.rb +56 -0
 - data/test/project_rb1/rantfile.rb +30 -0
 - data/test/project_rb1/test/tc_wgrep.rb +21 -0
 - data/test/project_rb1/test/text +3 -0
 - data/test/project_rb1/test_project_rb1.rb +153 -0
 - data/test/test_env.rb +47 -0
 - data/test/test_filetask.rb +57 -0
 - data/test/test_lighttask.rb +49 -0
 - data/test/test_metatask.rb +29 -0
 - data/test/test_rant_interface.rb +65 -0
 - data/test/test_sys.rb +61 -0
 - data/test/test_task.rb +115 -0
 - data/test/toplevel.rf +11 -0
 - data/test/ts_all.rb +4 -0
 - data/test/tutil.rb +95 -0
 - metadata +133 -0
 
    
        metadata
    ADDED
    
    | 
         @@ -0,0 +1,133 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            --- !ruby/object:Gem::Specification 
         
     | 
| 
      
 2 
     | 
    
         
            +
            rubygems_version: 0.8.8
         
     | 
| 
      
 3 
     | 
    
         
            +
            specification_version: 1
         
     | 
| 
      
 4 
     | 
    
         
            +
            name: rant
         
     | 
| 
      
 5 
     | 
    
         
            +
            version: !ruby/object:Gem::Version 
         
     | 
| 
      
 6 
     | 
    
         
            +
              version: 0.3.0
         
     | 
| 
      
 7 
     | 
    
         
            +
            date: 2005-03-26
         
     | 
| 
      
 8 
     | 
    
         
            +
            summary: Rant is a Ruby based build tool.
         
     | 
| 
      
 9 
     | 
    
         
            +
            require_paths: 
         
     | 
| 
      
 10 
     | 
    
         
            +
              - lib
         
     | 
| 
      
 11 
     | 
    
         
            +
            email: langstefan@gmx.at
         
     | 
| 
      
 12 
     | 
    
         
            +
            homepage: http://make.rubyforge.org
         
     | 
| 
      
 13 
     | 
    
         
            +
            rubyforge_project: make
         
     | 
| 
      
 14 
     | 
    
         
            +
            description: 
         
     | 
| 
      
 15 
     | 
    
         
            +
            autorequire: 
         
     | 
| 
      
 16 
     | 
    
         
            +
            default_executable: 
         
     | 
| 
      
 17 
     | 
    
         
            +
            bindir: 
         
     | 
| 
      
 18 
     | 
    
         
            +
              - bin
         
     | 
| 
      
 19 
     | 
    
         
            +
            has_rdoc: true
         
     | 
| 
      
 20 
     | 
    
         
            +
            required_ruby_version: !ruby/object:Gem::Version::Requirement 
         
     | 
| 
      
 21 
     | 
    
         
            +
              requirements: 
         
     | 
| 
      
 22 
     | 
    
         
            +
                - 
         
     | 
| 
      
 23 
     | 
    
         
            +
                  - ">"
         
     | 
| 
      
 24 
     | 
    
         
            +
                  - !ruby/object:Gem::Version 
         
     | 
| 
      
 25 
     | 
    
         
            +
                    version: 0.0.0
         
     | 
| 
      
 26 
     | 
    
         
            +
              version: 
         
     | 
| 
      
 27 
     | 
    
         
            +
            platform: ruby
         
     | 
| 
      
 28 
     | 
    
         
            +
            authors: 
         
     | 
| 
      
 29 
     | 
    
         
            +
              - 
         
     | 
| 
      
 30 
     | 
    
         
            +
                - Stefan Lang
         
     | 
| 
      
 31 
     | 
    
         
            +
            files: 
         
     | 
| 
      
 32 
     | 
    
         
            +
              - bin/rant
         
     | 
| 
      
 33 
     | 
    
         
            +
              - bin/rant-import
         
     | 
| 
      
 34 
     | 
    
         
            +
              - lib/rant
         
     | 
| 
      
 35 
     | 
    
         
            +
              - lib/rant.rb
         
     | 
| 
      
 36 
     | 
    
         
            +
              - lib/rant/rantfile.rb
         
     | 
| 
      
 37 
     | 
    
         
            +
              - lib/rant/rantenv.rb
         
     | 
| 
      
 38 
     | 
    
         
            +
              - lib/rant/cs_compiler.rb
         
     | 
| 
      
 39 
     | 
    
         
            +
              - lib/rant/rantlib.rb
         
     | 
| 
      
 40 
     | 
    
         
            +
              - lib/rant/rantsys.rb
         
     | 
| 
      
 41 
     | 
    
         
            +
              - lib/rant/rantvar.rb
         
     | 
| 
      
 42 
     | 
    
         
            +
              - lib/rant/import
         
     | 
| 
      
 43 
     | 
    
         
            +
              - lib/rant/plugin_methods.rb
         
     | 
| 
      
 44 
     | 
    
         
            +
              - lib/rant/plugin
         
     | 
| 
      
 45 
     | 
    
         
            +
              - lib/rant/import.rb
         
     | 
| 
      
 46 
     | 
    
         
            +
              - lib/rant/import/rubydoc.rb
         
     | 
| 
      
 47 
     | 
    
         
            +
              - lib/rant/import/rubytest.rb
         
     | 
| 
      
 48 
     | 
    
         
            +
              - lib/rant/import/rubypackage.rb
         
     | 
| 
      
 49 
     | 
    
         
            +
              - lib/rant/plugin/README
         
     | 
| 
      
 50 
     | 
    
         
            +
              - lib/rant/plugin/configure.rb
         
     | 
| 
      
 51 
     | 
    
         
            +
              - lib/rant/plugin/csharp.rb
         
     | 
| 
      
 52 
     | 
    
         
            +
              - test/test_filetask.rb
         
     | 
| 
      
 53 
     | 
    
         
            +
              - test/test_lighttask.rb
         
     | 
| 
      
 54 
     | 
    
         
            +
              - test/Rantfile
         
     | 
| 
      
 55 
     | 
    
         
            +
              - test/ts_all.rb
         
     | 
| 
      
 56 
     | 
    
         
            +
              - test/test_task.rb
         
     | 
| 
      
 57 
     | 
    
         
            +
              - test/project_rb1
         
     | 
| 
      
 58 
     | 
    
         
            +
              - test/test_metatask.rb
         
     | 
| 
      
 59 
     | 
    
         
            +
              - test/test_env.rb
         
     | 
| 
      
 60 
     | 
    
         
            +
              - test/toplevel.rf
         
     | 
| 
      
 61 
     | 
    
         
            +
              - test/plugin
         
     | 
| 
      
 62 
     | 
    
         
            +
              - test/test_rant_interface.rb
         
     | 
| 
      
 63 
     | 
    
         
            +
              - test/test_sys.rb
         
     | 
| 
      
 64 
     | 
    
         
            +
              - test/tutil.rb
         
     | 
| 
      
 65 
     | 
    
         
            +
              - test/project1
         
     | 
| 
      
 66 
     | 
    
         
            +
              - test/project2
         
     | 
| 
      
 67 
     | 
    
         
            +
              - test/project_rb1/bin
         
     | 
| 
      
 68 
     | 
    
         
            +
              - test/project_rb1/lib
         
     | 
| 
      
 69 
     | 
    
         
            +
              - test/project_rb1/test
         
     | 
| 
      
 70 
     | 
    
         
            +
              - test/project_rb1/rantfile.rb
         
     | 
| 
      
 71 
     | 
    
         
            +
              - test/project_rb1/README
         
     | 
| 
      
 72 
     | 
    
         
            +
              - test/project_rb1/test_project_rb1.rb
         
     | 
| 
      
 73 
     | 
    
         
            +
              - test/project_rb1/bin/wgrep
         
     | 
| 
      
 74 
     | 
    
         
            +
              - test/project_rb1/lib/wgrep.rb
         
     | 
| 
      
 75 
     | 
    
         
            +
              - test/project_rb1/test/text
         
     | 
| 
      
 76 
     | 
    
         
            +
              - test/project_rb1/test/tc_wgrep.rb
         
     | 
| 
      
 77 
     | 
    
         
            +
              - test/plugin/configure
         
     | 
| 
      
 78 
     | 
    
         
            +
              - test/plugin/csharp
         
     | 
| 
      
 79 
     | 
    
         
            +
              - test/plugin/configure/Rantfile
         
     | 
| 
      
 80 
     | 
    
         
            +
              - test/plugin/configure/test_configure.rb
         
     | 
| 
      
 81 
     | 
    
         
            +
              - test/plugin/csharp/src
         
     | 
| 
      
 82 
     | 
    
         
            +
              - test/plugin/csharp/Rantfile
         
     | 
| 
      
 83 
     | 
    
         
            +
              - test/plugin/csharp/Hello.cs
         
     | 
| 
      
 84 
     | 
    
         
            +
              - test/plugin/csharp/test_csharp.rb
         
     | 
| 
      
 85 
     | 
    
         
            +
              - test/plugin/csharp/src/A.cs
         
     | 
| 
      
 86 
     | 
    
         
            +
              - test/plugin/csharp/src/B.cs
         
     | 
| 
      
 87 
     | 
    
         
            +
              - test/project1/Rantfile
         
     | 
| 
      
 88 
     | 
    
         
            +
              - test/project1/test_project.rb
         
     | 
| 
      
 89 
     | 
    
         
            +
              - test/project2/sub1
         
     | 
| 
      
 90 
     | 
    
         
            +
              - test/project2/sub2
         
     | 
| 
      
 91 
     | 
    
         
            +
              - test/project2/rantfile.rb
         
     | 
| 
      
 92 
     | 
    
         
            +
              - test/project2/buildfile
         
     | 
| 
      
 93 
     | 
    
         
            +
              - test/project2/test_project.rb
         
     | 
| 
      
 94 
     | 
    
         
            +
              - test/project2/sub1/Rantfile
         
     | 
| 
      
 95 
     | 
    
         
            +
              - doc/rantfile.rdoc
         
     | 
| 
      
 96 
     | 
    
         
            +
              - doc/configure.rdoc
         
     | 
| 
      
 97 
     | 
    
         
            +
              - doc/rubyproject.rdoc
         
     | 
| 
      
 98 
     | 
    
         
            +
              - doc/rant.rdoc
         
     | 
| 
      
 99 
     | 
    
         
            +
              - doc/csharp.rdoc
         
     | 
| 
      
 100 
     | 
    
         
            +
              - doc/rant-import.rdoc
         
     | 
| 
      
 101 
     | 
    
         
            +
              - TODO
         
     | 
| 
      
 102 
     | 
    
         
            +
              - README
         
     | 
| 
      
 103 
     | 
    
         
            +
              - Rantfile
         
     | 
| 
      
 104 
     | 
    
         
            +
              - run_rant
         
     | 
| 
      
 105 
     | 
    
         
            +
              - devel-notes
         
     | 
| 
      
 106 
     | 
    
         
            +
              - rantmethods.rb
         
     | 
| 
      
 107 
     | 
    
         
            +
              - run_import
         
     | 
| 
      
 108 
     | 
    
         
            +
              - setup.rb
         
     | 
| 
      
 109 
     | 
    
         
            +
              - COPYING
         
     | 
| 
      
 110 
     | 
    
         
            +
            test_files: []
         
     | 
| 
      
 111 
     | 
    
         
            +
            rdoc_options: 
         
     | 
| 
      
 112 
     | 
    
         
            +
              - "-S"
         
     | 
| 
      
 113 
     | 
    
         
            +
              - "-c"
         
     | 
| 
      
 114 
     | 
    
         
            +
              - UTF-8
         
     | 
| 
      
 115 
     | 
    
         
            +
              - "--title"
         
     | 
| 
      
 116 
     | 
    
         
            +
              - Rant
         
     | 
| 
      
 117 
     | 
    
         
            +
              - "--main"
         
     | 
| 
      
 118 
     | 
    
         
            +
              - README
         
     | 
| 
      
 119 
     | 
    
         
            +
            extra_rdoc_files: 
         
     | 
| 
      
 120 
     | 
    
         
            +
              - README
         
     | 
| 
      
 121 
     | 
    
         
            +
              - lib/rant/plugin/README
         
     | 
| 
      
 122 
     | 
    
         
            +
              - doc/rantfile.rdoc
         
     | 
| 
      
 123 
     | 
    
         
            +
              - doc/configure.rdoc
         
     | 
| 
      
 124 
     | 
    
         
            +
              - doc/rubyproject.rdoc
         
     | 
| 
      
 125 
     | 
    
         
            +
              - doc/rant.rdoc
         
     | 
| 
      
 126 
     | 
    
         
            +
              - doc/csharp.rdoc
         
     | 
| 
      
 127 
     | 
    
         
            +
              - doc/rant-import.rdoc
         
     | 
| 
      
 128 
     | 
    
         
            +
            executables: 
         
     | 
| 
      
 129 
     | 
    
         
            +
              - rant
         
     | 
| 
      
 130 
     | 
    
         
            +
              - rant-import
         
     | 
| 
      
 131 
     | 
    
         
            +
            extensions: []
         
     | 
| 
      
 132 
     | 
    
         
            +
            requirements: []
         
     | 
| 
      
 133 
     | 
    
         
            +
            dependencies: []
         
     |