RedCloth 4.2.5-x86-mingw32 → 4.2.7-x86-mingw32
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.
Potentially problematic release.
This version of RedCloth might be problematic. Click here for more details.
- data/CHANGELOG +12 -0
- data/README.rdoc +1 -1
- data/lib/1.8/redcloth_scan.so +0 -0
- data/lib/1.9/redcloth_scan.so +0 -0
- data/lib/redcloth/formatters/latex.rb +2 -2
- data/lib/redcloth/formatters/latex_entities.yml +2 -2
- data/lib/redcloth/version.rb +1 -1
- data/lib/redcloth_scan.jar +0 -0
- data/redcloth.gemspec +3 -3
- data/spec/fixtures/basic.yml +1 -1
- metadata +14 -6
    
        data/CHANGELOG
    CHANGED
    
    | @@ -1,3 +1,15 @@ | |
| 1 | 
            +
            == 4.2.7 / Febrary 10, 2011
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            * Fixed typo in gemspec to make case-sensitive require work. [Gabe da Silveira]
         | 
| 4 | 
            +
            * Tested installing the gem and requiring it with both cases on Ubuntu 8.04, 10.10 and OS X Version 10.6.6.
         | 
| 5 | 
            +
            * Have spaces around the en-dash in LaTeX [Benjamin Quorning]
         | 
| 6 | 
            +
            * Turned double-quote close to smart quotes in LaTeX [Jonathan D. Blake]
         | 
| 7 | 
            +
             | 
| 8 | 
            +
            === 4.2.6 / February 9, 2011
         | 
| 9 | 
            +
             | 
| 10 | 
            +
            * Add case-sensitive require back into the gemspec.
         | 
| 11 | 
            +
            * Fix rdoc options in gemspec.
         | 
| 12 | 
            +
             | 
| 1 13 | 
             
            === 4.2.5 / February 7, 2011
         | 
| 2 14 |  | 
| 3 15 | 
             
            * Fix bundler and rubygems-test incompatibilities. Working around bug:
         | 
    
        data/README.rdoc
    CHANGED
    
    
    
        data/lib/1.8/redcloth_scan.so
    CHANGED
    
    | Binary file | 
    
        data/lib/1.9/redcloth_scan.so
    CHANGED
    
    | Binary file | 
| @@ -241,7 +241,7 @@ module RedCloth::Formatters::LATEX | |
| 241 241 | 
             
              end
         | 
| 242 242 |  | 
| 243 243 | 
             
              def quote2(opts)
         | 
| 244 | 
            -
                "``#{opts[:text]} | 
| 244 | 
            +
                "``#{opts[:text]}''"
         | 
| 245 245 | 
             
              end
         | 
| 246 246 |  | 
| 247 247 | 
             
              def ellipsis(opts)
         | 
| @@ -253,7 +253,7 @@ module RedCloth::Formatters::LATEX | |
| 253 253 | 
             
              end
         | 
| 254 254 |  | 
| 255 255 | 
             
              def endash(opts)
         | 
| 256 | 
            -
                "--"
         | 
| 256 | 
            +
                " -- "
         | 
| 257 257 | 
             
              end
         | 
| 258 258 |  | 
| 259 259 | 
             
              def arrow(opts)
         | 
    
        data/lib/redcloth/version.rb
    CHANGED
    
    
    
        data/lib/redcloth_scan.jar
    CHANGED
    
    | Binary file | 
    
        data/redcloth.gemspec
    CHANGED
    
    | @@ -19,9 +19,9 @@ Gem::Specification.new do |s| | |
| 19 19 | 
             
              s.files            = Dir['.gemtest', '.rspec', 'CHANGELOG', 'COPYING', 'Gemfile', 'README.rdoc', 'Rakefile', 'doc/**/*', 'bin/**/*', 'lib/**/*', 'redcloth.gemspec', 'spec/**/*', 'tasks/**/*']
         | 
| 20 20 | 
             
              s.test_files       = Dir['spec/**/*']
         | 
| 21 21 | 
             
              s.executables      = ['redcloth']
         | 
