edgarj 4.00.01 → 4.00.02
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 45365b5f9f64db501d753835bd0775c19e585240
|
4
|
+
data.tar.gz: 5f3ea9f86eee01be52b1d2c1ee75c46e01b0606b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 09114993201831e632db9ba44766206f0c7d0c5a3a414982349bf297e0b0ff93de21df68878a84a0d54b5254dfe6106730e6915604f39b4bf2a2df3a4c97bf9f
|
7
|
+
data.tar.gz: 2b79ac170b59275913f1b125ae49af23921b733fe176040745bc42142b29bd7c8ec826d4b8bb31514d25757b3d37b6b13de092b77f7212ac16bf085374040322
|
@@ -0,0 +1,15 @@
|
|
1
|
+
<!-- edgarj/_message_popup.html.erb -->
|
2
|
+
<%#
|
3
|
+
message popup template.
|
4
|
+
%>
|
5
|
+
|
6
|
+
<center>
|
7
|
+
<div id=edgarj_message_error ><%= flash[:error] || '' %></div>
|
8
|
+
<div id=edgarj_message_notice><%= flash[:notice] || '' %></div>
|
9
|
+
<hr>
|
10
|
+
<%= button_tag t('close'),
|
11
|
+
type: 'button',
|
12
|
+
id: 'edgarj_message_popup_close',
|
13
|
+
onClick: "$('#edgarj_message_popup').dialog('close');"
|
14
|
+
%>
|
15
|
+
</center>
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: edgarj
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.00.
|
4
|
+
version: 4.00.02
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Fuminori Ido
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-01-
|
11
|
+
date: 2016-01-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -359,96 +359,96 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
359
359
|
version: '0'
|
360
360
|
requirements: []
|
361
361
|
rubyforge_project:
|
362
|
-
rubygems_version: 2.
|
362
|
+
rubygems_version: 2.2.2
|
363
363
|
signing_key:
|
364
364
|
specification_version: 4
|
365
365
|
summary: Scaffold with Ajax, search, sort, 'belongs_to' popup, and more.
|
366
366
|
test_files:
|
367
|
-
- test/
|
368
|
-
- test/
|
369
|
-
- test/
|
370
|
-
- test/
|
367
|
+
- test/models/helpers/edgarj/model_permissions_helper_test.rb
|
368
|
+
- test/models/helpers/edgarj/user_group_users_helper_test.rb
|
369
|
+
- test/models/edgarj/user_group_user_test.rb
|
370
|
+
- test/models/edgarj/sssn_test.rb
|
371
|
+
- test/models/edgarj/user_group_test.rb
|
372
|
+
- test/models/edgarj/page_info_test.rb
|
373
|
+
- test/models/edgarj/model_permission_test.rb
|
374
|
+
- test/integration/navigation_test.rb
|
375
|
+
- test/support/edgarj/controller_supporter.rb
|
376
|
+
- test/controllers/edgarj/user_group_users_controller_test.rb
|
377
|
+
- test/controllers/edgarj/edgarj_controller_test.rb
|
378
|
+
- test/controllers/edgarj/model_permissions_controller_test.rb
|
379
|
+
- test/edgarj_test.rb
|
380
|
+
- test/test_helper.rb
|
371
381
|
- test/dummy/test/helpers/authors_helper_test.rb
|
382
|
+
- test/dummy/test/models/book_test.rb
|
372
383
|
- test/dummy/test/models/author_test.rb
|
373
384
|
- test/dummy/test/models/rails_config_test.rb
|
374
|
-
- test/dummy/test/
|
375
|
-
- test/dummy/
|
376
|
-
- test/dummy/
|
377
|
-
- test/dummy/
|
378
|
-
- test/dummy/
|
379
|
-
- test/dummy/
|
380
|
-
- test/dummy/
|
381
|
-
- test/dummy/
|
382
|
-
- test/dummy/
|
383
|
-
- test/dummy/
|
384
|
-
- test/dummy/
|
385
|
-
- test/dummy/
|
386
|
-
- test/dummy/
|
387
|
-
- test/dummy/app/helpers/authors_helper.rb
|
388
|
-
- test/dummy/app/helpers/books_helper.rb
|
389
|
-
- test/dummy/app/helpers/application_helper.rb
|
390
|
-
- test/dummy/app/models/author.rb
|
391
|
-
- test/dummy/app/models/user.rb
|
392
|
-
- test/dummy/app/models/book.rb
|
393
|
-
- test/dummy/app/views/layouts/application.html.erb
|
394
|
-
- test/dummy/app/views/layouts/login.html.erb
|
385
|
+
- test/dummy/test/controllers/authors_controller_test.rb
|
386
|
+
- test/dummy/test/controllers/books_controller_test.rb
|
387
|
+
- test/dummy/test/controllers/authors_popup_controller_test.rb
|
388
|
+
- test/dummy/README.rdoc
|
389
|
+
- test/dummy/config.ru
|
390
|
+
- test/dummy/bin/bundle
|
391
|
+
- test/dummy/bin/rake
|
392
|
+
- test/dummy/bin/rails
|
393
|
+
- test/dummy/db/schema.rb
|
394
|
+
- test/dummy/db/migrate/20131218011851_create_books.rb
|
395
|
+
- test/dummy/db/migrate/20140807065420_create_users.rb
|
396
|
+
- test/dummy/db/migrate/20140201000000_add_user_group_id_to_authors.rb
|
397
|
+
- test/dummy/db/migrate/20131107120635_create_authors.rb
|
395
398
|
- test/dummy/Rakefile
|
396
|
-
- test/dummy/config/
|
397
|
-
- test/dummy/config/settings.yml
|
399
|
+
- test/dummy/config/routes.rb
|
398
400
|
- test/dummy/config/boot.rb
|
399
401
|
- test/dummy/config/environment.rb
|
402
|
+
- test/dummy/config/database.yml
|
403
|
+
- test/dummy/config/settings.yml
|
404
|
+
- test/dummy/config/environments/test.rb
|
405
|
+
- test/dummy/config/environments/production.rb
|
406
|
+
- test/dummy/config/environments/development.rb
|
407
|
+
- test/dummy/config/application.rb
|
400
408
|
- test/dummy/config/settings/production.yml
|
401
409
|
- test/dummy/config/settings/development.yml
|
402
410
|
- test/dummy/config/settings/test.yml
|
403
|
-
- test/dummy/config/
|
404
|
-
- test/dummy/config/application.rb
|
411
|
+
- test/dummy/config/edgarj/menu_config.rb
|
405
412
|
- test/dummy/config/locales/en.yml
|
406
413
|
- test/dummy/config/locales/ja.yml
|
407
|
-
- test/dummy/config/initializers/
|
408
|
-
- test/dummy/config/initializers/
|
414
|
+
- test/dummy/config/initializers/config.rb
|
415
|
+
- test/dummy/config/initializers/inflections.rb
|
409
416
|
- test/dummy/config/initializers/wrap_parameters.rb
|
417
|
+
- test/dummy/config/initializers/session_store.rb
|
410
418
|
- test/dummy/config/initializers/secret_token.rb
|
419
|
+
- test/dummy/config/initializers/filter_parameter_logging.rb
|
411
420
|
- test/dummy/config/initializers/mime_types.rb
|
412
|
-
- test/dummy/config/initializers/
|
413
|
-
- test/dummy/config/initializers/inflections.rb
|
414
|
-
- test/dummy/config/initializers/config.rb
|
415
|
-
- test/dummy/config/edgarj/menu_config.rb
|
416
|
-
- test/dummy/config/environments/production.rb
|
417
|
-
- test/dummy/config/environments/development.rb
|
418
|
-
- test/dummy/config/environments/test.rb
|
419
|
-
- test/dummy/public/404.html
|
421
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
420
422
|
- test/dummy/public/favicon.ico
|
421
|
-
- test/dummy/public/
|
423
|
+
- test/dummy/public/404.html
|
422
424
|
- test/dummy/public/422.html
|
423
|
-
- test/dummy/
|
424
|
-
- test/dummy/
|
425
|
-
- test/dummy/
|
426
|
-
- test/dummy/
|
427
|
-
- test/dummy/
|
428
|
-
- test/dummy/
|
429
|
-
- test/dummy/
|
430
|
-
- test/dummy/
|
431
|
-
- test/dummy/
|
432
|
-
- test/
|
433
|
-
- test/
|
434
|
-
- test/
|
435
|
-
- test/
|
436
|
-
- test/
|
425
|
+
- test/dummy/public/500.html
|
426
|
+
- test/dummy/app/views/layouts/login.html.erb
|
427
|
+
- test/dummy/app/views/layouts/application.html.erb
|
428
|
+
- test/dummy/app/decorators/models/edgarj/user_group_decorator.rb
|
429
|
+
- test/dummy/app/helpers/authors_helper.rb
|
430
|
+
- test/dummy/app/helpers/books_helper.rb
|
431
|
+
- test/dummy/app/helpers/application_helper.rb
|
432
|
+
- test/dummy/app/helpers/authors_popup_helper.rb
|
433
|
+
- test/dummy/app/models/book.rb
|
434
|
+
- test/dummy/app/models/author.rb
|
435
|
+
- test/dummy/app/models/user.rb
|
436
|
+
- test/dummy/app/assets/javascripts/authors.js
|
437
|
+
- test/dummy/app/assets/javascripts/application.js
|
438
|
+
- test/dummy/app/assets/stylesheets/scaffold.css
|
439
|
+
- test/dummy/app/assets/stylesheets/authors.css
|
440
|
+
- test/dummy/app/assets/stylesheets/application.css
|
441
|
+
- test/dummy/app/controllers/authors_controller.rb
|
442
|
+
- test/dummy/app/controllers/books_controller.rb
|
443
|
+
- test/dummy/app/controllers/dummy_auth_mixin.rb
|
444
|
+
- test/dummy/app/controllers/application_controller.rb
|
445
|
+
- test/dummy/app/controllers/authors_popup_controller.rb
|
437
446
|
- test/fixtures/authors.yml
|
438
|
-
- test/fixtures/books.yml
|
439
447
|
- test/fixtures/users.yml
|
448
|
+
- test/fixtures/edgarj/page_infos.yml
|
440
449
|
- test/fixtures/edgarj/user_group_users.yml
|
441
450
|
- test/fixtures/edgarj/user_groups.yml
|
442
|
-
- test/fixtures/edgarj/page_infos.yml
|
443
|
-
- test/fixtures/edgarj/sssns.yml
|
444
451
|
- test/fixtures/edgarj/model_permissions.yml
|
445
|
-
- test/
|
446
|
-
- test/
|
447
|
-
- test/models/helpers/edgarj/model_permissions_helper_test.rb
|
448
|
-
- test/models/helpers/edgarj/user_group_users_helper_test.rb
|
449
|
-
- test/models/edgarj/user_group_test.rb
|
450
|
-
- test/models/edgarj/sssn_test.rb
|
451
|
-
- test/models/edgarj/model_permission_test.rb
|
452
|
-
- test/models/edgarj/page_info_test.rb
|
453
|
-
- test/models/edgarj/user_group_user_test.rb
|
452
|
+
- test/fixtures/edgarj/sssns.yml
|
453
|
+
- test/fixtures/books.yml
|
454
454
|
has_rdoc:
|
@@ -1 +0,0 @@
|
|
1
|
-
../edgarj/_message_popup.html.erb
|
@@ -1 +0,0 @@
|
|
1
|
-
../edgarj/message_popup.js.erb
|