I'm working on a Ruby application that is deployed as a gem. I'd like to include a read-only data file with the gem and am not sure how/where that should be packaged
For a little background, this application deals with the MIDI spec which includes hundreds of constant values. For instance, controller "Channel Volume" is always identified by the value 7. "Sustain" is identified by 64. etc etc... In the past, people have included these values as a large set of constants in their code. That's fine but it seems more appropriate to me to include those in a language agnostic format such as yaml
Using the GEM_PATH to locate the yaml file is ugly and also wouldn't work when using the library in a non-gem deployment.
Thank you for your help
There is a specified location for these files.
<gemdir>/data
in your gemGem.datadir
method to locate this directory.This appears to create a directory that is expected to be public.
If you want this file to be private,then using the
File.dirname(__FILE__) + "/path"
trick will accomplish that.