make_exportable 1.0.0 → 1.0.1

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/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.0
1
+ 1.0.1
@@ -1,5 +1,5 @@
1
1
  module MakeExportable #:nodoc:
2
- class ExportableFormat
2
+ class ExportableFormat #:nodoc:
3
3
 
4
4
  class_inheritable_accessor :reference
5
5
  class_inheritable_accessor :name
@@ -3,7 +3,7 @@ require "csv"
3
3
  require 'fastercsv' if CSV.const_defined?(:Reader)
4
4
 
5
5
  module MakeExportable #:nodoc:
6
- class CSV < ExportableFormat
6
+ class CSV < ExportableFormat #:nodoc:
7
7
 
8
8
  cattr_accessor :csv_type
9
9
 
@@ -1,5 +1,5 @@
1
1
  module MakeExportable #:nodoc:
2
- class Excel < ExportableFormat
2
+ class Excel < ExportableFormat #:nodoc:
3
3
 
4
4
  self.reference = :xls
5
5
  self.name = 'Excel'
@@ -1,5 +1,5 @@
1
1
  module MakeExportable #:nodoc:
2
- class HTML < ExportableFormat
2
+ class HTML < ExportableFormat #:nodoc:
3
3
 
4
4
  self.reference = :html
5
5
  self.name = 'HTML'
@@ -1,5 +1,5 @@
1
1
  module MakeExportable #:nodoc:
2
- class JSON < ExportableFormat
2
+ class JSON < ExportableFormat #:nodoc:
3
3
 
4
4
  self.reference = :json
5
5
  self.name = "JSON"
@@ -1,5 +1,5 @@
1
1
  module MakeExportable #:nodoc:
2
- class TSV < ExportableFormat
2
+ class TSV < ExportableFormat #:nodoc:
3
3
 
4
4
  self.reference = :tsv
5
5
  self.name = "TSV"
@@ -1,5 +1,5 @@
1
1
  module MakeExportable #:nodoc:
2
- class XML < ExportableFormat
2
+ class XML < ExportableFormat #:nodoc:
3
3
 
4
4
  self.reference = :xml
5
5
  self.name = 'XML'
data/rails/init.rb CHANGED
@@ -1 +1 @@
1
- require File.join(File.dirname(__FILE__), '..', 'init')
1
+ require File.join(File.dirname(__FILE__), '..', 'lib', 'make_exportable')
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: make_exportable
3
3
  version: !ruby/object:Gem::Version
4
- hash: 23
4
+ hash: 21
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 0
9
- - 0
10
- version: 1.0.0
9
+ - 1
10
+ version: 1.0.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Kevin Skoglund
@@ -16,7 +16,7 @@ autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
18
 
19
- date: 2010-06-21 00:00:00 -04:00
19
+ date: 2010-06-27 00:00:00 -04:00
20
20
  default_executable:
21
21
  dependencies: []
22
22