Skip to content

Releases: adammcarth/jtask

JTask Beta (0.3.0)

JTask Beta (0.3.0) Pre-release
Pre-release

Choose a tag to compare

@adammcarth adammcarth released this 02 Apr 12:27

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"
end
  • Fixed issues regarding the pollution of top level namespace (#9)
  • Added nested openstruct support (#7)
  • Various performance improvements

JTask Beta (0.2.0)

JTask Beta (0.2.0) Pre-release
Pre-release

Choose a tag to compare

@adammcarth adammcarth released this 01 Apr 10:34
  • 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)

JTask Beta (0.1.0) Pre-release
Pre-release

Choose a tag to compare

@adammcarth adammcarth released this 25 Mar 12:44
  • 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)

JTask Beta (0.0.2) Pre-release
Pre-release

Choose a tag to compare

@adammcarth adammcarth released this 24 Mar 05:58

Major changes from 0.0.1:

  • Swapped gemspec description and summary.

JTask Beta (0.0.1)

JTask Beta (0.0.1) Pre-release
Pre-release

Choose a tag to compare

@adammcarth adammcarth released this 23 Mar 20:30

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.