Skip to content

Commit

Permalink
Version bump to 0.1.2 and README touchups.
Browse files Browse the repository at this point in the history
  • Loading branch information
hallettj committed Oct 4, 2009
1 parent c690e4a commit 855a8ec
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 12 deletions.
24 changes: 14 additions & 10 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -5,29 +5,33 @@ implementation of the YAML protocol, while ZAML is an attempt to
produce (effectively) the same output as YAML would have - but much
faster and with cleaner code.

ZAML has been benchmarked at up to %1600 faster than YAML:
ZAML has been benchmarked at up to %1600 faster than YAML:
http://gnomecoder.wordpress.com/2008/09/27/yaml-dump-1600-percent-faster/
http://groups.google.com/group/rubyonrails-core/browse_thread/thread/3e33e31f57e23911/d2eedb7531a12e47?lnk=gst&q=zaml#d2eedb7531a12e47


= Installation
## Installation

Run the following if you haven't already:
gem sources -a http://gems.github.com
Add gemcutter to your sources if you haven't done so already:

sudo gem install gemcutter
gem tumble

Install the gem:
sudo gem install hallettj-zaml

sudo gem install zaml


= Usage
## Usage

require 'zaml'
File.open('output.yml', 'w') { |f| ZAML.dump(foo,f) }
require 'zaml'
foo = { :some => { :complicated => [:data, :structure] } }
File.open('output.yml', 'w') { |f| ZAML.dump(foo,f) }


= License
## License

Copyright (c) 2008 ZAML contributers
Copyright (c) 2008-2009 ZAML contributers

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion lib/zaml.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
require 'yaml'

class ZAML
VERSION = "0.1.1"
VERSION = "0.1.2"
#
# Class Methods
#
Expand Down
2 changes: 1 addition & 1 deletion zaml.gemspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Gem::Specification.new do |s|
s.name = "zaml"
s.version = "0.1.1" # Please make sure this matches ZAML::VERSION
s.version = "0.1.2" # Please make sure this matches ZAML::VERSION
s.date = Time.now.strftime("%Y-%m-%d")
s.summary = "A partial replacement for YAML, writen with speed and code clarity in mind."
s.authors = ["Markus Roberts", "Jesse Hallett", "Ian McIntosh", "Igal Koshevoy", "Simon Chiang"]
Expand Down

0 comments on commit 855a8ec

Please sign in to comment.