summaryrefslogtreecommitdiff
path: root/plist.gemspec
Commit message (Collapse)AuthorAgeFilesLines
* Add support for text inside `<![CDATA[ ... ]]>`. (#49)Markus Reiter2019-09-041-1/+3
| | | | | | | * Add support for text inside `<![CDATA[ ... ]]>`. * Add tests for `CDATA`. * Remove Ruby 1.8.7 and Ree from Travis config. * Add `required_ruby_version`.
* Only ship the required libs in the gem artifactTim Smith2018-12-201-5/+1
| | | | | | | | This strips the test/development files from the gemspec so that the gem artifact only includes the bare minimum required libraries. This reduces the total install size for applications that bundle this gem. Signed-off-by: Tim Smith <tsmith@chef.io>
* Add `encoding` comment to Ruby files.Markus Reiter2017-04-231-1/+1
|
* Reorganize project based on `bundle gem` practices (#35)Matt Brictson2017-04-171-0/+30
Remove the custom Rake tasks for packaging and release the gem in favor of a standard layout as suggested by the `bundle gem` command: * Add a Gemfile and gemspec * Use Bundler's built-in `gem_tasks` * Add appropriate file extension to LICENSE * Add development utils in `bin` * Move version number to `plist/version.rb` * Use Bundler's recommended `.gitignore` * Add `gem install bundler` to `.travis.yml` This reorganization allows any Ruby open source developer to easily check out, run tests, and release the gem without any special knowledge or tooling.