tty-file 0.6.0 → 0.7.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.
- checksums.yaml +5 -5
 - data/CHANGELOG.md +18 -2
 - data/README.md +58 -16
 - data/Rakefile +1 -1
 - data/lib/tty-file.rb +0 -2
 - data/lib/tty/file.rb +35 -9
 - data/lib/tty/file/create_file.rb +3 -1
 - data/lib/tty/file/differ.rb +3 -2
 - data/lib/tty/file/digest_file.rb +1 -1
 - data/lib/tty/file/download_file.rb +3 -3
 - data/lib/tty/file/read_backward_file.rb +0 -1
 - data/lib/tty/file/version.rb +2 -2
 - data/spec/fixtures/cli_app/%name%_cli.rb +2 -0
 - data/spec/fixtures/cli_app/commands/subcommand.rb +2 -0
 - data/spec/fixtures/cli_app/excluded/%name%_cli.rb +2 -0
 - data/spec/fixtures/templates/%file_name%.rb +1 -0
 - data/spec/fixtures/templates/unit_test.rb +1 -0
 - data/spec/spec_helper.rb +90 -0
 - data/spec/unit/append_to_file_spec.rb +85 -0
 - data/spec/unit/binary_spec.rb +206 -0
 - data/spec/unit/checksum_file_spec.rb +39 -0
 - data/spec/unit/chmod_spec.rb +78 -0
 - data/spec/unit/copy_directory_spec.rb +106 -0
 - data/spec/unit/copy_file_spec.rb +157 -0
 - data/spec/unit/create_directory_spec.rb +79 -0
 - data/spec/unit/create_file_spec.rb +116 -0
 - data/spec/unit/diff_spec.rb +93 -0
 - data/spec/unit/differ/call_spec.rb +101 -0
 - data/spec/unit/download_file_spec.rb +54 -0
 - data/spec/unit/escape_glob_path_spec.rb +14 -0
 - data/spec/unit/inject_into_file_spec.rb +162 -0
 - data/spec/unit/prepend_to_file_spec.rb +98 -0
 - data/spec/unit/remove_file_spec.rb +53 -0
 - data/spec/unit/replace_in_file_spec.rb +126 -0
 - data/spec/unit/tail_file_spec.rb +63 -0
 - data/tasks/console.rake +1 -1
 - data/tasks/coverage.rake +1 -1
 - data/tasks/spec.rake +1 -1
 - data/tty-file.gemspec +5 -4
 - metadata +30 -13
 - data/.gitignore +0 -10
 - data/.rspec +0 -3
 - data/.travis.yml +0 -26
 - data/CODE_OF_CONDUCT.md +0 -49
 - data/Gemfile +0 -9
 - data/appveyor.yml +0 -26
 
    
        data/Gemfile
    DELETED
    
    
    
        data/appveyor.yml
    DELETED
    
    | 
         @@ -1,26 +0,0 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            ---
         
     | 
| 
       2 
     | 
    
         
            -
            install:
         
     | 
| 
       3 
     | 
    
         
            -
              - SET PATH=C:\Ruby%ruby_version%\bin;%PATH%
         
     | 
| 
       4 
     | 
    
         
            -
              - ruby --version
         
     | 
| 
       5 
     | 
    
         
            -
              - gem --version
         
     | 
| 
       6 
     | 
    
         
            -
              - bundle install
         
     | 
| 
       7 
     | 
    
         
            -
            build: off
         
     | 
| 
       8 
     | 
    
         
            -
            test_script:
         
     | 
| 
       9 
     | 
    
         
            -
              - bundle exec rake ci
         
     | 
| 
       10 
     | 
    
         
            -
            environment:
         
     | 
| 
       11 
     | 
    
         
            -
              matrix:
         
     | 
| 
       12 
     | 
    
         
            -
                - ruby_version: "200"
         
     | 
| 
       13 
     | 
    
         
            -
                - ruby_version: "200-x64"
         
     | 
| 
       14 
     | 
    
         
            -
                - ruby_version: "21"
         
     | 
| 
       15 
     | 
    
         
            -
                - ruby_version: "21-x64"
         
     | 
| 
       16 
     | 
    
         
            -
                - ruby_version: "22"
         
     | 
| 
       17 
     | 
    
         
            -
                - ruby_version: "22-x64"
         
     | 
| 
       18 
     | 
    
         
            -
                - ruby_version: "23"
         
     | 
| 
       19 
     | 
    
         
            -
                - ruby_version: "23-x64"
         
     | 
| 
       20 
     | 
    
         
            -
                - ruby_version: "24"
         
     | 
| 
       21 
     | 
    
         
            -
                - ruby_version: "24-x64"
         
     | 
| 
       22 
     | 
    
         
            -
                - ruby_version: "25"
         
     | 
| 
       23 
     | 
    
         
            -
                - ruby_version: "25-x64"
         
     | 
| 
       24 
     | 
    
         
            -
            matrix:
         
     | 
| 
       25 
     | 
    
         
            -
              allow_failures:
         
     | 
| 
       26 
     | 
    
         
            -
                - ruby_version: "25"
         
     |