comma 3.0.2 → 3.0.3

Sign up to get free protection for your applications and to get access to all the features.
data/.travis.yml ADDED
@@ -0,0 +1,8 @@
1
+ language: ruby
2
+ rvm:
3
+ - ree
4
+ - 1.8.7
5
+ - 1.9.2
6
+ - 1.9.3
7
+
8
+ script: "bundle exec rake appraisal:install && bundle exec rake appraisal spec"
data/Gemfile CHANGED
@@ -1,3 +1,5 @@
1
1
  source "http://rubygems.org"
2
2
 
3
+ gem "fastercsv", :platforms => :ruby_18
4
+
3
5
  gemspec
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- comma (3.0.2)
4
+ comma (3.0.3)
5
5
 
6
6
  GEM
7
7
  remote: http://rubygems.org/
@@ -10,7 +10,8 @@ GEM
10
10
  bundler
11
11
  rake
12
12
  diff-lcs (1.1.3)
13
- multi_json (1.0.4)
13
+ fastercsv (1.5.4)
14
+ multi_json (1.1.0)
14
15
  rake (0.9.2.2)
15
16
  rspec (2.8.0)
16
17
  rspec-core (~> 2.8.0)
@@ -20,8 +21,8 @@ GEM
20
21
  rspec-expectations (2.8.0)
21
22
  diff-lcs (~> 1.1.2)
22
23
  rspec-mocks (2.8.0)
23
- simplecov (0.5.4)
24
- multi_json (~> 1.0.3)
24
+ simplecov (0.6.1)
25
+ multi_json (~> 1.0)
25
26
  simplecov-html (~> 0.5.3)
26
27
  simplecov-html (0.5.3)
27
28
  sqlite3 (1.3.5)
@@ -32,6 +33,7 @@ PLATFORMS
32
33
  DEPENDENCIES
33
34
  appraisal (~> 0.4.1)
34
35
  comma!
36
+ fastercsv
35
37
  rake (~> 0.9.2)
36
38
  rspec (~> 2.8.0)
37
39
  simplecov
data/README.markdown CHANGED
@@ -3,13 +3,15 @@
3
3
  http://github.com/crafterm/comma
4
4
 
5
5
  ##COMPATIBILITY
6
- The mainline of this project builds gems to the 3.x version series, and is compatible and tested with :
7
- - Ruby 1.9.2
8
- - Rails 3.x
6
+ The mainline of this project builds gems to the 3.x version series, and is compatible and tested with :
9
7
 
