https://github.com/laurentzziu/hash2lrtemplate
Convert Hash objects to strings formatted as .lrtemplate (Adobe Lightroom) files.
https://github.com/laurentzziu/hash2lrtemplate
adobe adobe-lightroom convert-hash-objects extension hash lightroom lrtemplate ruby
Last synced: 3 months ago
JSON representation
Convert Hash objects to strings formatted as .lrtemplate (Adobe Lightroom) files.
- Host: GitHub
- URL: https://github.com/laurentzziu/hash2lrtemplate
- Owner: laurentzziu
- License: mit
- Created: 2018-12-01T17:50:07.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2020-03-04T07:46:03.000Z (almost 6 years ago)
- Last Synced: 2025-10-10T16:29:29.108Z (3 months ago)
- Topics: adobe, adobe-lightroom, convert-hash-objects, extension, hash, lightroom, lrtemplate, ruby
- Language: Ruby
- Homepage:
- Size: 48.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
[](https://travis-ci.org/laurentzziu/hash2lrtemplate)
[](https://rubygems.org/gems/hash2lrtemplate)
[](https://codeclimate.com/github/laurentzziu/hash2lrtemplate/maintainability)
[](https://codeclimate.com/github/laurentzziu/hash2lrtemplate/test_coverage)
# Hash2lrtemplate
Convert `Hash` objects to strings formatted as `.lrtemplate` (Adobe Lightroom) files.
## Installation
Add this line to your application's Gemfile:
```ruby
gem 'hash2lrtemplate'
```
And then execute:
$ bundle
Or install it yourself as:
$ gem install hash2lrtemplate
## Usage
### Call the convertor
```ruby
hash = {
s: {
id: "635D4B13-0693-458A-9EA3-9B0FE599A2E3",
internal_name: "Hash2lrtemplate test demo",
title: "Hash2lrtemplate test demo",
type: "Develop",
value: {
uuid: "DA481B09-FABA-4551-A981-08C13F519C07",
settings: {
Blacks2012: -20,
Tint: 10,
ConvertToGrayscale: false,
CameraProfile: "Adobe Standard",
ToneCurvePV2012Red: [0, 0, 57, 40, 144, 147, 196, 206, 255, 255]
}
},
version: 0
}
}
Hash2lrtemplate::Convertor.new(hash).call
# or call the .call method directly on the class
Hash2lrtemplate::Convertor.call(hash)
# => "s = {id = \"635D4B13-0693-458A-9EA3-9B0FE599A2E3\",internalName = \"Hash2lrtemplate test demo\",title = \"Hash2lrtemplate test demo\",type = \"Develop\",value = {uuid = \"DA481B09-FABA-4551-A981-08C13F519C07\",settings = {Blacks2012 = -20,Tint = 10,ConvertToGrayscale = false,CameraProfile = \"Adobe Standard\",ToneCurvePV2012Red = {0,0,57,40,144,147,196,206,255,255,},},},version = 0,}"
```
## 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](https://rubygems.org).
## Contributing
Bug reports and pull requests are welcome on GitHub at . This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
## License
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
## Code of Conduct
Everyone interacting in the Hash2lrtemplate project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/laurentzziu/hash2lrtemplate/blob/master/CODE_OF_CONDUCT.md).