clearance 0.11.1 → 0.11.2
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of clearance might be problematic. Click here for more details.
- data/.gitignore +4 -2
- data/Appraisals +11 -0
- data/CHANGELOG.md +7 -0
- data/Gemfile +12 -10
- data/Gemfile.lock +101 -83
- data/README.md +23 -2
- data/Rakefile +9 -4
- data/VERSION +1 -1
- data/app/mailers/clearance_mailer.rb +5 -5
- data/app/views/clearance_mailer/change_password.html.erb +1 -3
- data/clearance.gemspec +1 -1
- data/features/engine/visitor_resets_password.feature +7 -4
- data/features/engine/visitor_signs_in.feature +10 -12
- data/features/engine/visitor_signs_out.feature +2 -4
- data/features/integration.feature +13 -14
- data/features/step_definitions/configuration_steps.rb +6 -1
- data/features/step_definitions/engine/clearance_steps.rb +8 -17
- data/features/step_definitions/web_steps.rb +82 -90
- data/features/support/appraisal.rb +18 -0
- data/features/support/aruba.rb +3 -0
- data/features/support/clearance.rb +16 -0
- data/features/support/env.rb +40 -29
- data/features/support/selectors.rb +39 -0
- data/gemfiles/3.0.9.gemfile +18 -0
- data/gemfiles/3.0.9.gemfile.lock +176 -0
- data/gemfiles/3.1.0.rc4.gemfile +22 -0
- data/gemfiles/3.1.0.rc4.gemfile.lock +212 -0
- data/lib/clearance.rb +0 -1
- data/lib/clearance/test_matchers.rb +60 -0
- data/lib/clearance/user.rb +16 -4
- data/lib/generators/clearance/install/templates/README +6 -6
- data/spec/controllers/passwords_controller_spec.rb +4 -4
- data/spec/factories.rb +5 -5
- data/spec/spec_helper.rb +3 -47
- data/spec/support/clearance.rb +12 -0
- metadata +19 -8
- data/.bundle/config +0 -2
- data/lib/clearance/shoulda_macros.rb +0 -73
- data/spec/support/authorization.rb +0 -18
- data/spec/support/clearance_redirects.rb +0 -21
@@ -0,0 +1,18 @@
|
|
1
|
+
BUNDLE_ENV_VARS = %w(RUBYOPT BUNDLE_PATH BUNDLE_BIN_PATH BUNDLE_GEMFILE)
|
2
|
+
ORIGINAL_BUNDLE_VARS = Hash[ENV.select{ |key,value| BUNDLE_ENV_VARS.include?(key) }]
|
3
|
+
|
4
|
+
Before do
|
5
|
+
ENV['BUNDLE_GEMFILE'] = File.join(Dir.pwd, ENV['BUNDLE_GEMFILE'])
|
6
|
+
end
|
7
|
+
|
8
|
+
After do
|
9
|
+
ORIGINAL_BUNDLE_VARS.each_pair do |key, value|
|
10
|
+
ENV[key] = value
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
When /^I reset Bundler environment variable$/ do
|
15
|
+
BUNDLE_ENV_VARS.each do |key|
|
16
|
+
ENV[key] = nil
|
17
|
+
end
|
18
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
require 'clearance'
|
2
|
+
|
3
|
+
Clearance.configure do |config|
|
4
|
+
end
|
5
|
+
|
6
|
+
class ApplicationController < ActionController::Base
|
7
|
+
include Clearance::Authentication
|
8
|
+
|
9
|
+
def show
|
10
|
+
render :text => "", :layout => 'application'
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
class User < ActiveRecord::Base
|
15
|
+
include Clearance::User
|
16
|
+
end
|
data/features/support/env.rb
CHANGED
@@ -1,45 +1,56 @@
|
|
1
|
+
# IMPORTANT: This file is generated by cucumber-rails - edit at your own peril.
|
2
|
+
# It is recommended to regenerate this file in the future when you upgrade to a
|
3
|
+
# newer version of cucumber-rails. Consider adding your own code to a new file
|
4
|
+
# instead of editing this one. Cucumber will automatically load all features/**/*.rb
|
5
|
+
# files.
|
6
|
+
|
1
7
|
ENV["RAILS_ENV"] ||= "test"
|
2
8
|
|
3
|
-
PROJECT_ROOT = File.expand_path("
|
9
|
+
PROJECT_ROOT = File.expand_path("../../..", __FILE__)
|
4
10
|
$LOAD_PATH << File.join(PROJECT_ROOT, "lib")
|
5
11
|
|
6
12
|
require 'rails/all'
|
13
|
+
|
7
14
|
Bundler.require
|
8
15
|
|
9
16
|
require 'diesel/testing'
|
10
17
|
require 'diesel/testing/integration'
|
11
|
-
|
12
|
-
require '
|
13
|
-
require '
|
14
|
-
|
15
|
-
Clearance.configure do |config|
|
16
|
-
end
|
17
|
-
|
18
|
-
class ApplicationController < ActionController::Base
|
19
|
-
include Clearance::Authentication
|
20
|
-
|
21
|
-
def show
|
22
|
-
render :text => "", :layout => 'application'
|
23
|
-
end
|
24
|
-
end
|
25
|
-
|
26
|
-
class User < ActiveRecord::Base
|
27
|
-
include Clearance::User
|
28
|
-
end
|
29
|
-
|
30
|
-
require 'cucumber/formatter/unicode'
|
18
|
+
require 'cucumber/rails3/application'
|
19
|
+
require 'cucumber/rails3/action_controller'
|
20
|
+
require 'rails/test_help'
|
31
21
|
require 'cucumber/rails/world'
|
32
|
-
require 'cucumber/rails/
|
33
|
-
require 'cucumber/
|
34
|
-
require 'capybara/rails'
|
35
|
-
require 'capybara/cucumber'
|
36
|
-
require 'capybara/session'
|
22
|
+
require 'cucumber/rails/hooks'
|
23
|
+
require 'cucumber/rails/capybara'
|
37
24
|
|
25
|
+
# Capybara defaults to XPath selectors rather than Webrat's default of CSS3. In
|
26
|
+
# order to ease the transition to Capybara we set the default here. If you'd
|
27
|
+
# prefer to use XPath just remove this line and adjust any selectors in your
|
28
|
+
# steps to use the XPath syntax.
|
38
29
|
Capybara.default_selector = :css
|
39
30
|
Capybara.save_and_open_page_path = 'tmp'
|
40
|
-
Cucumber::Rails::World.use_transactional_fixtures = true
|
41
31
|
|
42
|
-
|
43
|
-
|
32
|
+
# By default, any exception happening in your Rails application will bubble up
|
33
|
+
# to Cucumber so that your scenario will fail. This is a different from how
|
34
|
+
# your application behaves in the production environment, where an error page will
|
35
|
+
# be rendered instead.
|
36
|
+
#
|
37
|
+
# Sometimes we want to override this default behaviour and allow Rails to rescue
|
38
|
+
# exceptions and display an error page (just like when the app is running in production).
|
39
|
+
# Typical scenarios where you want to do this is when you test your error pages.
|
40
|
+
# There are two ways to allow Rails to rescue exceptions:
|
41
|
+
#
|
42
|
+
# 1) Tag your scenario (or feature) with @allow-rescue
|
43
|
+
#
|
44
|
+
# 2) Set the value below to true. Beware that doing this globally is not
|
45
|
+
# recommended as it will mask a lot of errors for you!
|
46
|
+
#
|
47
|
+
ActionController::Base.allow_rescue = false
|
48
|
+
|
49
|
+
# Remove/comment out the lines below if your app doesn't have a database.
|
50
|
+
# For some databases (like MongoDB and CouchDB) you may need to use :truncation instead.
|
51
|
+
begin
|
52
|
+
DatabaseCleaner.strategy = :transaction
|
53
|
+
rescue NameError
|
54
|
+
raise "You need to add database_cleaner to your Gemfile (in the :test group) if you wish to use it."
|
44
55
|
end
|
45
56
|
|
@@ -0,0 +1,39 @@
|
|
1
|
+
module HtmlSelectorsHelpers
|
2
|
+
# Maps a name to a selector. Used primarily by the
|
3
|
+
#
|
4
|
+
# When /^(.+) within (.+)$/ do |step, scope|
|
5
|
+
#
|
6
|
+
# step definitions in web_steps.rb
|
7
|
+
#
|
8
|
+
def selector_for(locator)
|
9
|
+
case locator
|
10
|
+
|
11
|
+
when /the page/
|
12
|
+
"html > body"
|
13
|
+
|
14
|
+
# Add more mappings here.
|
15
|
+
# Here is an example that pulls values out of the Regexp:
|
16
|
+
#
|
17
|
+
# when /the (notice|error|info) flash/
|
18
|
+
# ".flash.#{$1}"
|
19
|
+
|
20
|
+
# You can also return an array to use a different selector
|
21
|
+
# type, like:
|
22
|
+
#
|
23
|
+
# when /the header/
|
24
|
+
# [:xpath, "//header"]
|
25
|
+
|
26
|
+
# This allows you to provide a quoted selector as the scope
|
27
|
+
# for "within" steps as was previously the default for the
|
28
|
+
# web steps:
|
29
|
+
when /"(.+)"/
|
30
|
+
$1
|
31
|
+
|
32
|
+
else
|
33
|
+
raise "Can't find mapping from \"#{locator}\" to a selector.\n" +
|
34
|
+
"Now, go and add a mapping in #{__FILE__}"
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
World(HtmlSelectorsHelpers)
|
@@ -0,0 +1,18 @@
|
|
1
|
+
# This file was generated by Appraisal
|
2
|
+
|
3
|
+
source "http://rubygems.org"
|
4
|
+
|
5
|
+
gem "rails", "3.0.9"
|
6
|
+
gem "sqlite3"
|
7
|
+
gem "diesel", :git=>"git://github.com/thoughtbot/diesel.git"
|
8
|
+
gem "cucumber-rails", "1.0.0"
|
9
|
+
gem "capybara", "1.0.0"
|
10
|
+
gem "factory_girl_rails"
|
11
|
+
gem "shoulda-matchers", :git=>"git://github.com/thoughtbot/shoulda-matchers.git"
|
12
|
+
gem "database_cleaner"
|
13
|
+
gem "rspec-rails", "~> 2.6.0"
|
14
|
+
gem "launchy"
|
15
|
+
gem "mocha"
|
16
|
+
gem "appraisal", :git=>"git://github.com/thoughtbot/appraisal.git"
|
17
|
+
gem "aruba", "~> 0.4.2"
|
18
|
+
|
@@ -0,0 +1,176 @@
|
|
1
|
+
GIT
|
2
|
+
remote: git://github.com/thoughtbot/appraisal.git
|
3
|
+
revision: f8029181543b4bc4bdea03735a3b1e558fd66501
|
4
|
+
specs:
|
5
|
+
appraisal (0.3.5)
|
6
|
+
aruba (~> 0.4.2)
|
7
|
+
bundler
|
8
|
+
rake
|
9
|
+
|
10
|
+
GIT
|
11
|
+
remote: git://github.com/thoughtbot/diesel.git
|
12
|
+
revision: 9a7955eadd3e2f445ecf3d2d58edfc2a5e80a20b
|
13
|
+
specs:
|
14
|
+
diesel (0.1.4)
|
15
|
+
railties
|
16
|
+
|
17
|
+
GIT
|
18
|
+
remote: git://github.com/thoughtbot/shoulda-matchers.git
|
19
|
+
revision: 85d3e5ea000cf162ef672059ea5e5f77f3ca9f03
|
20
|
+
specs:
|
21
|
+
shoulda-matchers (1.0.0.beta3)
|
22
|
+
|
23
|
+
GEM
|
24
|
+
remote: http://rubygems.org/
|
25
|
+
specs:
|
26
|
+
abstract (1.0.0)
|
27
|
+
actionmailer (3.0.9)
|
28
|
+
actionpack (= 3.0.9)
|
29
|
+
mail (~> 2.2.19)
|
30
|
+
actionpack (3.0.9)
|
31
|
+
activemodel (= 3.0.9)
|
32
|
+
activesupport (= 3.0.9)
|
33
|
+
builder (~> 2.1.2)
|
34
|
+
erubis (~> 2.6.6)
|
35
|
+
i18n (~> 0.5.0)
|
36
|
+
rack (~> 1.2.1)
|
37
|
+
rack-mount (~> 0.6.14)
|
38
|
+
rack-test (~> 0.5.7)
|
39
|
+
tzinfo (~> 0.3.23)
|
40
|
+
activemodel (3.0.9)
|
41
|
+
activesupport (= 3.0.9)
|
42
|
+
builder (~> 2.1.2)
|
43
|
+
i18n (~> 0.5.0)
|
44
|
+
activerecord (3.0.9)
|
45
|
+
activemodel (= 3.0.9)
|
46
|
+
activesupport (= 3.0.9)
|
47
|
+
arel (~> 2.0.10)
|
48
|
+
tzinfo (~> 0.3.23)
|
49
|
+
activeresource (3.0.9)
|
50
|
+
activemodel (= 3.0.9)
|
51
|
+
activesupport (= 3.0.9)
|
52
|
+
activesupport (3.0.9)
|
53
|
+
arel (2.0.10)
|
54
|
+
aruba (0.4.3)
|
55
|
+
bcat (>= 0.6.1)
|
56
|
+
childprocess (>= 0.1.9)
|
57
|
+
cucumber (>= 0.10.7)
|
58
|
+
rdiscount (>= 1.6.8)
|
59
|
+
rspec (>= 2.6.0)
|
60
|
+
bcat (0.6.1)
|
61
|
+
rack (~> 1.0)
|
62
|
+
builder (2.1.2)
|
63
|
+
capybara (1.0.0)
|
64
|
+
mime-types (>= 1.16)
|
65
|
+
nokogiri (>= 1.3.3)
|
66
|
+
rack (>= 1.0.0)
|
67
|
+
rack-test (>= 0.5.4)
|
68
|
+
selenium-webdriver (~> 0.2.0)
|
69
|
+
xpath (~> 0.1.4)
|
70
|
+
childprocess (0.1.9)
|
71
|
+
ffi (~> 1.0.6)
|
72
|
+
configuration (1.2.0)
|
73
|
+
cucumber (1.0.0)
|
74
|
+
builder (>= 2.1.2)
|
75
|
+
diff-lcs (>= 1.1.2)
|
76
|
+
gherkin (~> 2.4.1)
|
77
|
+
json (>= 1.4.6)
|
78
|
+
term-ansicolor (>= 1.0.5)
|
79
|
+
cucumber-rails (1.0.0)
|
80
|
+
capybara (>= 1.0.0)
|
81
|
+
cucumber (~> 1.0.0)
|
82
|
+
nokogiri (>= 1.4.4)
|
83
|
+
rack-test (>= 0.5.7)
|
84
|
+
database_cleaner (0.6.7)
|
85
|
+
diff-lcs (1.1.2)
|
86
|
+
erubis (2.6.6)
|
87
|
+
abstract (>= 1.0.0)
|
88
|
+
factory_girl (1.3.3)
|
89
|
+
factory_girl_rails (1.0.1)
|
90
|
+
factory_girl (~> 1.3)
|
91
|
+
railties (>= 3.0.0)
|
92
|
+
ffi (1.0.9)
|
93
|
+
gherkin (2.4.1)
|
94
|
+
json (>= 1.4.6)
|
95
|
+
i18n (0.5.0)
|
96
|
+
json (1.5.3)
|
97
|
+
json_pure (1.5.2)
|
98
|
+
launchy (0.4.0)
|
99
|
+
configuration (>= 0.0.5)
|
100
|
+
rake (>= 0.8.1)
|
101
|
+
mail (2.2.19)
|
102
|
+
activesupport (>= 2.3.6)
|
103
|
+
i18n (>= 0.4.0)
|
104
|
+
mime-types (~> 1.16)
|
105
|
+
treetop (~> 1.4.8)
|
106
|
+
mime-types (1.16)
|
107
|
+
mocha (0.9.12)
|
108
|
+
nokogiri (1.4.5)
|
109
|
+
polyglot (0.3.1)
|
110
|
+
rack (1.2.3)
|
111
|
+
rack-mount (0.6.14)
|
112
|
+
rack (>= 1.0.0)
|
113
|
+
rack-test (0.5.7)
|
114
|
+
rack (>= 1.0)
|
115
|
+
rails (3.0.9)
|
116
|
+
actionmailer (= 3.0.9)
|
117
|
+
actionpack (= 3.0.9)
|
118
|
+
activerecord (= 3.0.9)
|
119
|
+
activeresource (= 3.0.9)
|
120
|
+
activesupport (= 3.0.9)
|
121
|
+
bundler (~> 1.0)
|
122
|
+
railties (= 3.0.9)
|
123
|
+
railties (3.0.9)
|
124
|
+
actionpack (= 3.0.9)
|
125
|
+
activesupport (= 3.0.9)
|
126
|
+
rake (>= 0.8.7)
|
127
|
+
rdoc (~> 3.4)
|
128
|
+
thor (~> 0.14.4)
|
129
|
+
rake (0.9.2)
|
130
|
+
rdiscount (1.6.8)
|
131
|
+
rdoc (3.6.1)
|
132
|
+
rspec (2.6.0)
|
133
|
+
rspec-core (~> 2.6.0)
|
134
|
+
rspec-expectations (~> 2.6.0)
|
135
|
+
rspec-mocks (~> 2.6.0)
|
136
|
+
rspec-core (2.6.4)
|
137
|
+
rspec-expectations (2.6.0)
|
138
|
+
diff-lcs (~> 1.1.2)
|
139
|
+
rspec-mocks (2.6.0)
|
140
|
+
rspec-rails (2.6.1)
|
141
|
+
actionpack (~> 3.0)
|
142
|
+
activesupport (~> 3.0)
|
143
|
+
railties (~> 3.0)
|
144
|
+
rspec (~> 2.6.0)
|
145
|
+
rubyzip (0.9.4)
|
146
|
+
selenium-webdriver (0.2.1)
|
147
|
+
childprocess (>= 0.1.7)
|
148
|
+
ffi (>= 1.0.7)
|
149
|
+
json_pure
|
150
|
+
rubyzip
|
151
|
+
sqlite3 (1.3.3)
|
152
|
+
term-ansicolor (1.0.5)
|
153
|
+
thor (0.14.6)
|
154
|
+
treetop (1.4.9)
|
155
|
+
polyglot (>= 0.3.1)
|
156
|
+
tzinfo (0.3.28)
|
157
|
+
xpath (0.1.4)
|
158
|
+
nokogiri (~> 1.3)
|
159
|
+
|
160
|
+
PLATFORMS
|
161
|
+
ruby
|
162
|
+
|
163
|
+
DEPENDENCIES
|
164
|
+
appraisal!
|
165
|
+
aruba (~> 0.4.2)
|
166
|
+
capybara (= 1.0.0)
|
167
|
+
cucumber-rails (= 1.0.0)
|
168
|
+
database_cleaner
|
169
|
+
diesel!
|
170
|
+
factory_girl_rails
|
171
|
+
launchy
|
172
|
+
mocha
|
173
|
+
rails (= 3.0.9)
|
174
|
+
rspec-rails (~> 2.6.0)
|
175
|
+
shoulda-matchers!
|
176
|
+
sqlite3
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# This file was generated by Appraisal
|
2
|
+
|
3
|
+
source "http://rubygems.org"
|
4
|
+
|
5
|
+
gem "rails", "3.1.0.rc4"
|
6
|
+
gem "sqlite3"
|
7
|
+
gem "diesel", :git=>"git://github.com/thoughtbot/diesel.git"
|
8
|
+
gem "cucumber-rails", "1.0.0"
|
9
|
+
gem "capybara", "1.0.0"
|
10
|
+
gem "factory_girl_rails"
|
11
|
+
gem "shoulda-matchers", :git=>"git://github.com/thoughtbot/shoulda-matchers.git"
|
12
|
+
gem "database_cleaner"
|
13
|
+
gem "rspec-rails", "~> 2.6.0"
|
14
|
+
gem "launchy"
|
15
|
+
gem "mocha"
|
16
|
+
gem "appraisal", :git=>"git://github.com/thoughtbot/appraisal.git"
|
17
|
+
gem "aruba", "~> 0.4.2"
|
18
|
+
gem "sass-rails"
|
19
|
+
gem "coffee-script"
|
20
|
+
gem "uglifier"
|
21
|
+
gem "jquery-rails"
|
22
|
+
|
@@ -0,0 +1,212 @@
|
|
1
|
+
GIT
|
2
|
+
remote: git://github.com/thoughtbot/appraisal.git
|
3
|
+
revision: f8029181543b4bc4bdea03735a3b1e558fd66501
|
4
|
+
specs:
|
5
|
+
appraisal (0.3.5)
|
6
|
+
aruba (~> 0.4.2)
|
7
|
+
bundler
|
8
|
+
rake
|
9
|
+
|
10
|
+
GIT
|
11
|
+
remote: git://github.com/thoughtbot/diesel.git
|
12
|
+
revision: 9a7955eadd3e2f445ecf3d2d58edfc2a5e80a20b
|
13
|
+
specs:
|
14
|
+
diesel (0.1.4)
|
15
|
+
railties
|
16
|
+
|
17
|
+
GIT
|
18
|
+
remote: git://github.com/thoughtbot/shoulda-matchers.git
|
19
|
+
revision: 85d3e5ea000cf162ef672059ea5e5f77f3ca9f03
|
20
|
+
specs:
|
21
|
+
shoulda-matchers (1.0.0.beta3)
|
22
|
+
|
23
|
+
GEM
|
24
|
+
remote: http://rubygems.org/
|
25
|
+
specs:
|
26
|
+
actionmailer (3.1.0.rc4)
|
27
|
+
actionpack (= 3.1.0.rc4)
|
28
|
+
mail (~> 2.3.0)
|
29
|
+
actionpack (3.1.0.rc4)
|
30
|
+
activemodel (= 3.1.0.rc4)
|
31
|
+
activesupport (= 3.1.0.rc4)
|
32
|
+
builder (~> 3.0.0)
|
33
|
+
erubis (~> 2.7.0)
|
34
|
+
i18n (~> 0.6)
|
35
|
+
rack (~> 1.3.0)
|
36
|
+
rack-cache (~> 1.0.1)
|
37
|
+
rack-mount (~> 0.8.1)
|
38
|
+
rack-test (~> 0.6.0)
|
39
|
+
sprockets (~> 2.0.0.beta.10)
|
40
|
+
tzinfo (~> 0.3.27)
|
41
|
+
activemodel (3.1.0.rc4)
|
42
|
+
activesupport (= 3.1.0.rc4)
|
43
|
+
bcrypt-ruby (~> 2.1.4)
|
44
|
+
builder (~> 3.0.0)
|
45
|
+
i18n (~> 0.6)
|
46
|
+
activerecord (3.1.0.rc4)
|
47
|
+
activemodel (= 3.1.0.rc4)
|
48
|
+
activesupport (= 3.1.0.rc4)
|
49
|
+
arel (~> 2.1.1)
|
50
|
+
tzinfo (~> 0.3.27)
|
51
|
+
activeresource (3.1.0.rc4)
|
52
|
+
activemodel (= 3.1.0.rc4)
|
53
|
+
activesupport (= 3.1.0.rc4)
|
54
|
+
activesupport (3.1.0.rc4)
|
55
|
+
multi_json (~> 1.0)
|
56
|
+
arel (2.1.1)
|
57
|
+
aruba (0.4.3)
|
58
|
+
bcat (>= 0.6.1)
|
59
|
+
childprocess (>= 0.1.9)
|
60
|
+
cucumber (>= 0.10.7)
|
61
|
+
rdiscount (>= 1.6.8)
|
62
|
+
rspec (>= 2.6.0)
|
63
|
+
bcat (0.6.1)
|
64
|
+
rack (~> 1.0)
|
65
|
+
bcrypt-ruby (2.1.4)
|
66
|
+
builder (3.0.0)
|
67
|
+
capybara (1.0.0)
|
68
|
+
mime-types (>= 1.16)
|
69
|
+
nokogiri (>= 1.3.3)
|
70
|
+
rack (>= 1.0.0)
|
71
|
+
rack-test (>= 0.5.4)
|
72
|
+
selenium-webdriver (~> 0.2.0)
|
73
|
+
xpath (~> 0.1.4)
|
74
|
+
childprocess (0.1.9)
|
75
|
+
ffi (~> 1.0.6)
|
76
|
+
coffee-script (2.2.0)
|
77
|
+
coffee-script-source
|
78
|
+
execjs
|
79
|
+
coffee-script-source (1.1.1)
|
80
|
+
configuration (1.2.0)
|
81
|
+
cucumber (1.0.0)
|
82
|
+
builder (>= 2.1.2)
|
83
|
+
diff-lcs (>= 1.1.2)
|
84
|
+
gherkin (~> 2.4.1)
|
85
|
+
json (>= 1.4.6)
|
86
|
+
term-ansicolor (>= 1.0.5)
|
87
|
+
cucumber-rails (1.0.0)
|
88
|
+
capybara (>= 1.0.0)
|
89
|
+
cucumber (~> 1.0.0)
|
90
|
+
nokogiri (>= 1.4.4)
|
91
|
+
rack-test (>= 0.5.7)
|
92
|
+
database_cleaner (0.6.7)
|
93
|
+
diff-lcs (1.1.2)
|
94
|
+
erubis (2.7.0)
|
95
|
+
execjs (1.1.3)
|
96
|
+
multi_json (~> 1.0)
|
97
|
+
factory_girl (1.3.3)
|
98
|
+
factory_girl_rails (1.0.1)
|
99
|
+
factory_girl (~> 1.3)
|
100
|
+
railties (>= 3.0.0)
|
101
|
+
ffi (1.0.9)
|
102
|
+
gherkin (2.4.1)
|
103
|
+
json (>= 1.4.6)
|
104
|
+
hike (1.1.0)
|
105
|
+
i18n (0.6.0)
|
106
|
+
jquery-rails (1.0.11)
|
107
|
+
railties (~> 3.0)
|
108
|
+
thor (~> 0.14)
|
109
|
+
json (1.5.3)
|
110
|
+
json_pure (1.5.2)
|
111
|
+
launchy (0.4.0)
|
112
|
+
configuration (>= 0.0.5)
|
113
|
+
rake (>= 0.8.1)
|
114
|
+
mail (2.3.0)
|
115
|
+
i18n (>= 0.4.0)
|
116
|
+
mime-types (~> 1.16)
|
117
|
+
treetop (~> 1.4.8)
|
118
|
+
mime-types (1.16)
|
119
|
+
mocha (0.9.12)
|
120
|
+
multi_json (1.0.3)
|
121
|
+
nokogiri (1.4.5)
|
122
|
+
polyglot (0.3.1)
|
123
|
+
rack (1.3.0)
|
124
|
+
rack-cache (1.0.2)
|
125
|
+
rack (>= 0.4)
|
126
|
+
rack-mount (0.8.1)
|
127
|
+
rack (>= 1.0.0)
|
128
|
+
rack-ssl (1.3.2)
|
129
|
+
rack
|
130
|
+
rack-test (0.6.0)
|
131
|
+
rack (>= 1.0)
|
132
|
+
rails (3.1.0.rc4)
|
133
|
+
actionmailer (= 3.1.0.rc4)
|
134
|
+
actionpack (= 3.1.0.rc4)
|
135
|
+
activerecord (= 3.1.0.rc4)
|
136
|
+
activeresource (= 3.1.0.rc4)
|
137
|
+
activesupport (= 3.1.0.rc4)
|
138
|
+
bundler (~> 1.0)
|
139
|
+
railties (= 3.1.0.rc4)
|
140
|
+
railties (3.1.0.rc4)
|
141
|
+
actionpack (= 3.1.0.rc4)
|
142
|
+
activesupport (= 3.1.0.rc4)
|
143
|
+
rack-ssl (~> 1.3.2)
|
144
|
+
rake (>= 0.8.7)
|
145
|
+
rdoc (~> 3.4)
|
146
|
+
thor (~> 0.14.6)
|
147
|
+
rake (0.9.2)
|
148
|
+
rdiscount (1.6.8)
|
149
|
+
rdoc (3.6.1)
|
150
|
+
rspec (2.6.0)
|
151
|
+
rspec-core (~> 2.6.0)
|
152
|
+
rspec-expectations (~> 2.6.0)
|
153
|
+
rspec-mocks (~> 2.6.0)
|
154
|
+
rspec-core (2.6.4)
|
155
|
+
rspec-expectations (2.6.0)
|
156
|
+
diff-lcs (~> 1.1.2)
|
157
|
+
rspec-mocks (2.6.0)
|
158
|
+
rspec-rails (2.6.1)
|
159
|
+
actionpack (~> 3.0)
|
160
|
+
activesupport (~> 3.0)
|
161
|
+
railties (~> 3.0)
|
162
|
+
rspec (~> 2.6.0)
|
163
|
+
rubyzip (0.9.4)
|
164
|
+
sass (3.1.2)
|
165
|
+
sass-rails (3.1.0.rc.2)
|
166
|
+
actionpack (~> 3.1.0.rc1)
|
167
|
+
railties (~> 3.1.0.rc1)
|
168
|
+
sass (>= 3.1.2)
|
169
|
+
sprockets (>= 2.0.0.beta.9)
|
170
|
+
selenium-webdriver (0.2.1)
|
171
|
+
childprocess (>= 0.1.7)
|
172
|
+
ffi (>= 1.0.7)
|
173
|
+
json_pure
|
174
|
+
rubyzip
|
175
|
+
sprockets (2.0.0.beta.10)
|
176
|
+
hike (~> 1.0)
|
177
|
+
rack (~> 1.0)
|
178
|
+
tilt (!= 1.3.0, ~> 1.1)
|
179
|
+
sqlite3 (1.3.3)
|
180
|
+
term-ansicolor (1.0.5)
|
181
|
+
thor (0.14.6)
|
182
|
+
tilt (1.3.2)
|
183
|
+
treetop (1.4.9)
|
184
|
+
polyglot (>= 0.3.1)
|
185
|
+
tzinfo (0.3.28)
|
186
|
+
uglifier (0.5.4)
|
187
|
+
execjs (>= 0.3.0)
|
188
|
+
multi_json (>= 1.0.2)
|
189
|
+
xpath (0.1.4)
|
190
|
+
nokogiri (~> 1.3)
|
191
|
+
|
192
|
+
PLATFORMS
|
193
|
+
ruby
|
194
|
+
|
195
|
+
DEPENDENCIES
|
196
|
+
appraisal!
|
197
|
+
aruba (~> 0.4.2)
|
198
|
+
capybara (= 1.0.0)
|
199
|
+
coffee-script
|
200
|
+
cucumber-rails (= 1.0.0)
|
201
|
+
database_cleaner
|
202
|
+
diesel!
|
203
|
+
factory_girl_rails
|
204
|
+
jquery-rails
|
205
|
+
launchy
|
206
|
+
mocha
|
207
|
+
rails (= 3.1.0.rc4)
|
208
|
+
rspec-rails (~> 2.6.0)
|
209
|
+
sass-rails
|
210
|
+
shoulda-matchers!
|
211
|
+
sqlite3
|
212
|
+
uglifier
|