comma 3.0.5 → 3.0.6

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore CHANGED
@@ -5,3 +5,5 @@ pkg/*
5
5
  spec/rails_app/log
6
6
  spec/rails_app/db/development.sqlite*
7
7
  .rbx/
8
+ .ruby-*
9
+ coverage/*
data/Appraisals CHANGED
@@ -1,5 +1,6 @@
1
- ['3.0.9', '3.1.1', '3.1.12', '3.2.11'].each do |version_number|
1
+ ['3.0.9', '3.1.1', '3.1.12', '3.2.11', '4.0.0'].each do |version_number|
2
2
  clean_number = version_number.gsub(/[<>~=]*/, '')
3
+ next if RUBY_VERSION < '1.9.3' && version_number >= '4.0.0'
3
4
 
4
5
  appraise "rails#{ clean_number }" do
5
6
  gem "rails", version_number
data/Gemfile.lock CHANGED
@@ -1,16 +1,21 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- comma (3.0.4)
4
+ comma (3.0.6)
5
+ activesupport (>= 3.0.0)
5
6
 
6
7
  GEM
7
8
  remote: http://rubygems.org/
8
9
  specs:
10
+ activesupport (3.2.13)
11
+ i18n (= 0.6.1)
12
+ multi_json (~> 1.0)
9
13
  appraisal (0.4.1)
10
14
  bundler
11
15
  rake
12
16
  diff-lcs (1.1.3)
13
17
  fastercsv (1.5.4)
18
+ i18n (0.6.1)
14
19
  multi_json (1.1.0)
15
20
  rake (0.9.2.2)
16
21
  rspec (2.8.0)
data/README.markdown CHANGED
@@ -1,19 +1,21 @@
1
1
  #COMMA
2
2
 
