volt 0.8.21 → 0.8.22.beta1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +15 -10
- data/CHANGELOG.md +8 -0
- data/Gemfile +7 -33
- data/Readme.md +2 -0
- data/VERSION +1 -1
- data/app/volt/assets/js/{setImmediate.js → volt_js_polyfills.js} +14 -0
- data/app/volt/models/user.rb +21 -26
- data/app/volt/tasks/live_query/data_store.rb +4 -0
- data/app/volt/tasks/store_tasks.rb +8 -11
- data/app/volt/tasks/user_tasks.rb +18 -17
- data/lib/volt.rb +7 -1
- data/lib/volt/cli.rb +2 -0
- data/lib/volt/config.rb +69 -29
- data/lib/volt/extra_core/object.rb +8 -0
- data/lib/volt/models/model_hash_behaviour.rb +26 -6
- data/lib/volt/models/persistors/model_store.rb +1 -2
- data/lib/volt/models/validations.rb +18 -9
- data/lib/volt/models/validators/length_validator.rb +1 -1
- data/lib/volt/models/validators/presence_validator.rb +1 -1
- data/lib/volt/models/validators/unique_validator.rb +1 -1
- data/lib/volt/page/bindings/template_binding.rb +2 -1
- data/lib/volt/page/page.rb +7 -2
- data/lib/volt/page/sub_context.rb +8 -4
- data/lib/volt/page/targets/base_section.rb +1 -1
- data/lib/volt/page/targets/dom_template.rb +1 -1
- data/lib/volt/server.rb +3 -2
- data/lib/volt/server/html_parser/view_scope.rb +1 -0
- data/lib/volt/server/rack/component_code.rb +8 -1
- data/lib/volt/server/rack/component_paths.rb +2 -1
- data/lib/volt/server/rack/quiet_common_logger.rb +34 -0
- data/lib/volt/spec/setup.rb +30 -1
- data/lib/volt/utils/generic_pool.rb +4 -0
- data/lib/volt/volt/users.rb +18 -0
- data/spec/apps/kitchen_sink/Gemfile +3 -0
- data/spec/apps/kitchen_sink/app/main/config/dependencies.rb +6 -0
- data/spec/apps/kitchen_sink/app/main/config/routes.rb +5 -1
- data/spec/apps/kitchen_sink/app/main/models/user.rb +2 -0
- data/spec/apps/kitchen_sink/app/main/views/main/main.html +1 -1
- data/spec/apps/kitchen_sink/{public → config/base}/index.html +0 -0
- data/spec/integration/bindings_spec.rb +1 -1
- data/spec/integration/cookies_spec.rb +1 -1
- data/spec/integration/flash_spec.rb +3 -2
- data/spec/integration/list_spec.rb +1 -1
- data/spec/integration/templates_spec.rb +1 -1
- data/spec/integration/url_spec.rb +1 -1
- data/spec/integration/user_spec.rb +60 -0
- data/spec/models/model_spec.rb +0 -1
- data/spec/page/bindings/template_binding_spec.rb +0 -4
- data/spec/server/rack/asset_files_spec.rb +1 -1
- data/spec/spec_helper.rb +5 -0
- data/templates/component/tasks/.empty_directory +0 -0
- data/templates/newgem/app/newgem/views/main/{main.html → index.html} +0 -0
- data/templates/project/Gemfile.tt +0 -11
- data/templates/project/app/main/config/routes.rb +5 -0
- data/templates/project/app/main/tasks/.empty_directory +0 -0
- data/templates/project/app/main/views/main/main.html.tt +1 -0
- data/templates/project/config/app.rb.tt +8 -3
- data/volt.gemspec +4 -6
- metadata +58 -12
- data/spec/apps/kitchen_sink/app/main/controllers/users_test_controller.rb +0 -27
- data/spec/apps/kitchen_sink/app/main/views/users_test/index.html +0 -22
@@ -10,6 +10,9 @@ gem 'volt-bootstrap'
|
|
10
10
|
# Simple theme for bootstrap, remove to theme yourself.
|
11
11
|
gem 'volt-bootstrap-jumbotron-theme'
|
12
12
|
|
13
|
+
gem 'volt-fields', path: '/Users/ryanstout/Sites/volt/apps/volt-fields'
|
14
|
+
gem 'volt-user-templates', path: '/Users/ryanstout/Sites/volt/apps/volt-user-templates'
|
15
|
+
|
13
16
|
# Server for MRI
|
14
17
|
platform :mri do
|
15
18
|
gem 'thin', '~> 1.6.0'
|
@@ -6,7 +6,11 @@ get '/store', _action: 'store'
|
|
6
6
|
get '/cookie_test', _action: 'cookie_test'
|
7
7
|
get '/flash', _action: 'flash'
|
8
8
|
get '/todos', _controller: 'todos'
|
9
|
-
|
9
|
+
|
10
|
+
# Signup/login routes
|
11
|
+
get '/signup', _controller: 'user-templates', _action: 'signup'
|
12
|
+
get '/login', _controller: 'user-templates', _action: 'login'
|
13
|
+
|
10
14
|
|
11
15
|
# The main route, this should be last. It will match any params not previously matched.
|
12
16
|
get '/', {}
|
File without changes
|
@@ -1,7 +1,8 @@
|
|
1
|
-
|
1
|
+
# This spec fails on sauce randomly, disable for now
|
2
|
+
if ENV['BROWSER'] && ENV['BROWSER'] != 'sauce'
|
2
3
|
require 'spec_helper'
|
3
4
|
|
4
|
-
describe 'flash messages', type: :feature do
|
5
|
+
describe 'flash messages', type: :feature, :sauce => true do
|
5
6
|
it 'should flash on sucesses, notices, warnings, and errors' do
|
6
7
|
visit '/'
|
7
8
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
if ENV['BROWSER'] && ENV['BROWSER'] != 'phantom'
|
2
2
|
require 'spec_helper'
|
3
3
|
|
4
|
-
describe 'url features', type: :feature do
|
4
|
+
describe 'url features', type: :feature, sauce: true do
|
5
5
|
it 'should update the page when using the back button' do
|
6
6
|
visit '/'
|
7
7
|
expect(current_url).to match(/\/$/)
|
@@ -0,0 +1,60 @@
|
|
1
|
+
if ENV['BROWSER']
|
2
|
+
require 'spec_helper'
|
3
|
+
|
4
|
+
describe "user accounts", type: :feature, sauce: true do
|
5
|
+
before(:each) do
|
6
|
+
# Clear out db
|
7
|
+
DataStore.new.drop_database
|
8
|
+
# Volt::Persistors::ArrayStore.query_pool.clear
|
9
|
+
end
|
10
|
+
|
11
|
+
after(:each) do
|
12
|
+
# Clear out db
|
13
|
+
DataStore.new.drop_database
|
14
|
+
# Volt::Persistors::ArrayStore.query_pool.clear
|
15
|
+
end
|
16
|
+
|
17
|
+
it 'should create an account' do
|
18
|
+
visit '/'
|
19
|
+
|
20
|
+
# sleep 300
|
21
|
+
|
22
|
+
click_link 'Login'
|
23
|
+
|
24
|
+
click_link 'Signup here'
|
25
|
+
|
26
|
+
fields = all(:css, 'form .form-control')
|
27
|
+
|
28
|
+
fields[0].set('test@test.com')
|
29
|
+
fields[1].set('awes0mesEcRet')
|
30
|
+
fields[2].set('Test Account 9550')
|
31
|
+
|
32
|
+
click_button 'Signup'
|
33
|
+
|
34
|
+
expect(page).to have_content('Test Account 9550')
|
35
|
+
end
|
36
|
+
|
37
|
+
it 'should login and logout' do
|
38
|
+
visit '/'
|
39
|
+
|
40
|
+
# Add the user
|
41
|
+
$page.store._users << {email: 'test@test.com', password: 'awes0mesEcRet', name: 'Test Account 9550'}
|
42
|
+
|
43
|
+
click_link 'Login'
|
44
|
+
|
45
|
+
fields = all(:css, 'form .form-control')
|
46
|
+
fields[0].set('test@test.com')
|
47
|
+
fields[1].set('awes0mesEcRet')
|
48
|
+
click_button 'Login'
|
49
|
+
|
50
|
+
expect(page).to have_content('Test Account 9550')
|
51
|
+
|
52
|
+
# Click the logout link
|
53
|
+
click_link 'Test Account 9550'
|
54
|
+
click_link 'Logout'
|
55
|
+
|
56
|
+
expect(page).to_not have_content('Test Account 9550')
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
end
|
data/spec/models/model_spec.rb
CHANGED
@@ -20,7 +20,7 @@ if RUBY_PLATFORM != 'opal'
|
|
20
20
|
it 'should list all JS files' do
|
21
21
|
main = Volt::AssetFiles.new('main', @component_paths)
|
22
22
|
|
23
|
-
expect(main.javascript_files(nil)).to eq([
|
23
|
+
expect(main.javascript_files(nil)).to eq(["/assets/js/jquery-2.0.3.js", "/assets/js/sockjs-0.3.4.min.js", "/assets/js/volt_js_polyfills.js", "/assets/js/bootstrap.js", "/assets/js/test2.js", "/assets/js/test3.js", "/assets/js/test1.js", "/assets/volt/page/page.js", "/components/main.js"])
|
24
24
|
end
|
25
25
|
end
|
26
26
|
end
|
data/spec/spec_helper.rb
CHANGED
@@ -10,6 +10,10 @@ end
|
|
10
10
|
if RUBY_PLATFORM != 'opal'
|
11
11
|
|
12
12
|
RSpec.configure do |config|
|
13
|
+
# config.before(:each) do
|
14
|
+
# DataStore.new.drop_database
|
15
|
+
# end
|
16
|
+
|
13
17
|
config.run_all_when_everything_filtered = true
|
14
18
|
config.filter_run :focus
|
15
19
|
|
@@ -18,5 +22,6 @@ if RUBY_PLATFORM != 'opal'
|
|
18
22
|
# the seed, which is printed after each run.
|
19
23
|
# --seed 1234
|
20
24
|
config.order = 'random'
|
25
|
+
# config.seed = '2234'
|
21
26
|
end
|
22
27
|
end
|
File without changes
|
File without changes
|
@@ -11,19 +11,8 @@ gem 'volt-bootstrap'
|
|
11
11
|
# Simple theme for bootstrap, remove to theme yourself.
|
12
12
|
gem 'volt-bootstrap-jumbotron-theme'
|
13
13
|
|
14
|
-
|
15
14
|
# Server for MRI
|
16
15
|
platform :mri do
|
17
16
|
gem 'thin', '~> 1.6.0'
|
18
17
|
gem 'bson_ext', '~> 1.9.0'
|
19
18
|
end
|
20
|
-
|
21
|
-
# Server for jruby
|
22
|
-
platform :jruby do
|
23
|
-
gem 'jubilee'
|
24
|
-
end
|
25
|
-
|
26
|
-
|
27
|
-
#---------------------
|
28
|
-
# Needed at the moment
|
29
|
-
gem 'volt-sockjs', require: false, platforms: :mri
|
@@ -2,5 +2,10 @@
|
|
2
2
|
|
3
3
|
get '/about', _action: 'about'
|
4
4
|
|
5
|
+
# Routes for login and signup, provided by user-templates component gem
|
6
|
+
get '/signup', _controller: 'user-templates', _action: 'signup'
|
7
|
+
get '/login', _controller: 'user-templates', _action: 'login'
|
8
|
+
|
9
|
+
|
5
10
|
# The main route, this should be last. It will match any params not previously matched.
|
6
11
|
get '/', {}
|
File without changes
|
@@ -6,9 +6,6 @@ Volt.configure do |config|
|
|
6
6
|
# without the need to customize. Make sure this value doesn't leave your server.
|
7
7
|
config.app_secret = '<%= SecureRandom.urlsafe_base64(50) %>'
|
8
8
|
|
9
|
-
# The app name defaults to the folder it is run in.
|
10
|
-
# config.app_name = '<%= config[:name] %>'
|
11
|
-
|
12
9
|
# Database config all start with db_ and can be set either in the config
|
13
10
|
# file or with an environment variable (DB_NAME for example).
|
14
11
|
|
@@ -22,4 +19,12 @@ Volt.configure do |config|
|
|
22
19
|
# If you are not running behind something like nginx in production, you can
|
23
20
|
# have rack deflate all files.
|
24
21
|
# config.deflate = true
|
22
|
+
|
23
|
+
# Public configurations
|
24
|
+
# Anything under config.public will be sent to the client as well as the server,
|
25
|
+
# so be sure no private data ends up under public
|
26
|
+
|
27
|
+
# Use username instead of email as the login
|
28
|
+
# config.public.auth.use_username = true
|
29
|
+
|
25
30
|
end
|
data/volt.gemspec
CHANGED
@@ -25,8 +25,6 @@ Gem::Specification.new do |spec|
|
|
25
25
|
spec.add_dependency 'sprockets-sass', '~> 1.0.0'
|
26
26
|
spec.add_dependency 'sass', '~> 3.2.5'
|
27
27
|
spec.add_dependency 'mongo', '~> 1.9.0'
|
28
|
-
# spec.add_dependency "bson_ext", "~> 1.9.0"
|
29
|
-
# spec.add_dependency "thin", "~> 1.6.0"
|
30
28
|
spec.add_dependency 'rake', '~> 10.0.4'
|
31
29
|
spec.add_dependency 'listen', '~> 2.7.0'
|
32
30
|
spec.add_dependency 'uglifier', '~> 2.4.0'
|
@@ -42,16 +40,16 @@ Gem::Specification.new do |spec|
|
|
42
40
|
spec.add_dependency 'poltergeist', '~> 1.5.0'
|
43
41
|
spec.add_dependency 'opal-rspec', '0.3.0.beta3'
|
44
42
|
spec.add_dependency 'bundler', '>= 1.5'
|
43
|
+
spec.add_dependency 'volt-sockjs', '~> 0.3.4.4'
|
45
44
|
|
46
45
|
# For user passwords
|
47
46
|
spec.add_dependency 'bcrypt', '~> 3.1.9'
|
48
47
|
|
49
|
-
# spec.add_dependency "promise.rb", "~> 0.6.1"
|
50
|
-
|
51
|
-
# spec.add_dependency "rack-colorized_logger", "~> 1.0.4"
|
52
|
-
|
53
48
|
spec.add_development_dependency 'guard', '2.6.0' # bug in current guard
|
54
49
|
spec.add_development_dependency 'guard-rspec', '~> 4.3.0'
|
55
50
|
spec.add_development_dependency 'yard', '~> 0.8.7.0'
|
51
|
+
spec.add_development_dependency 'sauce', '~> 3.5.3'
|
52
|
+
spec.add_development_dependency 'sauce-connect', '~> 3.5.0'
|
53
|
+
|
56
54
|
|
57
55
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: volt
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.8.
|
4
|
+
version: 0.8.22.beta1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ryan Stout
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-11-
|
11
|
+
date: 2014-11-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|
@@ -304,6 +304,20 @@ dependencies:
|
|
304
304
|
- - ">="
|
305
305
|
- !ruby/object:Gem::Version
|
306
306
|
version: '1.5'
|
307
|
+
- !ruby/object:Gem::Dependency
|
308
|
+
name: volt-sockjs
|
309
|
+
requirement: !ruby/object:Gem::Requirement
|
310
|
+
requirements:
|
311
|
+
- - "~>"
|
312
|
+
- !ruby/object:Gem::Version
|
313
|
+
version: 0.3.4.4
|
314
|
+
type: :runtime
|
315
|
+
prerelease: false
|
316
|
+
version_requirements: !ruby/object:Gem::Requirement
|
317
|
+
requirements:
|
318
|
+
- - "~>"
|
319
|
+
- !ruby/object:Gem::Version
|
320
|
+
version: 0.3.4.4
|
307
321
|
- !ruby/object:Gem::Dependency
|
308
322
|
name: bcrypt
|
309
323
|
requirement: !ruby/object:Gem::Requirement
|
@@ -360,6 +374,34 @@ dependencies:
|
|
360
374
|
- - "~>"
|
361
375
|
- !ruby/object:Gem::Version
|
362
376
|
version: 0.8.7.0
|
377
|
+
- !ruby/object:Gem::Dependency
|
378
|
+
name: sauce
|
379
|
+
requirement: !ruby/object:Gem::Requirement
|
380
|
+
requirements:
|
381
|
+
- - "~>"
|
382
|
+
- !ruby/object:Gem::Version
|
383
|
+
version: 3.5.3
|
384
|
+
type: :development
|
385
|
+
prerelease: false
|
386
|
+
version_requirements: !ruby/object:Gem::Requirement
|
387
|
+
requirements:
|
388
|
+
- - "~>"
|
389
|
+
- !ruby/object:Gem::Version
|
390
|
+
version: 3.5.3
|
391
|
+
- !ruby/object:Gem::Dependency
|
392
|
+
name: sauce-connect
|
393
|
+
requirement: !ruby/object:Gem::Requirement
|
394
|
+
requirements:
|
395
|
+
- - "~>"
|
396
|
+
- !ruby/object:Gem::Version
|
397
|
+
version: 3.5.0
|
398
|
+
type: :development
|
399
|
+
prerelease: false
|
400
|
+
version_requirements: !ruby/object:Gem::Requirement
|
401
|
+
requirements:
|
402
|
+
- - "~>"
|
403
|
+
- !ruby/object:Gem::Version
|
404
|
+
version: 3.5.0
|
363
405
|
description:
|
364
406
|
email:
|
365
407
|
- ryan@agileproductions.com
|
@@ -382,8 +424,8 @@ files:
|
|
382
424
|
- VERSION
|
383
425
|
- app/volt/assets/css/notices.css.scss
|
384
426
|
- app/volt/assets/js/jquery-2.0.3.js
|
385
|
-
- app/volt/assets/js/setImmediate.js
|
386
427
|
- app/volt/assets/js/sockjs-0.3.4.min.js
|
428
|
+
- app/volt/assets/js/volt_js_polyfills.js
|
387
429
|
- app/volt/config/dependencies.rb
|
388
430
|
- app/volt/controllers/notices_controller.rb
|
389
431
|
- app/volt/models/user.rb
|
@@ -510,6 +552,7 @@ files:
|
|
510
552
|
- lib/volt/server/rack/component_paths.rb
|
511
553
|
- lib/volt/server/rack/index_files.rb
|
512
554
|
- lib/volt/server/rack/opal_files.rb
|
555
|
+
- lib/volt/server/rack/quiet_common_logger.rb
|
513
556
|
- lib/volt/server/rack/source_map_server.rb
|
514
557
|
- lib/volt/server/socket_connection_handler.rb
|
515
558
|
- lib/volt/server/socket_connection_handler_stub.rb
|
@@ -522,6 +565,7 @@ files:
|
|
522
565
|
- lib/volt/utils/generic_pool.rb
|
523
566
|
- lib/volt/utils/local_storage.rb
|
524
567
|
- lib/volt/volt/environment.rb
|
568
|
+
- lib/volt/volt/users.rb
|
525
569
|
- spec/apps/file_loading/app/bootstrap/assets/js/bootstrap.js
|
526
570
|
- spec/apps/file_loading/app/main/assets/js/test1.js
|
527
571
|
- spec/apps/file_loading/app/main/config/dependencies.rb
|
@@ -535,7 +579,7 @@ files:
|
|
535
579
|
- spec/apps/kitchen_sink/app/main/config/routes.rb
|
536
580
|
- spec/apps/kitchen_sink/app/main/controllers/main_controller.rb
|
537
581
|
- spec/apps/kitchen_sink/app/main/controllers/todos_controller.rb
|
538
|
-
- spec/apps/kitchen_sink/app/main/
|
582
|
+
- spec/apps/kitchen_sink/app/main/models/user.rb
|
539
583
|
- spec/apps/kitchen_sink/app/main/views/main/bindings.html
|
540
584
|
- spec/apps/kitchen_sink/app/main/views/main/cookie_test.html
|
541
585
|
- spec/apps/kitchen_sink/app/main/views/main/flash.html
|
@@ -543,10 +587,9 @@ files:
|
|
543
587
|
- spec/apps/kitchen_sink/app/main/views/main/main.html
|
544
588
|
- spec/apps/kitchen_sink/app/main/views/main/store.html
|
545
589
|
- spec/apps/kitchen_sink/app/main/views/todos/index.html
|
546
|
-
- spec/apps/kitchen_sink/app/main/views/users_test/index.html
|
547
590
|
- spec/apps/kitchen_sink/config.ru
|
548
591
|
- spec/apps/kitchen_sink/config/app.rb
|
549
|
-
- spec/apps/kitchen_sink/
|
592
|
+
- spec/apps/kitchen_sink/config/base/index.html
|
550
593
|
- spec/controllers/reactive_accessors_spec.rb
|
551
594
|
- spec/extra_core/array_spec.rb
|
552
595
|
- spec/extra_core/inflector_spec.rb
|
@@ -560,6 +603,7 @@ files:
|
|
560
603
|
- spec/integration/list_spec.rb
|
561
604
|
- spec/integration/templates_spec.rb
|
562
605
|
- spec/integration/url_spec.rb
|
606
|
+
- spec/integration/user_spec.rb
|
563
607
|
- spec/models/model_spec.rb
|
564
608
|
- spec/models/persistors/params_spec.rb
|
565
609
|
- spec/models/persistors/store_spec.rb
|
@@ -594,6 +638,7 @@ files:
|
|
594
638
|
- templates/component/config/routes.rb
|
595
639
|
- templates/component/controllers/main_controller.rb
|
596
640
|
- templates/component/models/.empty_directory
|
641
|
+
- templates/component/tasks/.empty_directory
|
597
642
|
- templates/component/views/index/index.html.tt
|
598
643
|
- templates/model/model.rb.tt
|
599
644
|
- templates/newgem/Gemfile.tt
|
@@ -606,7 +651,7 @@ files:
|
|
606
651
|
- templates/newgem/app/newgem/config/dependencies.rb
|
607
652
|
- templates/newgem/app/newgem/config/routes.rb
|
608
653
|
- templates/newgem/app/newgem/controllers/main_controller.rb.tt
|
609
|
-
- templates/newgem/app/newgem/views/main/
|
654
|
+
- templates/newgem/app/newgem/views/main/index.html
|
610
655
|
- templates/newgem/bin/newgem.tt
|
611
656
|
- templates/newgem/gitignore.tt
|
612
657
|
- templates/newgem/lib/newgem.rb.tt
|
@@ -628,6 +673,7 @@ files:
|
|
628
673
|
- templates/project/app/main/config/routes.rb
|
629
674
|
- templates/project/app/main/controllers/main_controller.rb
|
630
675
|
- templates/project/app/main/models/.empty_directory
|
676
|
+
- templates/project/app/main/tasks/.empty_directory
|
631
677
|
- templates/project/app/main/views/main/about.html
|
632
678
|
- templates/project/app/main/views/main/index.html
|
633
679
|
- templates/project/app/main/views/main/main.html.tt
|
@@ -653,9 +699,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
653
699
|
version: '0'
|
654
700
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
655
701
|
requirements:
|
656
|
-
- - "
|
702
|
+
- - ">"
|
657
703
|
- !ruby/object:Gem::Version
|
658
|
-
version:
|
704
|
+
version: 1.3.1
|
659
705
|
requirements: []
|
660
706
|
rubyforge_project:
|
661
707
|
rubygems_version: 2.2.2
|
@@ -677,7 +723,7 @@ test_files:
|
|
677
723
|
- spec/apps/kitchen_sink/app/main/config/routes.rb
|
678
724
|
- spec/apps/kitchen_sink/app/main/controllers/main_controller.rb
|
679
725
|
- spec/apps/kitchen_sink/app/main/controllers/todos_controller.rb
|
680
|
-
- spec/apps/kitchen_sink/app/main/
|
726
|
+
- spec/apps/kitchen_sink/app/main/models/user.rb
|
681
727
|
- spec/apps/kitchen_sink/app/main/views/main/bindings.html
|
682
728
|
- spec/apps/kitchen_sink/app/main/views/main/cookie_test.html
|
683
729
|
- spec/apps/kitchen_sink/app/main/views/main/flash.html
|
@@ -685,10 +731,9 @@ test_files:
|
|
685
731
|
- spec/apps/kitchen_sink/app/main/views/main/main.html
|
686
732
|
- spec/apps/kitchen_sink/app/main/views/main/store.html
|
687
733
|
- spec/apps/kitchen_sink/app/main/views/todos/index.html
|
688
|
-
- spec/apps/kitchen_sink/app/main/views/users_test/index.html
|
689
734
|
- spec/apps/kitchen_sink/config.ru
|
690
735
|
- spec/apps/kitchen_sink/config/app.rb
|
691
|
-
- spec/apps/kitchen_sink/
|
736
|
+
- spec/apps/kitchen_sink/config/base/index.html
|
692
737
|
- spec/controllers/reactive_accessors_spec.rb
|
693
738
|
- spec/extra_core/array_spec.rb
|
694
739
|
- spec/extra_core/inflector_spec.rb
|
@@ -702,6 +747,7 @@ test_files:
|
|
702
747
|
- spec/integration/list_spec.rb
|
703
748
|
- spec/integration/templates_spec.rb
|
704
749
|
- spec/integration/url_spec.rb
|
750
|
+
- spec/integration/user_spec.rb
|
705
751
|
- spec/models/model_spec.rb
|
706
752
|
- spec/models/persistors/params_spec.rb
|
707
753
|
- spec/models/persistors/store_spec.rb
|