pacecar 1.5.3 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (87) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +2 -0
  3. data/.travis.yml +9 -1
  4. data/Appraisals +9 -17
  5. data/Gemfile +1 -1
  6. data/Gemfile.lock +93 -108
  7. data/MIT-LICENSE +1 -1
  8. data/README.md +10 -109
  9. data/Rakefile +9 -5
  10. data/TESTING.md +40 -0
  11. data/gemfiles/rails_4_mysql2_driver.gemfile +8 -0
  12. data/gemfiles/rails_4_pg_driver.gemfile +8 -0
  13. data/gemfiles/rails_4_sqlite3_driver.gemfile +8 -0
  14. data/lib/pacecar.rb +0 -10
  15. data/lib/pacecar/boolean.rb +8 -20
  16. data/lib/pacecar/helpers.rb +7 -16
  17. data/lib/pacecar/limit.rb +9 -9
  18. data/lib/pacecar/order.rb +9 -9
  19. data/lib/pacecar/polymorph.rb +5 -5
  20. data/lib/pacecar/presence.rb +8 -9
  21. data/lib/pacecar/search.rb +8 -32
  22. data/lib/pacecar/state.rb +13 -9
  23. data/lib/pacecar/version.rb +1 -1
  24. data/pacecar.gemspec +18 -16
  25. data/spec/boolean_spec.rb +6 -18
  26. data/spec/dummy/app/models/mammal.rb +1 -1
  27. data/spec/dummy/app/models/post.rb +2 -2
  28. data/spec/dummy/app/models/user.rb +1 -6
  29. data/spec/dummy/bin/bundle +3 -0
  30. data/spec/dummy/bin/rails +4 -0
  31. data/spec/dummy/bin/rake +4 -0
  32. data/spec/dummy/config/application.rb +4 -26
  33. data/spec/dummy/config/boot.rb +3 -9
  34. data/spec/dummy/config/database.yml +1 -7
  35. data/spec/dummy/config/environment.rb +2 -2
  36. data/spec/dummy/config/environments/development.rb +15 -12
  37. data/spec/dummy/config/environments/production.rb +57 -26
  38. data/spec/dummy/config/environments/test.rb +16 -15
  39. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  40. data/spec/dummy/config/initializers/inflections.rb +9 -3
  41. data/spec/dummy/config/initializers/secret_token.rb +7 -2
  42. data/spec/dummy/config/initializers/session_store.rb +1 -6
  43. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  44. data/spec/dummy/config/locales/en.yml +20 -2
  45. data/spec/dummy/config/routes.rb +22 -24
  46. data/spec/factories.rb +2 -2
  47. data/spec/helpers_spec.rb +18 -26
  48. data/spec/integration/navigation_spec.rb +4 -5
  49. data/spec/limit_spec.rb +11 -11
  50. data/spec/order_spec.rb +8 -8
  51. data/spec/pacecar_spec.rb +3 -3
  52. data/spec/polymorph_spec.rb +6 -6
  53. data/spec/presence_spec.rb +9 -9
  54. data/spec/search_spec.rb +14 -48
  55. data/spec/spec_helper.rb +11 -17
  56. data/spec/state_spec.rb +29 -29
  57. metadata +76 -70
  58. data/gemfiles/rails-3.0.11-database-mysql.gemfile +0 -8
  59. data/gemfiles/rails-3.0.11-database-mysql.gemfile.lock +0 -134
  60. data/gemfiles/rails-3.0.11-database-mysql2.gemfile +0 -8
  61. data/gemfiles/rails-3.0.11-database-mysql2.gemfile.lock +0 -134
  62. data/gemfiles/rails-3.0.11-database-pg.gemfile +0 -8
  63. data/gemfiles/rails-3.0.11-database-pg.gemfile.lock +0 -134
  64. data/gemfiles/rails-3.0.11-database-sqlite3-ruby.gemfile +0 -8
  65. data/gemfiles/rails-3.0.11-database-sqlite3-ruby.gemfile.lock +0 -136
  66. data/gemfiles/rails-3.0.11-database-sqlite3.gemfile +0 -8
  67. data/gemfiles/rails-3.0.11-database-sqlite3.gemfile.lock +0 -134
  68. data/gemfiles/rails-3.1.3-database-mysql.gemfile +0 -8
  69. data/gemfiles/rails-3.1.3-database-mysql.gemfile.lock +0 -144
  70. data/gemfiles/rails-3.1.3-database-mysql2.gemfile +0 -8
  71. data/gemfiles/rails-3.1.3-database-mysql2.gemfile.lock +0 -144
  72. data/gemfiles/rails-3.1.3-database-pg.gemfile +0 -8
  73. data/gemfiles/rails-3.1.3-database-pg.gemfile.lock +0 -144
  74. data/gemfiles/rails-3.1.3-database-sqlite3-ruby.gemfile +0 -8
  75. data/gemfiles/rails-3.1.3-database-sqlite3-ruby.gemfile.lock +0 -146
  76. data/gemfiles/rails-3.1.3-database-sqlite3.gemfile +0 -8
  77. data/gemfiles/rails-3.1.3-database-sqlite3.gemfile.lock +0 -144
  78. data/lib/pacecar/associations.rb +0 -39
  79. data/lib/pacecar/datetime.rb +0 -91
  80. data/lib/pacecar/duration.rb +0 -51
  81. data/lib/pacecar/numeric.rb +0 -29
  82. data/lib/pacecar/ranking.rb +0 -53
  83. data/spec/associations_spec.rb +0 -32
  84. data/spec/datetime_spec.rb +0 -92
  85. data/spec/duration_spec.rb +0 -22
  86. data/spec/numeric_spec.rb +0 -43
  87. data/spec/ranking_spec.rb +0 -63
@@ -1,8 +0,0 @@
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=>"../"
@@ -1,134 +0,0 @@
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)
@@ -1,8 +0,0 @@
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=>"../"
@@ -1,134 +0,0 @@
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)
@@ -1,8 +0,0 @@
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=>"../"
@@ -1,136 +0,0 @@
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
@@ -1,8 +0,0 @@
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=>"../"
@@ -1,134 +0,0 @@
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