mreinsch-csv_builder 0.1.3 → 0.1.4

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.
Files changed (3) hide show
  1. data/CHANGELOG.rdoc +3 -2
  2. data/README.rdoc +21 -1
  3. metadata +13 -4
@@ -1,8 +1,9 @@
1
- == 1.1.3 release 2009-06-27
1
+ == 1.1.4 release 2009-07-27
2
2
 
3
- * Merged some patches, created this changelog (Michael Reinsch)
3
+ * Merged some patches:
4
4
  * Added gem spec (Jan De Poorter)
5
5
  * Set the correct response headers to work with IE, made the existing ones a little more robust (Jose Fernandez)
6
+ * Created changelog, updated docs (Michael Reinsch)
6
7
 
7
8
  == 1.0 released 2008
8
9
 
@@ -12,10 +12,30 @@ It also depends upon the FasterCSV gem http://fastercsv.rubyforge.org,
12
12
  which you can install with
13
13
 
14
14
  $ sudo gem install fastercsv
15
-
15
+
16
16
  Encoding conversions are done with Iconv, so make sure you have it on your
17
17
  development/production machine.
18
18
 
19
+ == Install
20
+
21
+ === Install as gem (recommended)
22
+
23
+ Install as a gem:
24
+
25
+ $ sudo gem install mreinsch-csv_builder
26
+
27
+ Then add the gem dependency in your config:
28
+
29
+ # config/environment.rb
30
+ config.gem "mreinsch-csv_builder", :source => "http://gems.github.com", :lib => "csv_builder"
31
+
32
+ === Install as plugin
33
+
34
+ To install as a plugin, use:
35
+
36
+ $ ./script/plugin install git://github.com/mreinsch/csv_builder.git
37
+
38
+
19
39
  == Example
20
40
 
21
41
  CSV template files are suffixed with '.csv.csvbuilder', for example
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mreinsch-csv_builder
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Econsultancy
@@ -9,10 +9,19 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-06-27 00:00:00 -07:00
12
+ date: 2009-07-27 00:00:00 -07:00
13
13
  default_executable:
14
- dependencies: []
15
-
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: fastercsv
17
+ type: :runtime
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: "0"
24
+ version:
16
25
  description: CSV template Rails plugin
17
26
  email: code@econsultancy.com
18
27
  executables: []