record 1.0.0 → 1.1.0

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 74a402a3385c52f488fc27f4d8a583b05c2c6aa5
4
- data.tar.gz: 673f25bc67734cfb44aa0cd8e8caf02b7e9981a2
3
+ metadata.gz: bde8b7ec3eaa3f8a683b147cab7b9d25c581ae93
4
+ data.tar.gz: 5d8a5490efb3b2cce94b1d444736b0bb059aee6d
5
5
  SHA512:
6
- metadata.gz: 9e4b6c5170fd10c9f23b9d2f405d2c647fb2c5e9a08025ce653959ea23b6ad46d559102243b084026484d13ed89f2303a6f678938dcb017dc9ca6de16d3ddcf9
7
- data.tar.gz: efb94a12f22c1009ce9485ffb60d0245645eaefc02354928f0469b3f44e0a52a6227a3f20135ed0ff2d44b034a8dc8f3bccd39710f6bb171827f9a2aa57f56c0
6
+ metadata.gz: ea21ef1ff6823d00f54f114fefecc8dfce49e541707b5e80af719ba517075d927bfdb69b3ea200c79d660e9cc0e0ff25871bf0dd64d5b635605dbd887b6dd620
7
+ data.tar.gz: 88bd0b81f611bb908ad749f1bd8873c50c0df5745f96319e3e97cba01d808b23f37324bd067f038a897ff21593c4656c335989cb5bab1cd8ac945d2b5161e479
data/README.md CHANGED
@@ -1,11 +1,12 @@
1
1
  # record
2
2
 
3
-
4
- * home :: [github.com/csv11/record](https://github.com/csv11/record)
3
+ * home :: [github.com/rubylibs/record](https://github.com/rubylibs/record)
4
+ * bugs :: [github.com/rubylibs/record/issues](https://github.com/rubylibs/record/issues)
5
+ * gem :: [rubygems.org/gems/record](https://rubygems.org/gems/record)
6
+ * rdoc :: [rubydoc.info/gems/record](http://rubydoc.info/gems/record)
5
7
  * forum :: [wwwmake](http://groups.google.com/group/wwwmake)
6
8
 
7
9
 
8
-
9
10
  ## Usage
10
11
 
11
12
 
data/Rakefile CHANGED
@@ -8,7 +8,7 @@ Hoe.spec 'record' do
8
8
  self.summary = "record"
9
9
  self.description = summary
10
10
 
11
- self.urls = ['https://github.com/csv11/record']
11
+ self.urls = ['https://github.com/rubylibs/record']
12
12
 
13
13
  self.author = 'Gerald Bauer'
14
14
  self.email = 'wwwmake@googlegroups.com'
@@ -1,14 +1,14 @@
1
1
  # encoding: utf-8
2
2
 
3
- require 'csv'
4
- require 'json'
5
3
  require 'pp'
6
4
 
7
5
 
8
6
  ###
9
7
  # our own code
10
8
  require 'record/version' # let version always go first
11
-
9
+ require 'record/field'
10
+ require 'record/base'
11
+ require 'record/builder'
12
12
 
13
13
 
14
14
  puts Record.banner # say hello
@@ -1,10 +1,10 @@
1
1
  # encoding: utf-8
2
2
 
3
3
 
4
- class Record ## note: uses a class for now - change to module - why? why not?
4
+ module Record
5
5
 
6
6
  MAJOR = 1 ## todo: namespace inside version or something - why? why not??
7
- MINOR = 0
7
+ MINOR = 1
8
8
  PATCH = 0
9
9
  VERSION = [MAJOR,MINOR,PATCH].join('.')
10
10
 
@@ -21,4 +21,4 @@ class Record ## note: uses a class for now - change to module - why? why not?
21
21
  File.expand_path( File.dirname(File.dirname(File.dirname(__FILE__))) )
22
22
  end
23
23
 
24
- end # class Record
24
+ end # module Record
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: record
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gerald Bauer
@@ -55,7 +55,7 @@ files:
55
55
  - Rakefile
56
56
  - lib/record.rb
57
57
  - lib/record/version.rb
58
- homepage: https://github.com/csv11/record
58
+ homepage: https://github.com/rubylibs/record
59
59
  licenses:
60
60
  - Public Domain
61
61
  metadata: {}