Releases: adammcarth/jtask
Releases · adammcarth/jtask
Release list
JTask Beta (0.3.0)
A lot of functionality has been added since the last version of JTask.
- Added support for setting a default file directory:
JTask.configure do |config|
config.file_dir = "path/to/files"
endJTask Beta (0.2.0)
- Converted Hash outputs to OpenStructs
- View the topic: #2
- Documentation has been updated for this new feature
- A friendly JTask error message is now raised if the "models/" directory doesn't exist.
OpenStructs will change the way you interact with JTask's outputs:
@client = JTask.get("clients.json", 5)
# OLD WAY
@client["name"]
# NEW WAY OF GETTING VALUES
@client.name
#=> "Adam"Since the output from the JTask.get() method is no longer a hash, the old way won't work.
JTask Beta (0.1.0)
- Released a major bug fix regarding the
JTask.get()method (see: #1) - Minor code enhancements to the Get module.
- Error messages have been reformatted for both web and console use.
JTask Beta (0.0.2)
Major changes from 0.0.1:
- Swapped
gemspecdescription and summary.
JTask Beta (0.0.1)
Initial beta release of JTask.
Notes on the stability of JTask Beta:
- JTask is still undergoing major changes and bug fixes.
- It is not recommended that this gem is used in production at this time.
- JTask will be tested and production ready when version
1.x.x(stable) is released.