user_impersonate2 0.9.0 → 0.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +95 -56
- data/app/assets/javascripts/user_impersonate/application.js +1 -2
- data/lib/user_impersonate/version.rb +1 -1
- data/test/dummy/app/models/user.rb +5 -0
- data/test/dummy/config/initializers/user_impersonate.rb +18 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +751 -0
- data/test/dummy/log/test.log +8333 -0
- data/test/test_helper.rb +4 -0
- metadata +8 -2
data/test/test_helper.rb
CHANGED
@@ -1,3 +1,6 @@
|
|
1
|
+
require 'coveralls'
|
2
|
+
Coveralls.wear!
|
3
|
+
|
1
4
|
# Configure Rails Environment
|
2
5
|
ENV["RAILS_ENV"] = "test"
|
3
6
|
|
@@ -13,3 +16,4 @@ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
|
|
13
16
|
if ActiveSupport::TestCase.method_defined?(:fixture_path=)
|
14
17
|
ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
|
15
18
|
end
|
19
|
+
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: user_impersonate2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Richard Cook
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date:
|
13
|
+
date: 2014-01-07 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: rails
|
@@ -159,6 +159,7 @@ files:
|
|
159
159
|
- test/dummy/config/environments/test.rb
|
160
160
|
- test/dummy/config/routes.rb
|
161
161
|
- test/dummy/config/initializers/inflections.rb
|
162
|
+
- test/dummy/config/initializers/user_impersonate.rb
|
162
163
|
- test/dummy/config/initializers/wrap_parameters.rb
|
163
164
|
- test/dummy/config/initializers/mime_types.rb
|
164
165
|
- test/dummy/config/initializers/secret_token.rb
|
@@ -184,8 +185,10 @@ files:
|
|
184
185
|
- test/dummy/test/unit/helpers/home_helper_test.rb
|
185
186
|
- test/dummy/test/fixtures/users.yml
|
186
187
|
- test/dummy/config.ru
|
188
|
+
- test/dummy/log/development.log
|
187
189
|
- test/dummy/log/test.log
|
188
190
|
- test/dummy/Rakefile
|
191
|
+
- test/dummy/db/development.sqlite3
|
189
192
|
- test/dummy/db/schema.rb
|
190
193
|
- test/dummy/db/migrate/20120914184123_add_staff_flag_to_users.rb
|
191
194
|
- test/dummy/db/migrate/20120914174453_devise_create_users.rb
|
@@ -234,6 +237,7 @@ test_files:
|
|
234
237
|
- test/dummy/config/environments/test.rb
|
235
238
|
- test/dummy/config/routes.rb
|
236
239
|
- test/dummy/config/initializers/inflections.rb
|
240
|
+
- test/dummy/config/initializers/user_impersonate.rb
|
237
241
|
- test/dummy/config/initializers/wrap_parameters.rb
|
238
242
|
- test/dummy/config/initializers/mime_types.rb
|
239
243
|
- test/dummy/config/initializers/secret_token.rb
|
@@ -259,8 +263,10 @@ test_files:
|
|
259
263
|
- test/dummy/test/unit/helpers/home_helper_test.rb
|
260
264
|
- test/dummy/test/fixtures/users.yml
|
261
265
|
- test/dummy/config.ru
|
266
|
+
- test/dummy/log/development.log
|
262
267
|
- test/dummy/log/test.log
|
263
268
|
- test/dummy/Rakefile
|
269
|
+
- test/dummy/db/development.sqlite3
|
264
270
|
- test/dummy/db/schema.rb
|
265
271
|
- test/dummy/db/migrate/20120914184123_add_staff_flag_to_users.rb
|
266
272
|
- test/dummy/db/migrate/20120914174453_devise_create_users.rb
|