• Stars
    star
    65
  • Rank 457,136 (Top 10 %)
  • Language
    Ruby
  • License
    MIT License
  • Created almost 8 years ago
  • Updated 3 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

File manipulation utility methods
TTY Toolkit logo

TTY::File Gitter

Gem Version Actions CI Build status Maintainability Coverage Status Inline docs

File manipulation utility methods.

TTY::File provides independent file utilities component for TTY toolkit.

Motivation

Though Ruby's File and FileUtils libraries provide very robust apis for dealing with files, this library aims to provide a level of abstraction that is much more convenient, with useful logging capabilities.

Installation

Add this line to your application's Gemfile:

gem "tty-file"

And then execute:

$ bundle

Or install it yourself as:

$ gem install tty-file

Contents

1. Usage

TTY::File.replace_in_file("Gemfile", /gem 'rails'/, "gem 'hanami'")

2. Interface

The following methods are available for creating and manipulating files.

If you wish to silence verbose output use verbose: false. Similarly if you wish to run action without actually triggering any action use noop: true.

2.1. binary?

To check whether a file is a binary file, i.e. image, executable etc. do:

TTY::File.binary?("image.png") # => true

2.2. checksum_file

To generate a checksum for a file, IO object, or String, use checksum_file. By default the MD5 algorithm is used, which can be changed by passing a second argument.

Among the supported message digest algorithms are:

  • sha, sha1, sha224, sha256, sha384, sha512
  • md2, md4, md5

For example, to create a digest for a string using SHA1 do:

TTY::File.checksum_file("Some content\nThe end", "sha1")
# => "289388f187404135e6c15b21460442cf867180dd"

2.3. chmod

To change file modes use chmod, like so:

TTY::File.chmod("filename.rb", 0777)

There are a number of constants available to represent common mode bits such as TTY::File::U_R and TTY::File::O_X, and they can be used as follows:

TTY::File.chmod("filename.rb", TTY::File::U_R | TTY::File::O_X)

Apart from traditional octal number definition for file permissions, you can use the more convenient permission notation used by the Unix chmod command:

TTY::File.chmod("filename.rb", "u=wrx,g+x")

The u, g, and o specify the user, group, and other parts of the mode bits. The a symbol is equivalent to ugo.

2.4. copy_file

Copies a file's contents from a relative source to a relative destination.

TTY::File.copy_file "Gemfile", "Gemfile.bak"

If you provide a block then the file content is yielded:

TTY::File.copy_file("Gemfile", "app/Gemfile") do |content|
  "https://rubygems.org\n" + content
end

If the source file is an ERB template then you can provide a :context in which the file gets evaluated, or if TTY::File gets included as a module then appropriate object context will be used by default. To use :context do:

variables = OpenStruct.new
variables[:foo] = "bar"

TTY::File.copy_file("templates/application.html.erb", context: variables)

You can also specify the template name surrounding any dynamic variables with % to be evaluated:

variables = OpenStruct.new
variables[:file_name] = "foo"

TTY::File.copy_file("templates/%file_name%.rb", context: variables)
# => Creates templates/foo.rb

If the destination is a directory, then copies source inside that directory.

TTY::File.copy_file "docs/README.md", "app"

If the destination file already exists, a prompt menu will be displayed to enquire about action:

If you wish to preserve original owner, group, permission and modified time use :preserve option:

TTY::File.copy_file "docs/README.md", "app", preserve: true

2.5. create_file

To create a file at a given destination with some content use create_file:

TTY::File.create_file "file-a/README.md", content

On collision with already existing file, a menu gets displayed:

   collision  examples/file-a
Overwrite examples/file-a? (enter "h" for help) [y,d,n,q,h]

The d option allows to compare the changes:

--- a/examples/file-a
+++ b/examples/file-a
@@ -1,8 +1,9 @@
 aaaaa
 bbbbb
-ccccc
+xxxxx
+
 ddddd
 eeeee
 fffff
-ggggg
+yyyyy
Overwrite examples/file-a? (enter "h" for help) [y,d,n,q,h]

You can force to always overwrite file with :force option or always skip by providing :skip.

There is examples/overwrite.rb that demonstrates diffing file with new content.

2.6. copy_dir

To recursively copy a directory of files from source to destination location use copy_directory or its alias copy_dir.

Assuming you have the following directory structure:

# doc/
#   subcommands/
#     command.rb.erb
#   README.md
#   %name%.rb

