FileManipulator
can split a text formatted file into multiple files, and recover the original file by merging the splitted files.
Add this line to your application's Gemfile:
gem 'file_manipulator'
And then execute:
$ bundle
Or install it yourself as:
$ gem install file_manipulator
Run the following Rails' generate command which will generate customizable initializer config/initializers/file_manipulator.rb
.
$ rails generate file_manipulator:install
create config/initializers/file_manipulator.rb
require 'file_manipulator'
FileManipulator.configure do |config|
config.prefix = 'file_manipulator'
config.file_name = 'Gemfile'
config.split_files_directory = 'tmp'
config.merged_file_directory = 'tmp'
config.size = 10
end
FileManipulator.split
Dir.entries('tmp')
#=> [".", "..", "file_manipulator_Gemfile_0000", "file_manipulator_Gemfile_0001", "file_manipulator_Gemfile_0002", "file_manipulator_Gemfile_0003"]
After checking out the repo, run bin/setup
to install dependencies. Then, run bin/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 bin/rake install
. To release a new version, update the version number in version.rb
, build the gem by bin/rake build
, commit and push the repository with git
, and then run bin/rake release
, which will create a git tag for the version, push git commits and tags, and push the .gem
file to rubygems.org.
Bug reports and pull requests are welcome on GitHub at https://github.com/gipcompany/file_manipulator.
The gem is available as open source under the terms of the MIT License.