pacecar 1.5.2 → 1.5.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (86) hide show
  1. data/.gitignore +6 -0
  2. data/.travis.yml +4 -0
  3. data/Appraisals +22 -0
  4. data/Gemfile +1 -7
  5. data/Gemfile.lock +129 -0
  6. data/README.md +33 -33
  7. data/Rakefile +2 -19
  8. data/gemfiles/rails-3.0.11-database-mysql.gemfile +8 -0
  9. data/gemfiles/rails-3.0.11-database-mysql.gemfile.lock +134 -0
  10. data/gemfiles/rails-3.0.11-database-mysql2.gemfile +8 -0
  11. data/gemfiles/rails-3.0.11-database-mysql2.gemfile.lock +134 -0
  12. data/gemfiles/rails-3.0.11-database-pg.gemfile +8 -0
  13. data/gemfiles/rails-3.0.11-database-pg.gemfile.lock +134 -0
  14. data/gemfiles/rails-3.0.11-database-sqlite3-ruby.gemfile +8 -0
  15. data/gemfiles/rails-3.0.11-database-sqlite3-ruby.gemfile.lock +136 -0
  16. data/gemfiles/rails-3.0.11-database-sqlite3.gemfile +8 -0
  17. data/gemfiles/rails-3.0.11-database-sqlite3.gemfile.lock +134 -0
  18. data/gemfiles/rails-3.1.3-database-mysql.gemfile +8 -0
  19. data/gemfiles/rails-3.1.3-database-mysql.gemfile.lock +144 -0
  20. data/gemfiles/rails-3.1.3-database-mysql2.gemfile +8 -0
  21. data/gemfiles/rails-3.1.3-database-mysql2.gemfile.lock +144 -0
  22. data/gemfiles/rails-3.1.3-database-pg.gemfile +8 -0
  23. data/gemfiles/rails-3.1.3-database-pg.gemfile.lock +144 -0
  24. data/gemfiles/rails-3.1.3-database-sqlite3-ruby.gemfile +8 -0
  25. data/gemfiles/rails-3.1.3-database-sqlite3-ruby.gemfile.lock +146 -0
  26. data/gemfiles/rails-3.1.3-database-sqlite3.gemfile +8 -0
  27. data/gemfiles/rails-3.1.3-database-sqlite3.gemfile.lock +144 -0
  28. data/lib/pacecar.rb +1 -0
  29. data/lib/pacecar/helpers.rb +1 -1
  30. data/lib/pacecar/version.rb +3 -0
  31. data/pacecar.gemspec +25 -0
  32. data/spec/associations_spec.rb +32 -0
  33. data/spec/boolean_spec.rb +30 -0
  34. data/spec/datetime_spec.rb +92 -0
  35. data/spec/dummy/Rakefile +7 -0
  36. data/spec/dummy/app/controllers/application_controller.rb +3 -0
  37. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  38. data/spec/dummy/app/models/article.rb +5 -0
  39. data/spec/dummy/app/models/comment.rb +5 -0
  40. data/spec/dummy/app/models/mammal.rb +7 -0
  41. data/spec/dummy/app/models/post.rb +14 -0
  42. data/spec/dummy/app/models/user.rb +14 -0
  43. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  44. data/spec/dummy/config.ru +4 -0
  45. data/spec/dummy/config/application.rb +45 -0
  46. data/spec/dummy/config/boot.rb +10 -0
  47. data/spec/dummy/config/database.yml +51 -0
  48. data/spec/dummy/config/environment.rb +5 -0
  49. data/spec/dummy/config/environments/development.rb +26 -0
  50. data/spec/dummy/config/environments/production.rb +49 -0
  51. data/spec/dummy/config/environments/test.rb +35 -0
  52. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  53. data/spec/dummy/config/initializers/inflections.rb +10 -0
  54. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  55. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  56. data/spec/dummy/config/initializers/session_store.rb +8 -0
  57. data/spec/dummy/config/locales/en.yml +5 -0
  58. data/spec/dummy/config/routes.rb +58 -0
  59. data/spec/dummy/db/migrate/20100419201348_create_schema.rb +37 -0
  60. data/spec/dummy/public/404.html +26 -0
  61. data/spec/dummy/public/422.html +26 -0
  62. data/spec/dummy/public/500.html +26 -0
  63. data/spec/dummy/public/favicon.ico +0 -0
  64. data/spec/dummy/public/javascripts/application.js +2 -0
  65. data/spec/dummy/public/javascripts/controls.js +965 -0
  66. data/spec/dummy/public/javascripts/dragdrop.js +974 -0
  67. data/spec/dummy/public/javascripts/effects.js +1123 -0
  68. data/spec/dummy/public/javascripts/prototype.js +6001 -0
  69. data/spec/dummy/public/javascripts/rails.js +191 -0
  70. data/spec/dummy/public/stylesheets/.gitkeep +0 -0
  71. data/spec/dummy/script/rails +6 -0
  72. data/spec/duration_spec.rb +22 -0
  73. data/spec/factories.rb +26 -0
  74. data/spec/helpers_spec.rb +49 -0
  75. data/spec/integration/navigation_spec.rb +9 -0
  76. data/spec/limit_spec.rb +25 -0
  77. data/spec/numeric_spec.rb +43 -0
  78. data/spec/order_spec.rb +22 -0
  79. data/spec/pacecar_spec.rb +7 -0
  80. data/spec/polymorph_spec.rb +18 -0
  81. data/spec/presence_spec.rb +23 -0
  82. data/spec/ranking_spec.rb +63 -0
  83. data/spec/search_spec.rb +63 -0
  84. data/spec/spec_helper.rb +38 -0
  85. data/spec/state_spec.rb +69 -0
  86. metadata +202 -10