| 22 | 
            -
              s.extra_rdoc_files = [" | 
| 23 | 
            -
              s.rdoc_options     = ["--charset=UTF-8"]
         | 
| 24 | 
            -
              s. | 
| 22 | 
            +
              s.extra_rdoc_files = ["README.rdoc", "COPYING", "CHANGELOG"]
         | 
| 23 | 
            +
              s.rdoc_options     = ["--charset=UTF-8", "--line-numbers", "--inline-source", "--title", "RedCloth", "--main", "README.rdoc"]
         | 
| 24 | 
            +
              s.require_paths   += ["lib/case_sensitive_require", "ext"]
         | 
| 25 25 |  | 
| 26 26 | 
             
              s.files -= Dir['lib/redcloth.jar']
         | 
| 27 27 | 
             
              s.files -= Dir['lib/**/*.dll']
         | 
    
        data/spec/fixtures/basic.yml
    CHANGED
    
    | @@ -173,7 +173,7 @@ name: single hyphens with spaces | |
| 173 173 | 
             
            desc: Single hyphens are replaced with en-dashes if they are surrounded by spaces.
         | 
| 174 174 | 
             
            in: Observe - tiny and brief.
         | 
| 175 175 | 
             
            html: <p>Observe – tiny and brief.</p>
         | 
| 176 | 
            -
            latex: "Observe--tiny and brief.\n\n"
         | 
| 176 | 
            +
            latex: "Observe -- tiny and brief.\n\n"
         | 
| 177 177 | 
             
            --- 
         | 
| 178 178 | 
             
            name: midword hyphens 
         | 
| 179 179 | 
             
            desc: Single hyphens are left alone if not surrounded by spaces.
         | 
    
        metadata
    CHANGED
    
    | @@ -1,13 +1,13 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification 
         | 
| 2 2 | 
             
            name: RedCloth
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version 
         | 
| 4 | 
            -
              hash:  | 
| 4 | 
            +
              hash: 57
         | 
| 5 5 | 
             
              prerelease: 
         | 
| 6 6 | 
             
              segments: 
         | 
| 7 7 | 
             
              - 4
         | 
| 8 8 | 
             
              - 2
         | 
| 9 | 
            -
              -  | 
| 10 | 
            -
              version: 4.2. | 
| 9 | 
            +
              - 7
         | 
| 10 | 
            +
              version: 4.2.7
         | 
| 11 11 | 
             
            platform: x86-mingw32
         | 
| 12 12 | 
             
            authors: 
         | 
| 13 13 | 
             
            - Jason Garber
         | 
| @@ -17,7 +17,7 @@ autorequire: | |
| 17 17 | 
             
            bindir: bin
         | 
| 18 18 | 
             
            cert_chain: []
         | 
| 19 19 |  | 
| 20 | 
            -
            date: 2011-02- | 
| 20 | 
            +
            date: 2011-02-11 00:00:00 -06:00
         | 
| 21 21 | 
             
            default_executable: redcloth
         | 
| 22 22 | 
             
            dependencies: 
         | 
| 23 23 | 
             
            - !ruby/object:Gem::Dependency 
         | 
| @@ -122,8 +122,8 @@ executables: | |
| 122 122 | 
             
            extensions: []
         | 
| 123 123 |  | 
| 124 124 | 
             
            extra_rdoc_files: 
         | 
| 125 | 
            -
            - COPYING
         | 
| 126 125 | 
             
            - README.rdoc
         | 
| 126 | 
            +
            - COPYING
         | 
| 127 127 | 
             
            - CHANGELOG
         | 
| 128 128 | 
             
            files: 
         | 
| 129 129 | 
             
            - .gemtest
         | 
| @@ -198,8 +198,16 @@ licenses: [] | |
| 198 198 | 
             
            post_install_message: 
         | 
| 199 199 | 
             
            rdoc_options: 
         | 
| 200 200 | 
             
            - --charset=UTF-8
         | 
| 201 | 
            +
            - --line-numbers
         | 
| 202 | 
            +
            - --inline-source
         | 
| 203 | 
            +
            - --title
         | 
| 204 | 
            +
            - RedCloth
         | 
| 205 | 
            +
            - --main
         | 
| 206 | 
            +
            - README.rdoc
         | 
| 201 207 | 
             
            require_paths: 
         | 
| 202 208 | 
             
            - lib
         | 
| 209 | 
            +
            - lib/case_sensitive_require
         | 
| 210 | 
            +
            - ext
         | 
| 203 211 | 
             
            required_ruby_version: !ruby/object:Gem::Requirement 
         | 
| 204 212 | 
             
              none: false
         | 
| 205 213 | 
             
              requirements: 
         | 
| @@ -224,7 +232,7 @@ rubyforge_project: redcloth | |
| 224 232 | 
             
            rubygems_version: 1.5.0
         | 
| 225 233 | 
             
            signing_key: 
         | 
| 226 234 | 
             
            specification_version: 3
         | 
| 227 | 
            -
            summary: RedCloth-4.2. | 
| 235 | 
            +
            summary: RedCloth-4.2.7
         | 
| 228 236 | 
             
            test_files: 
         | 
| 229 237 | 
             
            - spec/benchmark_spec.rb
         | 
| 230 238 | 
             
            - spec/custom_tags_spec.rb
         |