You can copy doc folder to docs by invoking:

TTY::File.copy_directory("doc", "docs", context: ...)

The context needs to respond to name message and given it returns foo value the following directory gets created:

# docs/
#   subcommands/
#     command.rb
#   README.md
#   foo.rb

If you only need to copy top level files use option recursive: false:

TTY::File.copy_directory("doc", "docs", recursive: false)

By passing :exclude option you can instruct the method to ignore any files including the given pattern:

TTY::File.copy_directory("doc", "docs", exclude: "subcommands")

2.7. create_dir

To create directory use create_directory or its alias create_dir passing as a first argument file path:

TTY::File.create_dir("/path/to/directory")

Or a data structure describing the directory tree including any files with or without content:

tree =
  "app" => [
    "README.md",
    ["Gemfile", "gem 'tty-file'"],
    "lib" => [
      "cli.rb",
      ["file_utils.rb", "require 'tty-file'"]
    ]
    "spec" => []
  ]
TTY::File.create_dir(tree)
# =>
# app
# app/README.md
# app/Gemfile
# app/lib
# app/lib/cli.rb
# app/lib/file_utils.rb
# app/spec

As a second argument you can provide a parent directory, otherwise current directory will be assumed:

TTY::File.create_dir(tree, "/path/to/parent/dir")

2.8. diff_files

To compare files line by line in a system independent way use diff, or diff_files:

print TTY::File.diff_files("file-a", "file-b")

Printing output to console would result in:

        diff  examples/file-a and examples/file-b
--- examples/file-a
+++ examples/file-b
@@ -1,8 +1,9 @@
 aaaaa
 bbbbb
-ccccc
+xxxxx
+
 ddddd
 eeeee
 fffff
-ggggg
+yyyyy

You can also pass additional parameters such as:

  • :format - accepted values are :unified, :old, :context and :ed. Defaults to :unified as seen in the output above - similar to git tool.
  • :lines - how many extra lines to include in the output around the compared lines. Defaults to 3 lines.
  • :threshold - set maximum file size in bytes. By default files larger than 10Mb are no processed.
  • :header - controls display of two-line files comparison. By default true.

Changing format to :old, removing context lines and skipping log output:

TTY::File.diff_files("file_a", "file_b", format: :old, lines: 0, verbose: false)

Results in the following output:

<<< examples/file-a
>>> examples/file-b
3c3,4
< ccccc
---
> xxxxx
>

7c8
< ggggg
---
> yyyyy

In addition, you can perform a comparison between a file and a string or between two strings. For example, comparing file with content:

TTY::File.diff_files("file-a", "new\nlong\ntext")

Will output:

        diff  a/examples/file-a and b/examples/file-a
--- a/examples/file-a
+++ b/examples/file-a
@@ -1,8 +1,4 @@
-aaaaa
-bbbbb
-ccccc
-ddddd
-eeeee
-fffff
-ggggg
+new
+long
+text

Please run examples/diff.rb to see how output works.

2.9. download_file

To download a content from a given address and to save at a given relative location do:

TTY::File.download_file("https://gist.github.com/4701967", "doc/README.md")

If you pass a block then the content will be yielded to allow modification:

TTY::File.download_file("https://gist.github.com/4701967", "doc/README.md") do |content|
  content.gsub("\n", " ")
end

By default download_file will follow maximum 3 redirects. This can be changed by passing :limit option:

TTY::File.download_file("https://gist.github.com/4701967", "doc/README.md", limit: 5)
# => raises TTY::File::DownloadError

2.10. inject_into_file

Inject content into a file at a given location and return true when performed successfully, false otherwise.

TTY::File.inject_into_file "filename.rb", "text to add", after: "Code below this line\n"

Or using a block:

TTY::File.inject_into_file "filename.rb", after: "Code below this line\n" do
  "text to add"
end

You can also use Regular Expressions in :after or :before to match file location.

By default, this method will always inject content into file, regardless whether it is already present or not. To change this pass :force set to false to perform check before actually inserting text:

TTY::File.inject_into_file("filename.rb", "text to add", after: "Code below this line\n"

Alternatively, use safe_inject_into_file to check if the text can be safely inserted.

TTY::File.safe_inject_into_file("Gemfile", "gem 'tty'")

The append_to_file and prepend_to_file allow you to add content at the end and the begging of a file.

2.11. replace_in_file

Replace content of a file matching condition by calling replace_in_file or gsub_file, which returns true when substitutions are performed successfully, false otherwise.

TTY::File.replace_in_file "filename.rb", /matching condition/, "replacement"

The replacement content can be provided in a block

TTY::File.gsub_file "filename.rb", /matching condition/ do
  "replacement"
end

2.12. append_to_file

Appends text to a file and returns true when performed successfully, false otherwise. You can provide the text as a second argument:

TTY::File.append_to_file("Gemfile", "gem 'tty'")

Or inside a block:

TTY::File.append_to_file("Gemfile") do
  "gem 'tty'"
end

By default, this method will always append content regardless whether it is already present or not. To change this pass :force set to false to perform check before actually appending:

TTY::File.append_to_file("Gemfile", "gem 'tty'", force: false)

Alternatively, use safe_append_to_file to check if the text can be safely appended.

TTY::File.safe_append_to_file("Gemfile", "gem 'tty'")

2.13. prepend_to_file

Prepends text to a file and returns true when performed successfully, false otherwise. You can provide the text as a second argument:

TTY::File.prepend_to_file("Gemfile", "gem 'tty'")

Or inside a block:

TTY::File.prepend_to_file("Gemfile") do
  "gem 'tty'"
end

By default, this method will always prepend content regardless whether it is already present or not. To change this pass :force set to false to perform check before actually prepending:

TTY::File.prepend_to_file("Gemfile", "gem 'tty'", force: false)

Alternatively, use safe_prepend_to_file to check if the text can be safely appended.

TTY::File.safe_prepend_to_file("Gemfile", "gem 'tty'")

2.14. remove_file

To remove a file do:

TTY::File.remove_file "doc/README.md"

You can also pass in :force to remove file ignoring any errors:

TTY::File.remove_file "doc/README.md", force: true

2.15. tail_file

To read the last 10 lines from a file do:

TTY::File.tail_file "doc/README.md"
# => ["## Copyright", "Copyright (c) 2016-2017", ...]

You can also pass a block:

TTY::File.tail_file("doc/README.md") do |line|
  puts line
end

To change how many lines are read pass a second argument:

TTY::File.tail_file("doc/README.md", 15)

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/piotrmurach/tty-file. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

License

The gem is available as open source under the terms of the MIT License.

Copyright

Copyright (c) 2016 Piotr Murach. See LICENSE for further details.

More Repositories

1

tty

Toolkit for developing sleek command line apps.
Ruby
2,472
star
2

tty-prompt

A beautiful and powerful interactive command line prompt
Ruby
1,418
star
3

github

Ruby interface to GitHub API
Ruby
1,132
star
4

finite_machine

A minimal finite state machine with a straightforward syntax.
Ruby
802
star
5

pastel

Terminal output styling with intuitive and clean API.
Ruby
628
star
6

rspec-benchmark

Performance testing matchers for RSpec
Ruby
584
star
7

tty-spinner

A terminal spinner for tasks that have non-deterministic time frame.
Ruby
421
star
8

tty-progressbar

Display a single or multiple progress bars in the terminal.
Ruby
415
star
9

loaf

Manages and displays breadcrumb trails in Rails app - lean & mean.
Ruby
404
star
10

tty-command

Execute shell commands with pretty output logging and capture stdout, stderr and exit status.
Ruby
397
star
11

tty-markdown

Convert a markdown document or text into a terminal friendly output.
Ruby
303
star
12

tty-logger

A readable, structured and beautiful logging for the terminal
Ruby
291
star
13

github_cli

GitHub on your command line. Use your terminal, not the browser.
Ruby
264
star
14

tty-table

A flexible and intuitive table generator
Ruby
183
star
15

tty-box

Draw various frames and boxes in your terminal window
Ruby
177
star
16

awesome-ruby-cli-apps

A curated list of awesome command-line applications in Ruby.
Ruby
159
star
17

rack-policy

Rack middleware for the EU ePrivacy Directive compliance in Ruby Web Apps
Ruby
147
star
18

tty-pie

Draw pie charts in your terminal window
Ruby
138
star
19

necromancer

Conversion from one object type to another with a bit of black magic.
Ruby
135
star
20

strings

A set of useful functions for transforming strings.
Ruby
127
star
21

coinpare

Compare cryptocurrency trading data across multiple exchanges and blockchains in the comfort of your terminal
Ruby
109
star
22

tty-exit

Terminal exit codes.
Ruby
100
star
23

strings-case

Convert strings between different cases.
Ruby
95
star
24

tty-reader

A set of methods for processing keyboard input in character, line and multiline modes.
Ruby
85
star
25

tty-option

A declarative command-line parser
Ruby
84
star
26

merkle_tree

A merkle tree is a data structure used for efficiently summarizing sets of data, often one-time signatures.
Ruby
83
star
27

tty-screen

Terminal screen detection - cross platform, major ruby interpreters
Ruby
83
star
28

verse

[DEPRECATED] Text transformations
Ruby
71
star
29

tty-cursor

Terminal cursor movement and manipulation of cursor properties such as visibility
Ruby
68
star
30

supervision

Write distributed systems that are resilient and self-heal.
Ruby
66
star
31

tty-config

A highly customisable application configuration interface for building terminal tools.
Ruby
61
star
32

benchmark-trend

Measure performance trends of Ruby code
Ruby
59
star
33

tty-font

Terminal fonts
Ruby
58
star
34

lex

Lex is an implementation of lex tool in Ruby.
Ruby
56
star
35

tty-tree

Print directory or structured data in a tree like format
Ruby
56
star
36

strings-truncation

Truncate strings with fullwidth characters and ANSI codes.
Ruby
49
star
37

tty-pager

Terminal output paging - cross-platform, major ruby interpreters
Ruby
39
star
38

tty-color

Terminal color capabilities detection
Ruby
35
star
39

slideck

Present Markdown-powered slide decks in the terminal.
Ruby
34
star
40

strings-inflection

Convert between singular and plural forms of English nouns
Ruby
31
star
41

tty-link

Hyperlinks in your terminal
Ruby
31
star
42

tty-platform

Operating system detection
Ruby
29
star
43

tty-sparkline

Sparkline charts for terminal applications.
Ruby
29
star
44

tty-editor

Opens a file or text in the user's preferred editor
Ruby
27
star
45

communist

Library for mocking CLI calls to external APIs
Ruby
25
star
46

splay_tree

A self-balancing binary tree optimised for fast access to frequently used nodes.
Ruby
24
star
47

equatable

Allows ruby objects to implement equality comparison and inspection methods.
Ruby
24
star
48

minehunter

Terminal mine hunting game.
Ruby
23
star
49

rotation.js

Responsive and mobile enabled jQuery plugin to help create rotating content.
JavaScript
22
star
50

strings-numeral

Express numbers as string numerals
Ruby
20
star
51

strings-ansi

Handle ANSI escape codes in strings
Ruby
19
star
52

benchmark-malloc

Trace memory allocations and collect stats
Ruby
19
star
53

tty-which

Cross-platform implementation of Unix `which` command
Ruby
17
star
54

tty-runner

A command routing tree for terminal applications
Ruby
12
star
55

benchmark-perf

Benchmark execution time and iterations per second
Ruby
12
star
56

impact

Ruby backend for Impact.js framework
Ruby
8
star
57

queen

English language linter to hold your files in high esteem.
Ruby
8
star
58

pastel-cli

CLI tool for intuitive terminal output styling
Ruby
7
star
59

dotfiles

Configuration files for Unix tools
Vim Script
7
star
60

tty-markdown-cli

CLI tool for displaying nicely formatted Markdown documents in the terminal
Ruby
7
star
61

static_deploy

Automate deployment of static websites
Ruby
6
star
62

tenpin

Terminal tenpin bowling game
Ruby
4
star
63

tytus

Helps you manage page titles in your Rails app.
Ruby
3
star
64

tty.github.io

TTY toolkit website.
SCSS
2
star
65

peter-murach.github.com

Personal webpage
JavaScript
2
star
66

wc.rb

A Ruby clone of Unix wc utility.
Ruby
2
star
67

exportable

Rails plugin to ease exporting tasks.
Ruby
1
star
68

capistrano-git-stages

Multistage capistrano git tags
Ruby
1
star
69

tabster

Ruby
1
star
70

leek

Cucumber steps and RSpec expectations for command line apps
Ruby
1
star
71

unicorn.github.io

Website for the github_api and github_cli ruby gems.
CSS
1
star
72

tty-color-cli

CLI tool for terminal color capabilities detection
Ruby
1
star
73

finite_machine.github.io

Website for finite_machine Ruby gem
SCSS
1
star
74

strings-wrapping

Wrap strings with fullwidth characters and ANSI codes
Ruby
1
star