@@ -0,0 +1,8 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "http://rubygems.org"
4
+
5
+ gem "rails", "3.0.11"
6
+ gem "mysql2", "0.2.13"
7
+
8
+ gemspec :path=>"../"
@@ -0,0 +1,134 @@
1
+ PATH
2
+ remote: /Users/mjankowski/Development/opensource/pacecar
3
+ specs:
4
+ pacecar (1.5.2)
5
+
6
+ GEM
7
+ remote: http://rubygems.org/
8
+ specs:
9
+ abstract (1.0.0)
10
+ actionmailer (3.0.11)
11
+ actionpack (= 3.0.11)
12
+ mail (~> 2.2.19)
13
+ actionpack (3.0.11)
14
+ activemodel (= 3.0.11)
15
+ activesupport (= 3.0.11)
16
+ builder (~> 2.1.2)
17
+ erubis (~> 2.6.6)
18
+ i18n (~> 0.5.0)
19
+ rack (~> 1.2.1)
20
+ rack-mount (~> 0.6.14)
21
+ rack-test (~> 0.5.7)
22
+ tzinfo (~> 0.3.23)
23
+ activemodel (3.0.11)
24
+ activesupport (= 3.0.11)
25
+ builder (~> 2.1.2)
26
+ i18n (~> 0.5.0)
27
+ activerecord (3.0.11)
28
+ activemodel (= 3.0.11)
29
+ activesupport (= 3.0.11)
30
+ arel (~> 2.0.10)
31
+ tzinfo (~> 0.3.23)
32
+ activeresource (3.0.11)
33
+ activemodel (= 3.0.11)
34
+ activesupport (= 3.0.11)
35
+ activesupport (3.0.11)
36
+ appraisal (0.4.0)
37
+ bundler
38
+ rake
39
+ arel (2.0.10)
40
+ builder (2.1.2)
41
+ capybara (1.1.2)
42
+ mime-types (>= 1.16)
43
+ nokogiri (>= 1.3.3)
44
+ rack (>= 1.0.0)
45
+ rack-test (>= 0.5.4)
46
+ selenium-webdriver (~> 2.0)
47
+ xpath (~> 0.1.4)
48
+ childprocess (0.2.6)
49
+ ffi (~> 1.0.6)
50
+ diff-lcs (1.1.3)
51
+ erubis (2.6.6)
52
+ abstract (>= 1.0.0)
53
+ factory_girl (2.3.2)
54
+ activesupport
55
+ factory_girl_rails (1.4.0)
56
+ factory_girl (~> 2.3.0)
57
+ railties (>= 3.0.0)
58
+ ffi (1.0.11)
59
+ i18n (0.5.0)
60
+ json (1.6.4)
61
+ mail (2.2.19)
62
+ activesupport (>= 2.3.6)
63
+ i18n (>= 0.4.0)
64
+ mime-types (~> 1.16)
65
+ treetop (~> 1.4.8)
66
+ metaclass (0.0.1)
67
+ mime-types (1.17.2)
68
+ mocha (0.10.0)
69
+ metaclass (~> 0.0.1)
70
+ multi_json (1.0.4)
71
+ mysql2 (0.2.13)
72
+ nokogiri (1.5.0)
73
+ polyglot (0.3.3)
74
+ rack (1.2.5)
75
+ rack-mount (0.6.14)
76
+ rack (>= 1.0.0)
77
+ rack-test (0.5.7)
78
+ rack (>= 1.0)
79
+ rails (3.0.11)
80
+ actionmailer (= 3.0.11)
81
+ actionpack (= 3.0.11)
82
+ activerecord (= 3.0.11)
83
+ activeresource (= 3.0.11)
84
+ activesupport (= 3.0.11)
85
+ bundler (~> 1.0)
86
+ railties (= 3.0.11)
87
+ railties (3.0.11)
88
+ actionpack (= 3.0.11)
89
+ activesupport (= 3.0.11)
90
+ rake (>= 0.8.7)
91
+ rdoc (~> 3.4)
92
+ thor (~> 0.14.4)
93
+ rake (0.9.2.2)
94
+ rdoc (3.12)
95
+ json (~> 1.4)
96
+ rspec (2.8.0)
97
+ rspec-core (~> 2.8.0)
98
+ rspec-expectations (~> 2.8.0)
99
+ rspec-mocks (~> 2.8.0)
100
+ rspec-core (2.8.0)
101
+ rspec-expectations (2.8.0)
102
+ diff-lcs (~> 1.1.2)
103
+ rspec-mocks (2.8.0)
104
+ rspec-rails (2.8.1)
105
+ actionpack (>= 3.0)
106
+ activesupport (>= 3.0)
107
+ railties (>= 3.0)
108
+ rspec (~> 2.8.0)
109
+ rubyzip (0.9.5)
110
+ selenium-webdriver (2.16.0)
111
+ childprocess (>= 0.2.5)
112
+ ffi (~> 1.0.9)
113
+ multi_json (~> 1.0.4)
114
+ rubyzip
115
+ thor (0.14.6)
116
+ treetop (1.4.10)
117
+ polyglot
118
+ polyglot (>= 0.3.1)
119
+ tzinfo (0.3.31)
120
+ xpath (0.1.4)
121
+ nokogiri (~> 1.3)
122
+
123
+ PLATFORMS
124
+ ruby
125
+
126
+ DEPENDENCIES
127
+ appraisal (~> 0.4)
128
+ capybara (>= 0.4.0)
129
+ factory_girl_rails
130
+ mocha
131
+ mysql2 (= 0.2.13)
132
+ pacecar!
133
+ rails (= 3.0.11)
134
+ rspec-rails (>= 2.4.0)
@@ -0,0 +1,8 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "http://rubygems.org"
4
+
5
+ gem "rails", "3.0.11"
6
+ gem "pg"
7
+
8
+ gemspec :path=>"../"
@@ -0,0 +1,134 @@
1
+ PATH
2
+ remote: /Users/mjankowski/Development/opensource/pacecar
3
+ specs:
4
+ pacecar (1.5.2)
5
+
6
+ GEM
7
+ remote: http://rubygems.org/
8
+ specs:
9
+ abstract (1.0.0)
10
+ actionmailer (3.0.11)
11
+ actionpack (= 3.0.11)
12
+ mail (~> 2.2.19)
13
+ actionpack (3.0.11)
14
+ activemodel (= 3.0.11)
15
+ activesupport (= 3.0.11)
16
+ builder (~> 2.1.2)
17
+ erubis (~> 2.6.6)
18
+ i18n (~> 0.5.0)
19
+ rack (~> 1.2.1)
20
+ rack-mount (~> 0.6.14)
21
+ rack-test (~> 0.5.7)
22
+ tzinfo (~> 0.3.23)
23
+ activemodel (3.0.11)
24
+ activesupport (= 3.0.11)
25
+ builder (~> 2.1.2)
26
+ i18n (~> 0.5.0)
27
+ activerecord (3.0.11)
28
+ activemodel (= 3.0.11)
29
+ activesupport (= 3.0.11)
30
+ arel (~> 2.0.10)
31
+ tzinfo (~> 0.3.23)
32
+ activeresource (3.0.11)
33
+ activemodel (= 3.0.11)
34
+ activesupport (= 3.0.11)
35
+ activesupport (3.0.11)
36
+ appraisal (0.4.0)
37
+ bundler
38
+ rake
39
+ arel (2.0.10)
40
+ builder (2.1.2)
41
+ capybara (1.1.2)
42
+ mime-types (>= 1.16)
43
+ nokogiri (>= 1.3.3)
44
+ rack (>= 1.0.0)
45
+ rack-test (>= 0.5.4)
46
+ selenium-webdriver (~> 2.0)
47
+ xpath (~> 0.1.4)
48
+ childprocess (0.2.6)
49
+ ffi (~> 1.0.6)
50
+ diff-lcs (1.1.3)
51
+ erubis (2.6.6)
52
+ abstract (>= 1.0.0)
53
+ factory_girl (2.3.2)
54
+ activesupport
55
+ factory_girl_rails (1.4.0)
56
+ factory_girl (~> 2.3.0)
57
+ railties (>= 3.0.0)
58
+ ffi (1.0.11)
59
+ i18n (0.5.0)
60
+ json (1.6.4)
61
+ mail (2.2.19)
62
+ activesupport (>= 2.3.6)
63
+ i18n (>= 0.4.0)
64
+ mime-types (~> 1.16)
65
+ treetop (~> 1.4.8)
66
+ metaclass (0.0.1)
67
+ mime-types (1.17.2)
68
+ mocha (0.10.0)
69
+ metaclass (~> 0.0.1)
70
+ multi_json (1.0.4)
71
+ nokogiri (1.5.0)
72
+ pg (0.12.2)
73
+ polyglot (0.3.3)
74
+ rack (1.2.5)
75
+ rack-mount (0.6.14)
76
+ rack (>= 1.0.0)
77
+ rack-test (0.5.7)
78
+ rack (>= 1.0)
79
+ rails (3.0.11)
80
+ actionmailer (= 3.0.11)
81
+ actionpack (= 3.0.11)
82
+ activerecord (= 3.0.11)
83
+ activeresource (= 3.0.11)
84
+ activesupport (= 3.0.11)
85
+ bundler (~> 1.0)
86
+ railties (= 3.0.11)
87
+ railties (3.0.11)
88
+ actionpack (= 3.0.11)
89
+ activesupport (= 3.0.11)
90
+ rake (>= 0.8.7)
91
+ rdoc (~> 3.4)
92
+ thor (~> 0.14.4)
93
+ rake (0.9.2.2)
94
+ rdoc (3.12)
95
+ json (~> 1.4)
96
+ rspec (2.8.0)
97
+ rspec-core (~> 2.8.0)
98
+ rspec-expectations (~> 2.8.0)
99
+ rspec-mocks (~> 2.8.0)
100
+ rspec-core (2.8.0)
101
+ rspec-expectations (2.8.0)
102
+ diff-lcs (~> 1.1.2)
103
+ rspec-mocks (2.8.0)
104
+ rspec-rails (2.8.1)
105
+ actionpack (>= 3.0)
106
+ activesupport (>= 3.0)
107
+ railties (>= 3.0)
108
+ rspec (~> 2.8.0)
109
+ rubyzip (0.9.5)
110
+ selenium-webdriver (2.16.0)
111
+ childprocess (>= 0.2.5)
112
+ ffi (~> 1.0.9)
113
+ multi_json (~> 1.0.4)
114
+ rubyzip
115
+ thor (0.14.6)
116
+ treetop (1.4.10)
117
+ polyglot
118
+ polyglot (>= 0.3.1)
119
+ tzinfo (0.3.31)
120
+ xpath (0.1.4)
121
+ nokogiri (~> 1.3)
122
+
123
+ PLATFORMS
124
+ ruby
125
+
126
+ DEPENDENCIES
127
+ appraisal (~> 0.4)
128
+ capybara (>= 0.4.0)
129
+ factory_girl_rails
130
+ mocha
131
+ pacecar!
132
+ pg
133
+ rails (= 3.0.11)
134
+ rspec-rails (>= 2.4.0)
@@ -0,0 +1,8 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "http://rubygems.org"
4
+
5
+ gem "rails", "3.0.11"
6
+ gem "sqlite3-ruby"
7
+
8
+ gemspec :path=>"../"
@@ -0,0 +1,136 @@
1
+ PATH
2
+ remote: /Users/mjankowski/Development/opensource/pacecar
3
+ specs:
4
+ pacecar (1.5.2)
5
+
6
+ GEM
7
+ remote: http://rubygems.org/
8
+ specs:
9
+ abstract (1.0.0)
10
+ actionmailer (3.0.11)
11
+ actionpack (= 3.0.11)
12
+ mail (~> 2.2.19)
13
+ actionpack (3.0.11)
14
+ activemodel (= 3.0.11)
15
+ activesupport (= 3.0.11)
16
+ builder (~> 2.1.2)
17
+ erubis (~> 2.6.6)
18
+ i18n (~> 0.5.0)
19
+ rack (~> 1.2.1)
20
+ rack-mount (~> 0.6.14)
21
+ rack-test (~> 0.5.7)
22
+ tzinfo (~> 0.3.23)
23
+ activemodel (3.0.11)
24
+ activesupport (= 3.0.11)
25
+ builder (~> 2.1.2)
26
+ i18n (~> 0.5.0)
27
+ activerecord (3.0.11)
28
+ activemodel (= 3.0.11)
29
+ activesupport (= 3.0.11)
30
+ arel (~> 2.0.10)
31
+ tzinfo (~> 0.3.23)
32
+ activeresource (3.0.11)
33
+ activemodel (= 3.0.11)
34
+ activesupport (= 3.0.11)
35
+ activesupport (3.0.11)
36
+ appraisal (0.4.0)
37
+ bundler
38
+ rake
39
+ arel (2.0.10)
40
+ builder (2.1.2)
41
+ capybara (1.1.2)
42
+ mime-types (>= 1.16)
43
+ nokogiri (>= 1.3.3)
44
+ rack (>= 1.0.0)
45
+ rack-test (>= 0.5.4)
46
+ selenium-webdriver (~> 2.0)
47
+ xpath (~> 0.1.4)
48
+ childprocess (0.2.6)
49
+ ffi (~> 1.0.6)
50
+ diff-lcs (1.1.3)
51
+ erubis (2.6.6)
52
+ abstract (>= 1.0.0)
53
+ factory_girl (2.3.2)
54
+ activesupport
55
+ factory_girl_rails (1.4.0)
56
+ factory_girl (~> 2.3.0)
57
+ railties (>= 3.0.0)
58
+ ffi (1.0.11)
59
+ i18n (0.5.0)
60
+ json (1.6.4)
61
+ mail (2.2.19)
62
+ activesupport (>= 2.3.6)
63
+ i18n (>= 0.4.0)
64
+ mime-types (~> 1.16)
65
+ treetop (~> 1.4.8)
66
+ metaclass (0.0.1)
67
+ mime-types (1.17.2)
68
+ mocha (0.10.0)
69
+ metaclass (~> 0.0.1)
70
+ multi_json (1.0.4)
71
+ nokogiri (1.5.0)
72
+ polyglot (0.3.3)
73
+ rack (1.2.5)
74
+ rack-mount (0.6.14)
75
+ rack (>= 1.0.0)
76
+ rack-test (0.5.7)
77
+ rack (>= 1.0)
78
+ rails (3.0.11)
79
+ actionmailer (= 3.0.11)
80
+ actionpack (= 3.0.11)
81
+ activerecord (= 3.0.11)
82
+ activeresource (= 3.0.11)
83
+ activesupport (= 3.0.11)
84
+ bundler (~> 1.0)
85
+ railties (= 3.0.11)
86
+ railties (3.0.11)
87
+ actionpack (= 3.0.11)
88
+ activesupport (= 3.0.11)
89
+ rake (>= 0.8.7)
90
+ rdoc (~> 3.4)
91
+ thor (~> 0.14.4)
92
+ rake (0.9.2.2)
93
+ rdoc (3.12)
94
+ json (~> 1.4)
95
+ rspec (2.8.0)
96
+ rspec-core (~> 2.8.0)
97
+ rspec-expectations (~> 2.8.0)
98
+ rspec-mocks (~> 2.8.0)
99
+ rspec-core (2.8.0)
100
+ rspec-expectations (2.8.0)
101
+ diff-lcs (~> 1.1.2)
102
+ rspec-mocks (2.8.0)
103
+ rspec-rails (2.8.1)
104
+ actionpack (>= 3.0)
105
+ activesupport (>= 3.0)
106
+ railties (>= 3.0)
107
+ rspec (~> 2.8.0)
108
+ rubyzip (0.9.5)
109
+ selenium-webdriver (2.16.0)
110
+ childprocess (>= 0.2.5)
111
+ ffi (~> 1.0.9)
112
+ multi_json (~> 1.0.4)
113
+ rubyzip
114
+ sqlite3 (1.3.5)
115
+ sqlite3-ruby (1.3.3)
116
+ sqlite3 (>= 1.3.3)
117
+ thor (0.14.6)
118
+ treetop (1.4.10)
119
+ polyglot
120
+ polyglot (>= 0.3.1)
121
+ tzinfo (0.3.31)
122
+ xpath (0.1.4)
123
+ nokogiri (~> 1.3)
124
+
125
+ PLATFORMS
126
+ ruby
127
+
128
+ DEPENDENCIES
129
+ appraisal (~> 0.4)
130
+ capybara (>= 0.4.0)
131
+ factory_girl_rails
132
+ mocha
133
+ pacecar!
134
+ rails (= 3.0.11)
135
+ rspec-rails (>= 2.4.0)
136
+ sqlite3-ruby
@@ -0,0 +1,8 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "http://rubygems.org"
4
+
5
+ gem "rails", "3.0.11"
6
+ gem "sqlite3"
7
+
8
+ gemspec :path=>"../"
@@ -0,0 +1,134 @@
1
+ PATH
2
+ remote: /Users/mjankowski/Development/opensource/pacecar
3
+ specs:
4
+ pacecar (1.5.2)
5
+
6
+ GEM
7
+ remote: http://rubygems.org/
8
+ specs:
9
+ abstract (1.0.0)
10
+ actionmailer (3.0.11)
11
+ actionpack (= 3.0.11)
12
+ mail (~> 2.2.19)
13
+ actionpack (3.0.11)
14
+ activemodel (= 3.0.11)
15
+ activesupport (= 3.0.11)
16
+ builder (~> 2.1.2)
17
+ erubis (~> 2.6.6)
18
+ i18n (~> 0.5.0)
19
+ rack (~> 1.2.1)
20
+ rack-mount (~> 0.6.14)
21
+ rack-test (~> 0.5.7)
22
+ tzinfo (~> 0.3.23)
23
+ activemodel (3.0.11)
24
+ activesupport (= 3.0.11)
25
+ builder (~> 2.1.2)
26
+ i18n (~> 0.5.0)
27
+ activerecord (3.0.11)
28
+ activemodel (= 3.0.11)
29
+ activesupport (= 3.0.11)
30
+ arel (~> 2.0.10)
31
+ tzinfo (~> 0.3.23)
32
+ activeresource (3.0.11)
33
+ activemodel (= 3.0.11)
34
+ activesupport (= 3.0.11)
35
+ activesupport (3.0.11)
36
+ appraisal (0.4.0)
37
+ bundler
38
+ rake
39
+ arel (2.0.10)
40
+ builder (2.1.2)
41
+ capybara (1.1.2)
42
+ mime-types (>= 1.16)
43
+ nokogiri (>= 1.3.3)
44
+ rack (>= 1.0.0)
45
+ rack-test (>= 0.5.4)
46
+ selenium-webdriver (~> 2.0)
47
+ xpath (~> 0.1.4)
48
+ childprocess (0.2.6)
49
+ ffi (~> 1.0.6)
50
+ diff-lcs (1.1.3)
51
+ erubis (2.6.6)
52
+ abstract (>= 1.0.0)
53
+ factory_girl (2.3.2)
54
+ activesupport
55
+ factory_girl_rails (1.4.0)
56
+ factory_girl (~> 2.3.0)
57
+ railties (>= 3.0.0)
58
+ ffi (1.0.11)
59
+ i18n (0.5.0)
60
+ json (1.6.4)
61
+ mail (2.2.19)
62
+ activesupport (>= 2.3.6)
63
+ i18n (>= 0.4.0)
64
+ mime-types (~> 1.16)
65
+ treetop (~> 1.4.8)
66
+ metaclass (0.0.1)
67
+ mime-types (1.17.2)
68
+ mocha (0.10.0)
69
+ metaclass (~> 0.0.1)
70
+ multi_json (1.0.4)
71
+ nokogiri (1.5.0)
72
+ polyglot (0.3.3)
73
+ rack (1.2.5)
74
+ rack-mount (0.6.14)
75
+ rack (>= 1.0.0)
76
+ rack-test (0.5.7)
77
+ rack (>= 1.0)
78
+ rails (3.0.11)
79
+ actionmailer (= 3.0.11)
80
+ actionpack (= 3.0.11)
81
+ activerecord (= 3.0.11)
82
+ activeresource (= 3.0.11)
83
+ activesupport (= 3.0.11)
84
+ bundler (~> 1.0)
85
+ railties (= 3.0.11)
86
+ railties (3.0.11)
87
+ actionpack (= 3.0.11)
88
+ activesupport (= 3.0.11)
89
+ rake (>= 0.8.7)
90
+ rdoc (~> 3.4)
91
+ thor (~> 0.14.4)
92
+ rake (0.9.2.2)
93
+ rdoc (3.12)
94
+ json (~> 1.4)
95
+ rspec (2.8.0)
96
+ rspec-core (~> 2.8.0)
97
+ rspec-expectations (~> 2.8.0)
98
+ rspec-mocks (~> 2.8.0)
99
+ rspec-core (2.8.0)
100
+ rspec-expectations (2.8.0)
101
+ diff-lcs (~> 1.1.2)
102
+ rspec-mocks (2.8.0)
103
+ rspec-rails (2.8.1)
104
+ actionpack (>= 3.0)
105
+ activesupport (>= 3.0)
106
+ railties (>= 3.0)
107
+ rspec (~> 2.8.0)
108
+ rubyzip (0.9.5)
109
+ selenium-webdriver (2.16.0)
110
+ childprocess (>= 0.2.5)
111
+ ffi (~> 1.0.9)
112
+ multi_json (~> 1.0.4)
113
+ rubyzip
114
+ sqlite3 (1.3.5)
115
+ thor (0.14.6)
116
+ treetop (1.4.10)
117
+ polyglot
118
+ polyglot (>= 0.3.1)
119
+ tzinfo (0.3.31)
120
+ xpath (0.1.4)
121
+ nokogiri (~> 1.3)
122
+
123
+ PLATFORMS
124
+ ruby
125
+
126
+ DEPENDENCIES
127
+ appraisal (~> 0.4)
128
+ capybara (>= 0.4.0)
129
+ factory_girl_rails
130
+ mocha
131
+ pacecar!
132
+ rails (= 3.0.11)
133
+ rspec-rails (>= 2.4.0)
134
+ sqlite3