10
- ##LOOKING FOR RAILS 2? Ruby 1.8.7?
8
+ * Ruby 1.8.7, REE 1.8.7, 1.9.2, 1.9.3
9
+ * Rails 3.x (all versions)
10
+
11
+ [![Build Status](https://secure.travis-ci.org/crafterm/comma.png)](http://travis-ci.org/crafterm/comma)
12
+
13
+ ###LOOKING FOR RAILS 2?
11
14
  * Rails 2 is supported in the 'rails2' branch of this project, and versioned in the 2.x version of this gem. (https://github.com/crafterm/comma/tree/rails2).
12
- * Ruby 1.8.7 has been deprecated in favour of Ruby 1.9+. If you would like to use Ruby 1.8.7 please let me know or use the last compatible version that could be used with Rails 2+3 and Ruby 1.8.7 and Ruby 1.9.2 (Comma version : 0.5.2)
13
15
 
14
16
  ##INSTALLATION
15
17
 
@@ -153,7 +155,7 @@ You can specify which output format you would like to use via an optional parame
153
155
 
154
156
  Specifying no description name to to_comma is equivalent to specifying :default as the description name.
155
157
 
156
- You can pass options for FasterCSV, e.g.
158
+ You can pass all options for the CSV renderer (see : http://ruby-doc.org/stdlib-1.9.2/libdoc/csv/rdoc/CSV.html ), e.g.
157
159
 
158
160
  ```Ruby
159
161
  Book.limited(10).to_comma(:style => :brief,
@@ -239,7 +241,7 @@ When used with Rails (ie. add 'comma' as a gem dependency), Comma automatically
239
241
 
240
242
  ```
241
243
 
242
- You can specify which output format you would like to use by specifying a style parameter:
244
+ You can specify which output format you would like to use by specifying a style parameter or adding any available CSV option:
243
245
 
244
246
  ```Ruby
245
247
 
@@ -259,12 +261,12 @@ With the Rails renderer you can supply any of the regular parameters that you wo
259
261
  :write_headers, :force_quotes, etc. The parameters just need to be supplied after you specify the collection for the csv as demonstrated
260
262
  above.
261
263
 
262
- When used with Rails 2.3.*, Comma also adds support for exporting named scopes:
264
+ When used with Rails 3.+, Comma also adds support for exporting scopes:
263
265
 
264
266
  ```Ruby
265
267
 
266
268
  class Book < ActiveRecord::Base
267
- named_scope :recent,
269
+ scope :recent,
268
270
  lambda { { :conditions => ['created_at > ?', 1.month.ago] } }
269
271
 
270
272
  # ...
@@ -272,7 +274,7 @@ When used with Rails 2.3.*, Comma also adds support for exporting named scopes:
272
274
 
273
275
  ```
274
276
 
275
- Calling the to_comma method on the named scope will internally use Rails' find_each method, instantiating only 1,000 ActiveRecord objects at a time:
277
+ Calling the to_comma method on the scope will internally use Rails' find_each method, instantiating only 1,000 ActiveRecord objects at a time:
276
278
 
277
279
  ```Ruby
278
280
 
@@ -282,19 +284,10 @@ Calling the to_comma method on the named scope will internally use Rails' find_e
282
284
 
283
285
  ##DEPENDENCIES
284
286
 
285
- If you're on Ruby 1.8.*, the FasterCSV gem is recommended for performance reasons.
286
-
287
- gem install fastercsv
288
-
289
287
  If you have any questions or suggestions for Comma, please feel free to contact me at tom@venombytes.com, all feedback welcome!
290
288
 
291
289
  ##TESTING
292
290
 
293
- This gem has been tested on :
294
- Ruby 1.8.7, 1.9.2
295
-
296
- And on multiple Rails 2.x projects.
297
-
298
291
  To run the test suite across multiple gem file sets, we're using [Appraisal](https://github.com/thoughtbot/appraisal), use the following commands :
299
292
 
300
293
  ```Bash
@@ -2,6 +2,7 @@
2
2
 
3
3
  source "http://rubygems.org"
4
4
 
5
+ gem "fastercsv", :platforms=>:ruby_18
5
6
  gem "activesupport", "3.0.9"
6
7
  gem "activerecord", "3.0.9"
7
8
 
@@ -22,9 +22,10 @@ GEM
22
22
  arel (2.0.10)
23
23
  builder (2.1.2)
24
24
  diff-lcs (1.1.3)
25
+ fastercsv (1.5.4)
25
26
  i18n (0.5.0)
26
- multi_json (1.0.4)
27
- rake (0.9.2)
27
+ multi_json (1.1.0)
28
+ rake (0.9.2.2)
28
29
  rspec (2.8.0)
29
30
  rspec-core (~> 2.8.0)
30
31
  rspec-expectations (~> 2.8.0)
@@ -33,8 +34,8 @@ GEM
33
34
  rspec-expectations (2.8.0)
34
35
  diff-lcs (~> 1.1.2)
35
36
  rspec-mocks (2.8.0)
36
- simplecov (0.5.4)
37
- multi_json (~> 1.0.3)
37
+ simplecov (0.6.1)
38
+ multi_json (~> 1.0)
38
39
  simplecov-html (~> 0.5.3)
39
40
  simplecov-html (0.5.3)
40
41
  sqlite3 (1.3.5)
@@ -48,6 +49,7 @@ DEPENDENCIES
48
49
  activesupport (= 3.0.9)
49
50
  appraisal (~> 0.4.1)
50
51
  comma!
52
+ fastercsv
51
53
  rake (~> 0.9.2)
52
54
  rspec (~> 2.8.0)
53
55
  simplecov
@@ -2,6 +2,7 @@
2
2
 
3
3
  source "http://rubygems.org"
4
4
 
5
+ gem "fastercsv", :platforms=>:ruby_18
5
6
  gem "activesupport", "3.1.1"
6
7
  gem "activerecord", "3.1.1"
7
8
 
@@ -20,12 +20,13 @@ GEM
20
20
  appraisal (0.4.1)
21
21
  bundler
22
22
  rake
23
- arel (2.2.1)
23
+ arel (2.2.3)
24
24
  builder (3.0.0)
25
25
  diff-lcs (1.1.3)
26
+ fastercsv (1.5.4)
26
27
  i18n (0.6.0)
27
28
  multi_json (1.1.0)
28
- rake (0.9.2)
29
+ rake (0.9.2.2)
29
30
  rspec (2.8.0)
30
31
  rspec-core (~> 2.8.0)
31
32
  rspec-expectations (~> 2.8.0)
@@ -34,9 +35,10 @@ GEM
34
35
  rspec-expectations (2.8.0)
35
36
  diff-lcs (~> 1.1.2)
36
37
  rspec-mocks (2.8.0)
37
- simplecov (0.4.2)
38
- simplecov-html (~> 0.4.4)
39
- simplecov-html (0.4.5)
38
+ simplecov (0.6.1)
39
+ multi_json (~> 1.0)
40
+ simplecov-html (~> 0.5.3)
41
+ simplecov-html (0.5.3)
40
42
  sqlite3 (1.3.5)
41
43
  tzinfo (0.3.31)
42
44
 
@@ -48,6 +50,7 @@ DEPENDENCIES
48
50
  activesupport (= 3.1.1)
49
51
  appraisal (~> 0.4.1)
50
52
  comma!
53
+ fastercsv
51
54
  rake (~> 0.9.2)
52
55
  rspec (~> 2.8.0)
53
56
  simplecov
@@ -2,6 +2,7 @@
2
2
 
3
3
  source "http://rubygems.org"
4
4
 
5
+ gem "fastercsv", :platforms=>:ruby_18
5
6
  gem "activesupport", "~>3.2.1"
6
7
  gem "activerecord", "~>3.2.1"
7
8
 
@@ -20,12 +20,13 @@ GEM
20
20
  appraisal (0.4.1)
21
21
  bundler
22
22
  rake
23
- arel (3.0.0)
23
+ arel (3.0.2)
24
24
  builder (3.0.0)
25
25
  diff-lcs (1.1.3)
26
+ fastercsv (1.5.4)
26
27
  i18n (0.6.0)
27
28
  multi_json (1.1.0)
28
- rake (0.9.2)
29
+ rake (0.9.2.2)
29
30
  rspec (2.8.0)
30
31
  rspec-core (~> 2.8.0)
31
32
  rspec-expectations (~> 2.8.0)
@@ -34,9 +35,10 @@ GEM
34
35
  rspec-expectations (2.8.0)
35
36
  diff-lcs (~> 1.1.2)
36
37
  rspec-mocks (2.8.0)
37
- simplecov (0.4.2)
38
- simplecov-html (~> 0.4.4)
39
- simplecov-html (0.4.5)
38
+ simplecov (0.6.1)
39
+ multi_json (~> 1.0)
40
+ simplecov-html (~> 0.5.3)
41
+ simplecov-html (0.5.3)
40
42
  sqlite3 (1.3.5)
41
43
  tzinfo (0.3.31)
42
44
 
@@ -48,6 +50,7 @@ DEPENDENCIES
48
50
  activesupport (~> 3.2.1)
49
51
  appraisal (~> 0.4.1)
50
52
  comma!
53
+ fastercsv
51
54
  rake (~> 0.9.2)
52
55
  rspec (~> 2.8.0)
53
56
  simplecov
@@ -2,6 +2,7 @@
2
2
 
3
3
  source "http://rubygems.org"
4
4
 
5
+ gem "fastercsv", :platforms=>:ruby_18
5
6
  gem "rails", "3.0.9"
6
7
  gem "rspec-rails"
7
8
 
@@ -41,6 +41,7 @@ GEM
41
41
  diff-lcs (1.1.3)
42
42
  erubis (2.6.6)
43
43
  abstract (>= 1.0.0)
44
+ fastercsv (1.5.4)
44
45
  i18n (0.5.0)
45
46
  json (1.6.5)
46
47
  mail (2.2.19)
@@ -49,7 +50,7 @@ GEM
49
50
  mime-types (~> 1.16)
50
51
  treetop (~> 1.4.8)
51
52
  mime-types (1.17.2)
52
- multi_json (1.0.4)
53
+ multi_json (1.1.0)
53
54
  polyglot (0.3.3)
54
55
  rack (1.2.5)
55
56
  rack-mount (0.6.14)
@@ -70,7 +71,7 @@ GEM
70
71
  rake (>= 0.8.7)
71
72
  rdoc (~> 3.4)
72
73
  thor (~> 0.14.4)
73
- rake (0.9.2)
74
+ rake (0.9.2.2)
74
75
  rdoc (3.12)
75
76
  json (~> 1.4)
76
77
  rspec (2.8.0)
@@ -86,8 +87,8 @@ GEM
86
87
  activesupport (>= 3.0)
87
88
  railties (>= 3.0)
88
89
  rspec (~> 2.8.0)
89
- simplecov (0.5.4)
90
- multi_json (~> 1.0.3)
90
+ simplecov (0.6.1)
91
+ multi_json (~> 1.0)
91
92
  simplecov-html (~> 0.5.3)
92
93
  simplecov-html (0.5.3)
93
94
  sqlite3 (1.3.5)
@@ -103,6 +104,7 @@ PLATFORMS
103
104
  DEPENDENCIES
104
105
  appraisal (~> 0.4.1)
105
106
  comma!
107
+ fastercsv
106
108
  rails (= 3.0.9)
107
109
  rake (~> 0.9.2)
108
110
  rspec (~> 2.8.0)
@@ -2,6 +2,7 @@
2
2
 
3
3
  source "http://rubygems.org"
4
4
 
5
+ gem "fastercsv", :platforms=>:ruby_18
5
6
  gem "rails", "3.1.1"
6
7
  gem "rspec-rails"
7
8
 
@@ -37,10 +37,11 @@ GEM
37
37
  appraisal (0.4.1)
38
38
  bundler
39
39
  rake
40
- arel (2.2.1)
40
+ arel (2.2.3)
41
41
  builder (3.0.0)
42
42
  diff-lcs (1.1.3)
43
43
  erubis (2.7.0)
44
+ fastercsv (1.5.4)
44
45
  hike (1.2.1)
45
46
  i18n (0.6.0)
46
47
  json (1.6.5)
@@ -75,7 +76,7 @@ GEM
75
76
  rake (>= 0.8.7)
76
77
  rdoc (~> 3.4)
77
78
  thor (~> 0.14.6)
78
- rake (0.9.2)
79
+ rake (0.9.2.2)
79
80
  rdoc (3.12)
80
81
  json (~> 1.4)
81
82
  rspec (2.8.0)
@@ -91,9 +92,10 @@ GEM
91
92
  activesupport (>= 3.0)
92
93
  railties (>= 3.0)
93
94
  rspec (~> 2.8.0)
94
- simplecov (0.4.2)
95
- simplecov-html (~> 0.4.4)
96
- simplecov-html (0.4.5)
95
+ simplecov (0.6.1)
96
+ multi_json (~> 1.0)
97
+ simplecov-html (~> 0.5.3)
98
+ simplecov-html (0.5.3)
97
99
  sprockets (2.0.3)
98
100
  hike (~> 1.2)
99
101
  rack (~> 1.0)
@@ -112,6 +114,7 @@ PLATFORMS
112
114
  DEPENDENCIES
113
115
  appraisal (~> 0.4.1)
114
116
  comma!
117
+ fastercsv
115
118
  rails (= 3.1.1)
116
119
  rake (~> 0.9.2)
117
120
  rspec (~> 2.8.0)
@@ -2,6 +2,7 @@
2
2
 
3
3
  source "http://rubygems.org"
4
4
 
5
+ gem "fastercsv", :platforms=>:ruby_18
5
6
  gem "rails", "~>3.2.1"
6
7
  gem "rspec-rails"
7
8
 
@@ -36,13 +36,14 @@ GEM
36
36
  appraisal (0.4.1)
37
37
  bundler
38
38
  rake
39
- arel (3.0.0)
39
+ arel (3.0.2)
40
40
  builder (3.0.0)
41
41
  diff-lcs (1.1.3)
42
42
  erubis (2.7.0)
43
+ fastercsv (1.5.4)
43
44
  hike (1.2.1)
44
45
  i18n (0.6.0)
45
- journey (1.0.1)
46
+ journey (1.0.3)
46
47
  json (1.6.5)
47
48
  mail (2.4.1)
48
49
  i18n (>= 0.4.0)
@@ -73,7 +74,7 @@ GEM
73
74
  rake (>= 0.8.7)
74
75
  rdoc (~> 3.4)
75
76
  thor (~> 0.14.6)
76
- rake (0.9.2)
77
+ rake (0.9.2.2)
77
78
  rdoc (3.12)
78
79
  json (~> 1.4)
79
80
  rspec (2.8.0)
@@ -89,9 +90,10 @@ GEM
89
90
  activesupport (>= 3.0)
90
91
  railties (>= 3.0)
91
92
  rspec (~> 2.8.0)
92
- simplecov (0.4.2)
93
- simplecov-html (~> 0.4.4)
94
- simplecov-html (0.4.5)
93
+ simplecov (0.6.1)
94
+ multi_json (~> 1.0)
95
+ simplecov-html (~> 0.5.3)
96
+ simplecov-html (0.5.3)
95
97
  sprockets (2.1.2)
96
98
  hike (~> 1.2)
97
99
  rack (~> 1.0)
@@ -110,6 +112,7 @@ PLATFORMS
110
112
  DEPENDENCIES
111
113
  appraisal (~> 0.4.1)
112
114
  comma!
115
+ fastercsv
113
116
  rails (~> 3.2.1)
114
117
  rake (~> 0.9.2)
115
118
  rspec (~> 2.8.0)
data/lib/comma.rb CHANGED
@@ -3,7 +3,14 @@ if RUBY_VERSION >= '1.9'
3
3
  require 'csv'
4
4
  CSV_HANDLER = CSV
5
5
  else
6
- raise "Error - This Comma version only supports Ruby 1.9. Please use an older version."
6
+ begin
7
+ gem 'fastercsv'
8
+ require 'fastercsv'
9
+
10
+ CSV_HANDLER = FasterCSV
11
+ rescue LoadError => e
12
+ raise "Error : FasterCSV not installed, please `gem install fastercsv` for faster processing on <Ruby 1.9"
13
+ end
7
14
  end
8
15
 
9
16
  if defined? Rails and (Rails.version.split('.').map(&:to_i).first < 3)
data/lib/comma/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Comma
2
- VERSION = "3.0.2"
2
+ VERSION = "3.0.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: comma
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.2
4
+ version: 3.0.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -10,11 +10,11 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2012-02-26 00:00:00.000000000Z
13
+ date: 2012-03-01 00:00:00.000000000Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rake
17
- requirement: &70335467056500 !ruby/object:Gem::Requirement
17
+ requirement: &70136624134040 !ruby/object:Gem::Requirement
18
18
  none: false
19
19
  requirements:
20
20
  - - ~>
@@ -22,10 +22,10 @@ dependencies:
22
22
  version: 0.9.2
23
23
  type: :development
24
24
  prerelease: false
25
- version_requirements: *70335467056500
25
+ version_requirements: *70136624134040
26
26
  - !ruby/object:Gem::Dependency
27
27
  name: sqlite3
28
- requirement: &70335467054900 !ruby/object:Gem::Requirement
28
+ requirement: &70136624133540 !ruby/object:Gem::Requirement
29
29
  none: false
30
30
  requirements:
31
31
  - - ~>
@@ -33,10 +33,10 @@ dependencies:
33
33
  version: 1.3.4
34
34
  type: :development
35
35
  prerelease: false
36
- version_requirements: *70335467054900
36
+ version_requirements: *70136624133540
37
37
  - !ruby/object:Gem::Dependency
38
38
  name: appraisal
39
- requirement: &70335467054140 !ruby/object:Gem::Requirement
39
+ requirement: &70136624133060 !ruby/object:Gem::Requirement
40
40
  none: false
41
41
  requirements:
42
42
  - - ~>
@@ -44,10 +44,10 @@ dependencies:
44
44
  version: 0.4.1
45
45
  type: :development
46
46
  prerelease: false
47
- version_requirements: *70335467054140
47
+ version_requirements: *70136624133060
48
48
  - !ruby/object:Gem::Dependency
49
49
  name: rspec
50
- requirement: &70335467053480 !ruby/object:Gem::Requirement
50
+ requirement: &70136619239900 !ruby/object:Gem::Requirement
51
51
  none: false
52
52
  requirements:
53
53
  - - ~>
@@ -55,10 +55,10 @@ dependencies:
55
55
  version: 2.8.0
56
56
  type: :development
57
57
  prerelease: false
58
- version_requirements: *70335467053480
58
+ version_requirements: *70136619239900
59
59
  - !ruby/object:Gem::Dependency
60
60
  name: simplecov
61
- requirement: &70335467052920 !ruby/object:Gem::Requirement
61
+ requirement: &70136619239520 !ruby/object:Gem::Requirement
62
62
  none: false
63
63
  requirements:
64
64
  - - ! '>='
@@ -66,7 +66,7 @@ dependencies:
66
66
  version: '0'
67
67
  type: :development
68
68
  prerelease: false
69
- version_requirements: *70335467052920
69
+ version_requirements: *70136619239520
70
70
  description: Ruby Comma Seperated Values generation library
71
71
  email:
72
72
  - crafterm@redartisan.com
@@ -77,6 +77,7 @@ extra_rdoc_files: []
77
77
  files:
78
78
  - .gitignore
79
79
  - .rvmrc
80
+ - .travis.yml
80
81
  - Appraisals
81
82
  - Gemfile
82
83
  - Gemfile.lock
@@ -90,10 +91,6 @@ files:
90
91
  - gemfiles/active3.1.1.gemfile.lock
91
92
  - gemfiles/active3.2.1.gemfile
92
93
  - gemfiles/active3.2.1.gemfile.lock
93
- - gemfiles/activesupport2.gemfile
94
- - gemfiles/activesupport2.gemfile.lock
95
- - gemfiles/activesupport3.gemfile
96
- - gemfiles/activesupport3.gemfile.lock
97
94
  - gemfiles/rails3.0.9.gemfile
98
95
  - gemfiles/rails3.0.9.gemfile.lock
99
96
  - gemfiles/rails3.1.1.gemfile
@@ -156,7 +153,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
156
153
  version: '0'
157
154
  segments:
158
155
  - 0
159
- hash: -1006301303101993278
156
+ hash: 1069179881687132397
160
157
  required_rubygems_version: !ruby/object:Gem::Requirement
161
158
  none: false
162
159
  requirements:
@@ -165,10 +162,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
165
162
  version: '0'
166
163
  segments:
167
164
  - 0
168
- hash: -1006301303101993278
165
+ hash: 1069179881687132397
169
166
  requirements: []
170
167
  rubyforge_project: comma
171
- rubygems_version: 1.8.10
168
+ rubygems_version: 1.8.17
172
169
  signing_key:
173
170
  specification_version: 3
174
171
  summary: Ruby Comma Seperated Values generation library
@@ -1,8 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "http://rubygems.org"
4
-
5
- gem "activesupport", "<3"
6
- gem "activerecord", "<3"
7
-
8
- gemspec :path=>"../"
@@ -1,39 +0,0 @@
1
- PATH
2
- remote: /Users/tom/Development/Projects/comma
3
- specs:
4
- comma (0.4.2)
5
- fastercsv (= 1.5.4)
6
-
7
- GEM
8
- remote: http://rubygems.org/
9
- specs:
10
- activerecord (2.3.14)
11
- activesupport (= 2.3.14)
12
- activesupport (2.3.14)
13
- appraisal (0.4.0)
14
- bundler
15
- rake
16
- diff-lcs (1.1.3)
17
- fastercsv (1.5.4)
18
- rake (0.8.7)
19
- rspec (2.7.0)
20
- rspec-core (~> 2.7.0)
21
- rspec-expectations (~> 2.7.0)
22
- rspec-mocks (~> 2.7.0)
23
- rspec-core (2.7.1)
24
- rspec-expectations (2.7.0)
25
- diff-lcs (~> 1.1.2)
26
- rspec-mocks (2.7.0)
27
- sqlite3 (1.3.5)
28
-
29
- PLATFORMS
30
- ruby
31
-
32
- DEPENDENCIES
33
- activerecord (< 3)
34
- activesupport (< 3)
35
- appraisal (>= 0.4.0)
36
- comma!
37
- rake (= 0.8.7)
38
- rspec (~> 2.7.0)
39
- sqlite3 (~> 1.3.4)
@@ -1,8 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "http://rubygems.org"
4
-
5
- gem "activesupport", ">3"
6
- gem "activerecord", ">3"
7
-
8
- gemspec :path=>"../"
@@ -1,52 +0,0 @@
1
- PATH
2
- remote: /Users/tom/Development/Projects/comma
3
- specs:
4
- comma (0.4.2)
5
- fastercsv (= 1.5.4)
6
-
7
- GEM
8
- remote: http://rubygems.org/
9
- specs:
10
- activemodel (3.1.3)
11
- activesupport (= 3.1.3)
12
- builder (~> 3.0.0)
13
- i18n (~> 0.6)
14
- activerecord (3.1.3)
15
- activemodel (= 3.1.3)
16
- activesupport (= 3.1.3)
17
- arel (~> 2.2.1)
18
- tzinfo (~> 0.3.29)
19
- activesupport (3.1.3)
20
- multi_json (~> 1.0)
21
- appraisal (0.4.0)
22
- bundler
23
- rake
24
- arel (2.2.1)
25
- builder (3.0.0)
26
- diff-lcs (1.1.3)
27
- fastercsv (1.5.4)
28
- i18n (0.6.0)
29
- multi_json (1.0.4)
30
- rake (0.8.7)
31
- rspec (2.7.0)
32
- rspec-core (~> 2.7.0)
33
- rspec-expectations (~> 2.7.0)
34
- rspec-mocks (~> 2.7.0)
35
- rspec-core (2.7.1)
36
- rspec-expectations (2.7.0)
37
- diff-lcs (~> 1.1.2)
38
- rspec-mocks (2.7.0)
39
- sqlite3 (1.3.5)
40
- tzinfo (0.3.31)
41
-
42
- PLATFORMS
43
- ruby
44
-
45
- DEPENDENCIES
46
- activerecord (> 3)
47
- activesupport (> 3)
48
- appraisal (>= 0.4.0)
49
- comma!
50
- rake (= 0.8.7)
51
- rspec (~> 2.7.0)
52
- sqlite3 (~> 1.3.4)