Sha256: 1d5ecd4d2645cad5c66eb77145e6327283702d35eb8a825fcd15441e47075ea9
Contents?: true
Size: 737 Bytes
Versions: 1
Compression:
Stored size: 737 Bytes
Contents
# SRT SRT stands for SubRip text file format, which is a file for storing subtitles. This is a Ruby library for manipulating SRT files. ## Installation Add this line to your application's Gemfile: gem 'srt' And then execute: $ bundle Or install it yourself as: $ gem install srt ## Usage You can parse an SRT file with the following code: ```ruby file = SRT::File.parse(File.new("MY_SRT_FILENAME.srt")) file.lines.each do |line| puts line.text.join(" ") end ``` ## Contributing 1. Fork it 2. Create your feature branch (`git checkout -b my-new-feature`) 3. Commit your changes (`git commit -am 'Added some feature'`) 4. Push to the branch (`git push origin my-new-feature`) 5. Create new Pull Request
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
srt-0.0.1 | README.md |