The main class for Roda. Roda is built completely out of plugins, with the default plugin being Roda::RodaPlugins::Base, so this class is mostly empty except for some constants.
Classes and Modules
Constants
| RodaMajorVersion | = | 3 |
The major version of |
|
| RodaMinorVersion | = | 97 |
The minor version of |
|
| RodaPatchVersion | = | 0 |
The patch version of |
|
| RodaVersion | = | "#{RodaMajorVersion}.#{RodaMinorVersion}.#{RodaPatchVersion}".freeze |
The full version of |
|
| RodaVersionNumber | = | RodaMajorVersion*10000 + RodaMinorVersion*10 + RodaPatchVersion |