3
- http://github.com/crafterm/comma
3
+ http://github.com/comma-csv/comma
4
+
5
+ [![Gem Version](https://badge.fury.io/rb/comma.png)](http://badge.fury.io/rb/comma)
4
6
 
5
7
  ##COMPATIBILITY
6
8
  The mainline of this project builds gems to the 3.x version series, and is compatible and tested with :
7
9
 
8
10
  * Ruby 1.8.7, 1.9.2, 1.9.3, 2.0.0
9
11
  * REE 1.8.7
10
- * RBX 1.8
12
+ * RBX 1.8 mode, 1.9 mode
11
13
  * Rails 3.x (all versions, with ActiveRecord and Mongoid support)
12
14
 
13
15
  [![Build Status](https://travis-ci.org/comma-csv/comma.png?branch=master)](https://travis-ci.org/comma-csv/comma)
14
16
 
15
17
  ###LOOKING FOR RAILS 2?
16
- * 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).
18
+ * Rails 2 is supported in the 'rails2' branch of this project, and versioned in the 2.x version of this gem. (https://github.com/comma-csv/comma/tree/rails2).
17
19
 
18
20
  ##INSTALLATION
19
21
 
@@ -22,13 +24,13 @@ Comma is distributed as a gem, best installed via Bundler.
22
24
  Include the gem in your Gemfile:
23
25
 
24
26
  ```Ruby
25
- gem "comma", "~> 3.0"
27
+ gem "comma", "~> 3.0.5"
26
28
  ```
27
29
 
28
30
  Or, if you want to live life on the edge, you can get master from the main comma repository:
29
31
 
30
32
  ```Ruby
31
- gem "comma", :git => "git://github.com/crafterm/comma.git"
33
+ gem "comma", :git => "git://github.com/comma-csv/comma.git"
32
34
  ```
33
35
 
34
36
  ##DESCRIPTION:
@@ -225,7 +227,7 @@ In the preceding example, the 2 new fields added (both based on the publisher re
225
227
  * the first example 'publishers_contact' is loaded straight as a block. The value returned by the lambda is displayed with a header value of 'Publisher'
226
228
  * the second example 'total_publishers_users' is sent via a hash and a custom label is set, if used in the first examples method the header would be 'Publisher', but sent as a hash the header is 'Number of publisher users'.
227
229
 
228
- ###USING WITH RAILS
230
+ ##USING WITH RAILS
229
231
 
230
232
  When used with Rails (ie. add 'comma' as a gem dependency), Comma automatically adds support for rendering CSV output in your controllers:
231
233
 
data/comma.gemspec CHANGED
@@ -15,16 +15,16 @@ Gem::Specification.new do |s|
15
15
 
16
16
  s.files = `git ls-files`.split("\n")
17
17
  s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
18
- s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
19
18
  s.require_paths = ["lib"]
20
19
 
21
20
  s.licenses = ['MIT']
22
21
 
23
- s.add_development_dependency(%q<rake>, ["~> 0.9.2"])
24
- s.add_development_dependency('sqlite3', '~> 1.3.4')
25
- s.add_development_dependency(%q<appraisal>, ["~> 0.4.1"])
22
+ s.add_dependency 'activesupport', ['>= 3.0.0']
26
23
 
27
- s.add_development_dependency('rspec', '~> 2.8.0')
28
- s.add_development_dependency 'simplecov'
24
+ s.add_development_dependency 'rake', ['~> 0.9.2']
25
+ s.add_development_dependency 'sqlite3', ['~> 1.3.4']
26
+ s.add_development_dependency 'appraisal', ['~> 0.4.1']
27
+ s.add_development_dependency 'rspec', ['~> 2.8.0']
28
+ s.add_development_dependency 'simplecov', ['>= 0']
29
29
 
30
30
  end
@@ -1,7 +1,8 @@
1
1
  PATH
2
- remote: /Users/tom/src/personal/comma
2
+ remote: ..
3
3
  specs:
4
- comma (3.0.4)
4
+ comma (3.0.6)
5
+ activesupport (>= 3.0.0)
5
6
 
6
7
  GEM
7
8
  remote: http://rubygems.org/
@@ -1,7 +1,8 @@
1
1
  PATH
2
- remote: /Users/tom/src/personal/comma
2
+ remote: ..
3
3
  specs:
4
- comma (3.0.4)
4
+ comma (3.0.6)
5
+ activesupport (>= 3.0.0)
5
6
 
6
7
  GEM
7
8
  remote: http://rubygems.org/
@@ -1,7 +1,8 @@
1
1
  PATH
2
- remote: /Users/tom/src/personal/comma
2
+ remote: ..
3
3
  specs:
4
- comma (3.0.4)
4
+ comma (3.0.6)
5
+ activesupport (>= 3.0.0)
5
6
 
6
7
  GEM
7
8
  remote: http://rubygems.org/
@@ -1,7 +1,8 @@
1
1
  PATH
2
- remote: /Users/tom/src/personal/comma
2
+ remote: ..
3
3
  specs:
4
- comma (3.0.4)
4
+ comma (3.0.6)
5
+ activesupport (>= 3.0.0)
5
6
 
6
7
  GEM
7
8
  remote: http://rubygems.org/
@@ -3,7 +3,7 @@
3
3
  source "http://rubygems.org"
4
4
 
5
5
  gem "fastercsv", :platforms=>:ruby_18
6
- gem "activesupport", "~>3.2.1"
7
- gem "activerecord", "~>3.2.1"
6
+ gem "activesupport", "4.0.0"
7
+ gem "activerecord", "4.0.0"
8
8
 
9
9
  gemspec :path=>"../"
@@ -0,0 +1,66 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ comma (3.0.5)
5
+ activesupport (>= 3.0.0)
6
+
7
+ GEM
8
+ remote: http://rubygems.org/
9
+ specs:
10
+ activemodel (4.0.0)
11
+ activesupport (= 4.0.0)
12
+ builder (~> 3.1.0)
13
+ activerecord (4.0.0)
14
+ activemodel (= 4.0.0)
15
+ activerecord-deprecated_finders (~> 1.0.2)
16
+ activesupport (= 4.0.0)
17
+ arel (~> 4.0.0)
18
+ activerecord-deprecated_finders (1.0.3)
19
+ activesupport (4.0.0)
20
+ i18n (~> 0.6, >= 0.6.4)
21
+ minitest (~> 4.2)
22
+ multi_json (~> 1.3)
23
+ thread_safe (~> 0.1)
24
+ tzinfo (~> 0.3.37)
25
+ appraisal (0.4.1)
26
+ bundler
27
+ rake
28
+ arel (4.0.0)
29
+ atomic (1.1.12)
30
+ builder (3.1.4)
31
+ diff-lcs (1.1.3)
32
+ fastercsv (1.5.5)
33
+ i18n (0.6.5)
34
+ minitest (4.7.5)
35
+ multi_json (1.7.9)
36
+ rake (0.9.6)
37
+ rspec (2.8.0)
38
+ rspec-core (~> 2.8.0)
39
+ rspec-expectations (~> 2.8.0)
40
+ rspec-mocks (~> 2.8.0)
41
+ rspec-core (2.8.0)
42
+ rspec-expectations (2.8.0)
43
+ diff-lcs (~> 1.1.2)
44
+ rspec-mocks (2.8.0)
45
+ simplecov (0.7.1)
46
+ multi_json (~> 1.0)
47
+ simplecov-html (~> 0.7.1)
48
+ simplecov-html (0.7.1)
49
+ sqlite3 (1.3.7)
50
+ thread_safe (0.1.2)
51
+ atomic
52
+ tzinfo (0.3.37)
53
+
54
+ PLATFORMS
55
+ ruby
56
+
57
+ DEPENDENCIES
58
+ activerecord (= 4.0.0)
59
+ activesupport (= 4.0.0)
60
+ appraisal (~> 0.4.1)
61
+ comma!
62
+ fastercsv
63
+ rake (~> 0.9.2)
64
+ rspec (~> 2.8.0)
65
+ simplecov
66
+ sqlite3 (~> 1.3.4)
@@ -1,7 +1,8 @@
1
1
  PATH
2
- remote: /Users/tom/src/personal/comma
2
+ remote: ..
3
3
  specs:
4
- comma (3.0.4)
4
+ comma (3.0.6)
5
+ activesupport (>= 3.0.0)
5
6
 
6
7
  GEM
7
8
  remote: http://rubygems.org/
@@ -1,7 +1,8 @@
1
1
  PATH
2
- remote: /Users/tom/src/personal/comma
2
+ remote: ..
3
3
  specs:
4
- comma (3.0.4)
4
+ comma (3.0.6)
5
+ activesupport (>= 3.0.0)
5
6
 
6
7
  GEM
7
8
  remote: http://rubygems.org/
@@ -1,7 +1,8 @@
1
1
  PATH
2
- remote: /Users/tom/src/personal/comma
2
+ remote: ..
3
3
  specs:
4
- comma (3.0.4)
4
+ comma (3.0.6)
5
+ activesupport (>= 3.0.0)
5
6
 
6
7
  GEM
7
8
  remote: http://rubygems.org/
@@ -1,7 +1,8 @@
1
1
  PATH
2
- remote: /Users/tom/src/personal/comma
2
+ remote: ..
3
3
  specs:
4
- comma (3.0.4)
4
+ comma (3.0.6)
5
+ activesupport (>= 3.0.0)
5
6
 
6
7
  GEM
7
8
  remote: http://rubygems.org/
@@ -3,7 +3,7 @@
3
3
  source "http://rubygems.org"
4
4
 
5
5
  gem "fastercsv", :platforms=>:ruby_18
6
- gem "rails", "~>3.2.8"
6
+ gem "rails", "4.0.0"
7
7
  gem "rspec-rails"
8
8
 
9
9
  gemspec :path=>"../"
@@ -0,0 +1,117 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ comma (3.0.5)
5
+ activesupport (>= 3.0.0)
6
+
7
+ GEM
8
+ remote: http://rubygems.org/
9
+ specs:
10
+ actionmailer (4.0.0)
11
+ actionpack (= 4.0.0)
12
+ mail (~> 2.5.3)
13
+ actionpack (4.0.0)
14
+ activesupport (= 4.0.0)
15
+ builder (~> 3.1.0)
16
+ erubis (~> 2.7.0)
17
+ rack (~> 1.5.2)
18
+ rack-test (~> 0.6.2)
19
+ activemodel (4.0.0)
20
+ activesupport (= 4.0.0)
21
+ builder (~> 3.1.0)
22
+ activerecord (4.0.0)
23
+ activemodel (= 4.0.0)
24
+ activerecord-deprecated_finders (~> 1.0.2)
25
+ activesupport (= 4.0.0)
26
+ arel (~> 4.0.0)
27
+ activerecord-deprecated_finders (1.0.3)
28
+ activesupport (4.0.0)
29
+ i18n (~> 0.6, >= 0.6.4)
30
+ minitest (~> 4.2)
31
+ multi_json (~> 1.3)
32
+ thread_safe (~> 0.1)
33
+ tzinfo (~> 0.3.37)
34
+ appraisal (0.4.1)
35
+ bundler
36
+ rake
37
+ arel (4.0.0)
38
+ atomic (1.1.12)
39
+ builder (3.1.4)
40
+ diff-lcs (1.1.3)
41
+ erubis (2.7.0)
42
+ fastercsv (1.5.5)
43
+ hike (1.2.3)
44
+ i18n (0.6.5)
45
+ mail (2.5.4)
46
+ mime-types (~> 1.16)
47
+ treetop (~> 1.4.8)
48
+ mime-types (1.23)
49
+ minitest (4.7.5)
50
+ multi_json (1.7.9)
51
+ polyglot (0.3.3)
52
+ rack (1.5.2)
53
+ rack-test (0.6.2)
54
+ rack (>= 1.0)
55
+ rails (4.0.0)
56
+ actionmailer (= 4.0.0)
57
+ actionpack (= 4.0.0)
58
+ activerecord (= 4.0.0)
59
+ activesupport (= 4.0.0)
60
+ bundler (>= 1.3.0, < 2.0)
61
+ railties (= 4.0.0)
62
+ sprockets-rails (~> 2.0.0)
63
+ railties (4.0.0)
64
+ actionpack (= 4.0.0)
65
+ activesupport (= 4.0.0)
66
+ rake (>= 0.8.7)
67
+ thor (>= 0.18.1, < 2.0)
68
+ rake (0.9.6)
69
+ rspec (2.8.0)
70
+ rspec-core (~> 2.8.0)
71
+ rspec-expectations (~> 2.8.0)
72
+ rspec-mocks (~> 2.8.0)
73
+ rspec-core (2.8.0)
74
+ rspec-expectations (2.8.0)
75
+ diff-lcs (~> 1.1.2)
76
+ rspec-mocks (2.8.0)
77
+ rspec-rails (2.8.1)
78
+ actionpack (>= 3.0)
79
+ activesupport (>= 3.0)
80
+ railties (>= 3.0)
81
+ rspec (~> 2.8.0)
82
+ simplecov (0.7.1)
83
+ multi_json (~> 1.0)
84
+ simplecov-html (~> 0.7.1)
85
+ simplecov-html (0.7.1)
86
+ sprockets (2.10.0)
87
+ hike (~> 1.2)
88
+ multi_json (~> 1.0)
89
+ rack (~> 1.0)
90
+ tilt (~> 1.1, != 1.3.0)
91
+ sprockets-rails (2.0.0)
92
+ actionpack (>= 3.0)
93
+ activesupport (>= 3.0)
94
+ sprockets (~> 2.8)
95
+ sqlite3 (1.3.7)
96
+ thor (0.18.1)
97
+ thread_safe (0.1.2)
98
+ atomic
99
+ tilt (1.4.1)
100
+ treetop (1.4.14)
101
+ polyglot
102
+ polyglot (>= 0.3.1)
103
+ tzinfo (0.3.37)
104
+
105
+ PLATFORMS
106
+ ruby
107
+
108
+ DEPENDENCIES
109
+ appraisal (~> 0.4.1)
110
+ comma!
111
+ fastercsv
112
+ rails (= 4.0.0)
113
+ rake (~> 0.9.2)
114
+ rspec (~> 2.8.0)
115
+ rspec-rails
116
+ simplecov
117
+ sqlite3 (~> 1.3.4)
data/lib/comma/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Comma
2
- VERSION = "3.0.5"
2
+ VERSION = "3.0.6"
3
3
  end
@@ -3,7 +3,7 @@ require 'spec_helper'
3
3
  describe Comma, 'generating CSV from an ActiveRecord object' do
4
4
 
5
5
  class Person < ActiveRecord::Base
6
- scope :teenagers, lambda { {:conditions => { :age => 13..19 }} }
6
+ scope :teenagers, lambda { where(:age => 13..19) }
7
7
 
8
8
  comma do
9
9
  name
@@ -18,7 +18,7 @@ if defined?(ActionController) && defined?(Rails)
18
18
  end
19
19
 
20
20
  describe "controller" do
21
- before(:each) do
21
+ before(:all) do
22
22
  @user_1 = User.create!(:first_name => 'Fred', :last_name => 'Flintstone')
23
23
  @user_2 = User.create!(:first_name => 'Wilma', :last_name => 'Flintstone')
24
24
  end
@@ -6,9 +6,6 @@ RailsApp::Application.configure do
6
6
  # since you don't have to restart the webserver when you make code changes.
7
7
  config.cache_classes = false
8
8
 
9
- # Log error messages when you accidentally call methods on nil.
10
- config.whiny_nils = true
11
-
12
9
  # Show full error reports and disable caching
13
10
  config.consider_all_requests_local = true
14
11
  config.action_controller.perform_caching = false
@@ -17,4 +14,6 @@ RailsApp::Application.configure do
17
14
  config.action_mailer.raise_delivery_errors = false
18
15
 
19
16
  config.active_support.deprecation = :log
17
+
18
+ config.eager_load = false
20
19
  end
@@ -32,4 +32,6 @@ RailsApp::Application.configure do
32
32
  # config.threadsafe!
33
33
 
34
34
  config.active_support.deprecation = :log
35
+
36
+ config.eager_load = true
35
37
  end
@@ -7,9 +7,6 @@ RailsApp::Application.configure do
7
7
  # and recreated between test runs. Don't rely on the data there!
8
8
  config.cache_classes = true
9
9
 
10
- # Log error messages when you accidentally call methods on nil.
11
- config.whiny_nils = true
12
-
13
10
  # Show full error reports and disable caching
14
11
  config.consider_all_requests_local = true
15
12
  config.action_controller.perform_caching = false
@@ -30,4 +27,6 @@ RailsApp::Application.configure do
30
27
  config.action_dispatch.show_exceptions = false
31
28
 
32
29
  config.active_support.deprecation = :stderr
30
+
31
+ config.eager_load = false
33
32
  end
@@ -2,8 +2,8 @@ Rails.application.routes.draw do
2
2
  # Resources for testing
3
3
  resources :users, :only => [:index]
4
4
 
5
- match "with_custom_options", :to => "users#with_custom_options"
6
- match "with_custom_style", :to => "users#with_custom_style"
5
+ get "with_custom_options", :to => "users#with_custom_options"
6
+ get "with_custom_style", :to => "users#with_custom_style"
7
7
 
8
8
  root :to => "users#index"
9
9
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: comma
3
3
  version: !ruby/object:Gem::Version
4
- hash: 13
4
+ hash: 11
5
5
  prerelease:
6
6
  segments:
7
7
  - 3
8
8
  - 0
9
- - 5
10
- version: 3.0.5
9
+ - 6
10
+ version: 3.0.6
11
11
  platform: ruby
12
12
  authors:
13
13
  - Marcus Crafter
@@ -16,12 +16,28 @@ autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
18
 
19
- date: 2013-08-13 00:00:00 Z
19
+ date: 2013-08-15 00:00:00 Z
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
22
- name: rake
22
+ name: activesupport
23
23
  prerelease: false
24
24
  requirement: &id001 !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ hash: 7
30
+ segments:
31
+ - 3
32
+ - 0
33
+ - 0
34
+ version: 3.0.0
35
+ type: :runtime
36
+ version_requirements: *id001
37
+ - !ruby/object:Gem::Dependency
38
+ name: rake
39
+ prerelease: false
40
+ requirement: &id002 !ruby/object:Gem::Requirement
25
41
  none: false
26
42
  requirements:
27
43
  - - ~>
@@ -33,11 +49,11 @@ dependencies:
33
49
  - 2
34
50
  version: 0.9.2
35
51
  type: :development
36
- version_requirements: *id001
52
+ version_requirements: *id002
37
53
  - !ruby/object:Gem::Dependency
38
54
  name: sqlite3
39
55
  prerelease: false
40
- requirement: &id002 !ruby/object:Gem::Requirement
56
+ requirement: &id003 !ruby/object:Gem::Requirement
41
57
  none: false
42
58
  requirements:
43
59
  - - ~>
@@ -49,11 +65,11 @@ dependencies:
49
65
  - 4
50
66
  version: 1.3.4
51
67
  type: :development
52
- version_requirements: *id002
68
+ version_requirements: *id003
53
69
  - !ruby/object:Gem::Dependency
54
70
  name: appraisal
55
71
  prerelease: false
56
- requirement: &id003 !ruby/object:Gem::Requirement
72
+ requirement: &id004 !ruby/object:Gem::Requirement
57
73
  none: false
58
74
  requirements:
59
75
  - - ~>
@@ -65,11 +81,11 @@ dependencies:
65
81
  - 1
66
82
  version: 0.4.1
67
83
  type: :development
68
- version_requirements: *id003
84
+ version_requirements: *id004
69
85
  - !ruby/object:Gem::Dependency
70
86
  name: rspec
71
87
  prerelease: false
72
- requirement: &id004 !ruby/object:Gem::Requirement
88
+ requirement: &id005 !ruby/object:Gem::Requirement
73
89
  none: false
74
90
  requirements:
75
91
  - - ~>
@@ -81,11 +97,11 @@ dependencies:
81
97
  - 0
82
98
  version: 2.8.0
83
99
  type: :development
84
- version_requirements: *id004
100
+ version_requirements: *id005
85
101
  - !ruby/object:Gem::Dependency
86
102
  name: simplecov
87
103
  prerelease: false
88
- requirement: &id005 !ruby/object:Gem::Requirement
104
+ requirement: &id006 !ruby/object:Gem::Requirement
89
105
  none: false
90
106
  requirements:
91
107
  - - ">="
@@ -95,7 +111,7 @@ dependencies:
95
111
  - 0
96
112
  version: "0"
97
113
  type: :development
98
- version_requirements: *id005
114
+ version_requirements: *id006
99
115
  description: Ruby Comma Seperated Values generation library
100
116
  email:
101
117
  - crafterm@redartisan.com
@@ -122,12 +138,10 @@ files:
122
138
  - gemfiles/active3.1.1.gemfile.lock
123
139
  - gemfiles/active3.1.12.gemfile
124
140
  - gemfiles/active3.1.12.gemfile.lock
125
- - gemfiles/active3.2.1.gemfile
126
- - gemfiles/active3.2.1.gemfile.lock
127
141
  - gemfiles/active3.2.11.gemfile
128
142
  - gemfiles/active3.2.11.gemfile.lock
129
- - gemfiles/active3.2.8.gemfile
130
- - gemfiles/active3.2.8.gemfile.lock
143
+ - gemfiles/active4.0.0.gemfile
144
+ - gemfiles/active4.0.0.gemfile.lock
131
145
  - gemfiles/rails3.0.9.gemfile
132
146
  - gemfiles/rails3.0.9.gemfile.lock
133
147
  - gemfiles/rails3.1.1.gemfile
@@ -136,8 +150,8 @@ files:
136
150
  - gemfiles/rails3.1.12.gemfile.lock
137
151
  - gemfiles/rails3.2.11.gemfile
138
152
  - gemfiles/rails3.2.11.gemfile.lock
139
- - gemfiles/rails3.2.8.gemfile
140
- - gemfiles/rails3.2.8.gemfile.lock
153
+ - gemfiles/rails4.0.0.gemfile
154
+ - gemfiles/rails4.0.0.gemfile.lock
141
155
  - init.rb
142
156
  - lib/comma.rb
143
157
  - lib/comma/array.rb
@@ -1,57 +0,0 @@
1
- PATH
2
- remote: /Users/tom/Development/Projects/comma
3
- specs:
4
- comma (3.0.3)
5
-
6
- GEM
7
- remote: http://rubygems.org/
8
- specs:
9
- activemodel (3.2.1)
10
- activesupport (= 3.2.1)
11
- builder (~> 3.0.0)
12
- activerecord (3.2.1)
13
- activemodel (= 3.2.1)
14
- activesupport (= 3.2.1)
15
- arel (~> 3.0.0)
16
- tzinfo (~> 0.3.29)
17
- activesupport (3.2.1)
18
- i18n (~> 0.6)
19
- multi_json (~> 1.0)
20
- appraisal (0.4.1)
21
- bundler
22
- rake
23
- arel (3.0.2)
24
- builder (3.0.0)
25
- diff-lcs (1.1.3)
26
- fastercsv (1.5.4)
27
- i18n (0.6.0)
28
- multi_json (1.1.0)
29
- rake (0.9.2.2)
30
- rspec (2.8.0)
31
- rspec-core (~> 2.8.0)
32
- rspec-expectations (~> 2.8.0)
33
- rspec-mocks (~> 2.8.0)
34
- rspec-core (2.8.0)
35
- rspec-expectations (2.8.0)
36
- diff-lcs (~> 1.1.2)
37
- rspec-mocks (2.8.0)
38
- simplecov (0.6.1)
39
- multi_json (~> 1.0)
40
- simplecov-html (~> 0.5.3)
41
- simplecov-html (0.5.3)
42
- sqlite3 (1.3.5)
43
- tzinfo (0.3.31)
44
-
45
- PLATFORMS
46
- ruby
47
-
48
- DEPENDENCIES
49
- activerecord (~> 3.2.1)
50
- activesupport (~> 3.2.1)
51
- appraisal (~> 0.4.1)
52
- comma!
53
- fastercsv
54
- rake (~> 0.9.2)
55
- rspec (~> 2.8.0)
56
- simplecov
57
- sqlite3 (~> 1.3.4)
@@ -1,9 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "http://rubygems.org"
4
-
5
- gem "fastercsv", :platforms=>:ruby_18
6
- gem "activesupport", "~>3.2.8"
7
- gem "activerecord", "~>3.2.8"
8
-
9
- gemspec :path=>"../"
@@ -1,57 +0,0 @@
1
- PATH
2
- remote: /Users/tom/development/projects/current/comma
3
- specs:
4
- comma (3.0.3)
5
-
6
- GEM
7
- remote: http://rubygems.org/
8
- specs:
9
- activemodel (3.2.8)
10
- activesupport (= 3.2.8)
11
- builder (~> 3.0.0)
12
- activerecord (3.2.8)
13
- activemodel (= 3.2.8)
14
- activesupport (= 3.2.8)
15
- arel (~> 3.0.2)
16
- tzinfo (~> 0.3.29)
17
- activesupport (3.2.8)
18
- i18n (~> 0.6)
19
- multi_json (~> 1.0)
20
- appraisal (0.4.1)
21
- bundler
22
- rake
23
- arel (3.0.2)
24
- builder (3.0.4)
25
- diff-lcs (1.1.3)
26
- fastercsv (1.5.5)
27
- i18n (0.6.1)
28
- multi_json (1.3.7)
29
- rake (0.9.2.2)
30
- rspec (2.8.0)
31
- rspec-core (~> 2.8.0)
32
- rspec-expectations (~> 2.8.0)
33
- rspec-mocks (~> 2.8.0)
34
- rspec-core (2.8.0)
35
- rspec-expectations (2.8.0)
36
- diff-lcs (~> 1.1.2)
37
- rspec-mocks (2.8.0)
38
- simplecov (0.7.1)
39
- multi_json (~> 1.0)
40
- simplecov-html (~> 0.7.1)
41
- simplecov-html (0.7.1)
42
- sqlite3 (1.3.6)
43
- tzinfo (0.3.35)
44
-
45
- PLATFORMS
46
- ruby
47
-
48
- DEPENDENCIES
49
- activerecord (~> 3.2.8)
50
- activesupport (~> 3.2.8)
51
- appraisal (~> 0.4.1)
52
- comma!
53
- fastercsv
54
- rake (~> 0.9.2)
55
- rspec (~> 2.8.0)
56
- simplecov
57
- sqlite3 (~> 1.3.4)
@@ -1,121 +0,0 @@
1
- PATH
2
- remote: /Users/tom/development/projects/current/comma
3
- specs:
4
- comma (3.0.3)
5
-
6
- GEM
7
- remote: http://rubygems.org/
8
- specs:
9
- actionmailer (3.2.8)
10
- actionpack (= 3.2.8)
11
- mail (~> 2.4.4)
12
- actionpack (3.2.8)
13
- activemodel (= 3.2.8)
14
- activesupport (= 3.2.8)
15
- builder (~> 3.0.0)
16
- erubis (~> 2.7.0)
17
- journey (~> 1.0.4)
18
- rack (~> 1.4.0)
19
- rack-cache (~> 1.2)
20
- rack-test (~> 0.6.1)
21
- sprockets (~> 2.1.3)
22
- activemodel (3.2.8)
23
- activesupport (= 3.2.8)
24
- builder (~> 3.0.0)
25
- activerecord (3.2.8)
26
- activemodel (= 3.2.8)
27
- activesupport (= 3.2.8)
28
- arel (~> 3.0.2)
29
- tzinfo (~> 0.3.29)
30
- activeresource (3.2.8)
31
- activemodel (= 3.2.8)
32
- activesupport (= 3.2.8)
33
- activesupport (3.2.8)
34
- i18n (~> 0.6)
35
- multi_json (~> 1.0)
36
- appraisal (0.4.1)
37
- bundler
38
- rake
39
- arel (3.0.2)
40
- builder (3.0.4)
41
- diff-lcs (1.1.3)
42
- erubis (2.7.0)
43
- fastercsv (1.5.5)
44
- hike (1.2.1)
45
- i18n (0.6.1)
46
- journey (1.0.4)
47
- json (1.7.5)
48
- mail (2.4.4)
49
- i18n (>= 0.4.0)
50
- mime-types (~> 1.16)
51
- treetop (~> 1.4.8)
52
- mime-types (1.19)
53
- multi_json (1.3.7)
54
- polyglot (0.3.3)
55
- rack (1.4.1)
56
- rack-cache (1.2)
57
- rack (>= 0.4)
58
- rack-ssl (1.3.2)
59
- rack
60
- rack-test (0.6.2)
61
- rack (>= 1.0)
62
- rails (3.2.8)
63
- actionmailer (= 3.2.8)
64
- actionpack (= 3.2.8)
65
- activerecord (= 3.2.8)
66
- activeresource (= 3.2.8)
67
- activesupport (= 3.2.8)
68
- bundler (~> 1.0)
69
- railties (= 3.2.8)
70
- railties (3.2.8)
71
- actionpack (= 3.2.8)
72
- activesupport (= 3.2.8)
73
- rack-ssl (~> 1.3.2)
74
- rake (>= 0.8.7)
75
- rdoc (~> 3.4)
76
- thor (>= 0.14.6, < 2.0)
77
- rake (0.9.2.2)
78
- rdoc (3.12)
79
- json (~> 1.4)
80
- rspec (2.8.0)
81
- rspec-core (~> 2.8.0)
82
- rspec-expectations (~> 2.8.0)
83
- rspec-mocks (~> 2.8.0)
84
- rspec-core (2.8.0)
85
- rspec-expectations (2.8.0)
86
- diff-lcs (~> 1.1.2)
87
- rspec-mocks (2.8.0)
88
- rspec-rails (2.8.1)
89
- actionpack (>= 3.0)
90
- activesupport (>= 3.0)
91
- railties (>= 3.0)
92
- rspec (~> 2.8.0)
93
- simplecov (0.7.1)
94
- multi_json (~> 1.0)
95
- simplecov-html (~> 0.7.1)
96
- simplecov-html (0.7.1)
97
- sprockets (2.1.3)
98
- hike (~> 1.2)
99
- rack (~> 1.0)
100
- tilt (~> 1.1, != 1.3.0)
101
- sqlite3 (1.3.6)
102
- thor (0.16.0)
103
- tilt (1.3.3)
104
- treetop (1.4.12)
105
- polyglot
106
- polyglot (>= 0.3.1)
107
- tzinfo (0.3.35)
108
-
109
- PLATFORMS
110
- ruby
111
-
112
- DEPENDENCIES
113
- appraisal (~> 0.4.1)
114
- comma!
115
- fastercsv
116
- rails (~> 3.2.8)
117
- rake (~> 0.9.2)
118
- rspec (~> 2.8.0)
119
- rspec-rails
120
- simplecov
121
- sqlite3 (~> 1.3.4)