storable 0.6.2 → 0.6.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/CHANGES.txt CHANGED
@@ -2,7 +2,7 @@ STORABLE, CHANGES
2
2
 
3
3
  #### 0.6.2 (2010-02-12) #############################
4
4
 
5
- * CHANGE: Removed hanna dependency [Flameeyes]
5
+ * CHANGE: Removed hanna dependency [Diego Elio 'Flameeyes' Pettenò]
6
6
 
7
7
  #### 0.6.1 (2010-01-15) #############################
8
8
 
data/Rakefile CHANGED
@@ -3,7 +3,13 @@ require 'rake/clean'
3
3
  require 'rake/gempackagetask'
4
4
  require 'fileutils'
5
5
  include FileUtils
6
-
6
+
7
+ begin
8
+ require 'hanna/rdoctask'
9
+ rescue LoadError
10
+ require 'rake/rdoctask'
11
+ end
12
+
7
13
  task :default => :package
8
14
 
9
15
  # CONFIG =============================================================
data/lib/storable.rb CHANGED
@@ -40,7 +40,7 @@ class Storable
40
40
 
41
41
  require 'storable/orderedhash' if USE_ORDERED_HASH
42
42
  unless defined?(SUPPORTED_FORMATS) # We can assume all are defined
43
- VERSION = "0.6.2"
43
+ VERSION = "0.6.3"
44
44
  NICE_TIME_FORMAT = "%Y-%m-%d@%H:%M:%S".freeze
45
45
  SUPPORTED_FORMATS = [:tsv, :csv, :yaml, :json, :s, :string].freeze
46
46
  end
data/storable.gemspec CHANGED
@@ -1,7 +1,7 @@
1
1
  @spec = Gem::Specification.new do |s|
2
2
  s.name = "storable"
3
3
  s.rubyforge_project = "storable"
4
- s.version = "0.6.2"
4
+ s.version = "0.6.3"
5
5
  s.summary = "Storable: Marshal Ruby classes into and out of multiple formats (yaml, json, csv, tsv)"
6
6
  s.description = s.summary
7
7
  s.author = "Delano Mandelbaum"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: storable
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.2
4
+ version: 0.6.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Delano Mandelbaum
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2010-02-12 00:00:00 -05:00
12
+ date: 2010-02-20 00:00:00 -05:00
13
13
  default_executable:
14
14
  dependencies: []
15
15