storable 0.6.1 → 0.6.2
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 +4 -0
- data/Rakefile +5 -1
- data/lib/storable.rb +1 -1
- data/storable.gemspec +4 -4
- metadata +2 -2
data/CHANGES.txt
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
STORABLE, CHANGES
|
|
2
2
|
|
|
3
|
+
#### 0.6.2 (2010-02-12) #############################
|
|
4
|
+
|
|
5
|
+
* CHANGE: Removed hanna dependency [Flameeyes]
|
|
6
|
+
|
|
3
7
|
#### 0.6.1 (2010-01-15) #############################
|
|
4
8
|
|
|
5
9
|
* ADDED: Default initialize for Storable objects which can set field values.
|
data/Rakefile
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
require 'rubygems'
|
|
2
2
|
require 'rake/clean'
|
|
3
3
|
require 'rake/gempackagetask'
|
|
4
|
-
require 'hanna/rdoctask'
|
|
5
4
|
require 'fileutils'
|
|
6
5
|
include FileUtils
|
|
7
6
|
|
|
@@ -65,6 +64,11 @@ end
|
|
|
65
64
|
|
|
66
65
|
|
|
67
66
|
# RUBY DOCS TASK ==================================
|
|
67
|
+
begin
|
|
68
|
+
require 'hanna/rdoctask'
|
|
69
|
+
rescue LoadError
|
|
70
|
+
require 'rake/rdoctask'
|
|
71
|
+
end
|
|
68
72
|
|
|
69
73
|
Rake::RDocTask.new do |t|
|
|
70
74
|
t.rdoc_dir = 'doc'
|
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.
|
|
43
|
+
VERSION = "0.6.2"
|
|
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,9 +1,9 @@
|
|
|
1
1
|
@spec = Gem::Specification.new do |s|
|
|
2
|
-
|
|
2
|
+
s.name = "storable"
|
|
3
3
|
s.rubyforge_project = "storable"
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
s.version = "0.6.2"
|
|
5
|
+
s.summary = "Storable: Marshal Ruby classes into and out of multiple formats (yaml, json, csv, tsv)"
|
|
6
|
+
s.description = s.summary
|
|
7
7
|
s.author = "Delano Mandelbaum"
|
|
8
8
|
s.email = "delano@solutious.com"
|
|
9
9
|
s.homepage = "http://solutious.com/"
|
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.
|
|
4
|
+
version: 0.6.2
|
|
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-
|
|
12
|
+
date: 2010-02-12 00:00:00 -05:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies: []
|
|
15
15
|
|