symbolink 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (36) hide show
  1. data/CHANGELOG.md +3 -0
  2. data/lib/symbolink/helper.rb +6 -3
  3. data/lib/symbolink/version.rb +1 -1
  4. data/test/dummy/app/controllers/users_controller.rb +8 -2
  5. data/test/dummy/app/models/user.rb +0 -1
  6. data/test/dummy/config/application.rb +0 -6
  7. data/test/dummy/config/environments/development.rb +3 -6
  8. data/test/dummy/config/environments/production.rb +3 -0
  9. data/test/dummy/config/environments/test.rb +3 -6
  10. data/test/dummy/config/initializers/secret_token.rb +1 -0
  11. data/test/dummy/db/development.sqlite3 +0 -0
  12. data/test/dummy/log/development.log +176 -0
  13. data/test/dummy/log/test.log +4 -0
  14. data/test/dummy/tmp/cache/assets/development/sprockets/0800f54ee19cf3cee10b956fa9786799 +0 -0
  15. data/test/dummy/tmp/cache/assets/development/sprockets/08182cca8261fd06a959d255ab29f705 +0 -0
  16. data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  17. data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  18. data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  19. data/test/dummy/tmp/cache/assets/development/sprockets/371bf96e99717688ed7313a0c53f4212 +0 -0
  20. data/test/dummy/tmp/cache/assets/development/sprockets/4050a4e5062ab95c9f32e9b6940821ea +0 -0
  21. data/test/dummy/tmp/cache/assets/development/sprockets/510da110ae528e2d22533be39ff696c5 +0 -0
  22. data/test/dummy/tmp/cache/assets/development/sprockets/5f1a0d05e77ca8b9a1fc2a47e17a8174 +0 -0
  23. data/test/dummy/tmp/cache/assets/development/sprockets/62390fb308d4400fd883040d0e648b55 +0 -0
  24. data/test/dummy/tmp/cache/assets/development/sprockets/6fc757c2c8329244ca95d6909865bbc2 +0 -0
  25. data/test/dummy/tmp/cache/assets/development/sprockets/85113935090eccc062b4bd2100153b40 +0 -0
  26. data/test/dummy/tmp/cache/assets/development/sprockets/87b209c0c9da28094a8d5581a21262c6 +0 -0
  27. data/test/dummy/tmp/cache/assets/development/sprockets/95f229f4b15b301c2a03fa1672c412e2 +0 -0
  28. data/test/dummy/tmp/cache/assets/development/sprockets/bc3636eca7d7ca572f59de8e48759380 +0 -0
  29. data/test/dummy/tmp/cache/assets/development/sprockets/cebc6db0bbb8120f430da3970b173d2f +0 -0
  30. data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  31. data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  32. data/test/dummy/tmp/cache/assets/development/sprockets/e396e33dd8bab7d90ba59b893bf641b3 +0 -0
  33. data/test/dummy/tmp/cache/assets/development/sprockets/f56253b5f374fff1a33fbbc9881c9124 +0 -0
  34. data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  35. data/test/dummy/tmp/pids/server.pid +1 -1
  36. metadata +52 -10
data/CHANGELOG.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # Symbolink changelog
2
2
 
3
+ ## v.0.0.5
4
+ - Upgrade to Rails 4. For rails 3.x use v.0.0.4
5
+
3
6
  ## v.0.0.4
4
7
  - Allow define confirmation text for the action
5
8
 
@@ -22,9 +22,12 @@ module Symbolink
22
22
  end
23
23
  html_options[:title] ||= title
24
24
  if confirm
25
-
26
- html_options[:'data-confirm'] = html_options[:confirm] if html_options[:confirm]
27
- html_options[:'data-confirm'] ||= confirm
25
+ html_options[:data] ||= {}
26
+ %w{confirm data-confirm}.map(&:to_sym).select{ |opt| html_options[opt] }.each do |opt|
27
+ html_options[:data][:confirm] = html_options[opt]
28
+ html_options.delete(opt)
29
+ end
30
+ html_options[:data][:confirm] ||= confirm
28
31
  end
29
32
  link_to(symbolicon(icon), options, html_options)
30
33
  end
@@ -1,3 +1,3 @@
1
1
  module Symbolink
2
- VERSION = "0.0.4"
2
+ VERSION = "0.0.5"
3
3
  end
@@ -40,7 +40,7 @@ class UsersController < ApplicationController
40
40
  # POST /users
41
41
  # POST /users.json
42
42
  def create
43
- @user = User.new(params[:user])
43
+ @user = User.new(user_params)
44
44
 
45
45
  respond_to do |format|
46
46
  if @user.save
@@ -59,7 +59,7 @@ class UsersController < ApplicationController
59
59
  @user = User.find(params[:id])
60
60
 
61
61
  respond_to do |format|
62
- if @user.update_attributes(params[:user])
62
+ if @user.update_attributes(user_params)
63
63
  format.html { redirect_to @user, notice: 'User was successfully updated.' }
64
64
  format.json { head :no_content }
65
65
  else
@@ -80,4 +80,10 @@ class UsersController < ApplicationController
80
80
  format.json { head :no_content }
81
81
  end
82
82
  end
83
+
84
+ private
85
+
86
+ def user_params
87
+ params.require(:user).permit(:name)
88
+ end
83
89
  end
@@ -1,3 +1,2 @@
1
1
  class User < ActiveRecord::Base
2
- attr_accessible :name
3
2
  end
@@ -43,12 +43,6 @@ module Dummy
43
43
  # like if you have constraints or database-specific column types
44
44
  # config.active_record.schema_format = :sql
45
45
 
46
- # Enforce whitelist mode for mass assignment.
47
- # This will create an empty whitelist of attributes available for mass-assignment for all models
48
- # in your app. As such, your models will need to explicitly whitelist or blacklist accessible
49
- # parameters by using an attr_accessible or attr_protected declaration.
50
- config.active_record.whitelist_attributes = true
51
-
52
46
  # Enable the asset pipeline
53
47
  config.assets.enabled = true
54
48
 
@@ -6,9 +6,6 @@ Dummy::Application.configure do
6
6
  # since you don't have to restart the web server when you make code changes.
7
7
  config.cache_classes = false
8
8
 
9
- # Log error messages when you accidentally call methods on nil.
10
- config.whiny_nils = true
11
-
12
9
  # Show full error reports and disable caching
13
10
  config.consider_all_requests_local = true
14
11
  config.action_controller.perform_caching = false
@@ -22,9 +19,6 @@ Dummy::Application.configure do
22
19
  # Only use best-standards-support built into browsers
23
20
  config.action_dispatch.best_standards_support = :builtin
24
21
 
25
- # Raise exception on mass assignment protection for Active Record models
26
- config.active_record.mass_assignment_sanitizer = :strict
27
-
28
22
  # Log the query plan for queries taking more than this (works
29
23
  # with SQLite, MySQL, and PostgreSQL)
30
24
  config.active_record.auto_explain_threshold_in_seconds = 0.5
@@ -34,4 +28,7 @@ Dummy::Application.configure do
34
28
 
35
29
  # Expands the lines which load the assets
36
30
  config.assets.debug = true
31
+
32
+ # 4.0 updates
33
+ config.eager_load = false
37
34
  end
@@ -64,4 +64,7 @@ Dummy::Application.configure do
64
64
  # Log the query plan for queries taking more than this (works
65
65
  # with SQLite, MySQL, and PostgreSQL)
66
66
  # config.active_record.auto_explain_threshold_in_seconds = 0.5
67
+
68
+ # 4.0 updates
69
+ config.eager_load = true
67
70
  end
@@ -11,9 +11,6 @@ Dummy::Application.configure do
11
11
  config.serve_static_assets = true
12
12
  config.static_cache_control = "public, max-age=3600"
13
13
 
14
- # Log error messages when you accidentally call methods on nil
15
- config.whiny_nils = true
16
-
17
14
  # Show full error reports and disable caching
18
15
  config.consider_all_requests_local = true
19
16
  config.action_controller.perform_caching = false
@@ -29,9 +26,9 @@ Dummy::Application.configure do
29
26
  # ActionMailer::Base.deliveries array.
30
27
  config.action_mailer.delivery_method = :test
31
28
 
32
- # Raise exception on mass assignment protection for Active Record models
33
- config.active_record.mass_assignment_sanitizer = :strict
34
-
35
29
  # Print deprecation notices to the stderr
36
30
  config.active_support.deprecation = :stderr
31
+
32
+ # 4.0 updates
33
+ config.eager_load = false
37
34
  end
@@ -5,3 +5,4 @@
5
5
  # Make sure the secret is at least 30 characters and all random,
6
6
  # no regular words or you'll be exposed to dictionary attacks.
7
7
  Dummy::Application.config.secret_token = '0bf8e4921f34d09f9eeb22204cbba4807e00f0865312d58b3952ec018f0b2fc34c0c32599c681e20c6cb7c7b34de7c8a28fd7dbbc9c674b3255d41ec71fd4661'
8
+ Dummy::Application.config.secret_key_base = '0bf8e4921f34d09f9eeb22204cbba4807e00f0865312d58b3952ec018f0b2fc34c0c32599c681e20c6cb7c7b34de7c8a28fd7dbbc9c674b3255d41ec71fd4661'
Binary file
@@ -556,3 +556,179 @@ Processing by UsersController#index as HTML
556
556
  User Load (1.0ms) SELECT "users".* FROM "users" 
557
557
  Rendered users/index.html.erb within layouts/application (2.0ms)
558
558
  Completed 200 OK in 12ms (Views: 11.0ms | ActiveRecord: 1.0ms)
559
+
560
+
561
+ Started GET "/" for 127.0.0.1 at 2013-09-09 11:06:33 +0400
562
+ Processing by UsersController#index as HTML
563
+ User Load (0.0ms) SELECT "users".* FROM "users"
564
+ Rendered users/index.html.erb within layouts/application (46.0ms)
565
+ Completed 200 OK in 461ms (Views: 443.0ms | ActiveRecord: 14.0ms)
566
+
567
+
568
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2013-09-09 11:06:35 +0400
569
+
570
+
571
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-09 11:06:35 +0400
572
+
573
+
574
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2013-09-09 11:06:35 +0400
575
+
576
+
577
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-09 11:06:35 +0400
578
+
579
+
580
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-09-09 11:06:35 +0400
581
+
582
+
583
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-09-09 11:06:35 +0400
584
+
585
+
586
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-09-09 11:06:35 +0400
587
+
588
+
589
+ Started GET "/users/2" for 127.0.0.1 at 2013-09-09 11:06:41 +0400
590
+ Processing by UsersController#show as HTML
591
+ Parameters: {"id"=>"2"}
592
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "2"]]
593
+ Rendered users/show.html.erb within layouts/application (2.0ms)
594
+ Completed 200 OK in 14ms (Views: 12.0ms | ActiveRecord: 0.0ms)
595
+
596
+
597
+ Started GET "/users/2/edit" for 127.0.0.1 at 2013-09-09 11:06:44 +0400
598
+ Processing by UsersController#edit as HTML
599
+ Parameters: {"id"=>"2"}
600
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "2"]]
601
+ Rendered users/_form.html.erb (101.0ms)
602
+ Rendered users/edit.html.erb within layouts/application (140.0ms)
603
+ Completed 200 OK in 157ms (Views: 155.0ms | ActiveRecord: 0.0ms)
604
+
605
+
606
+ Started PATCH "/users/2" for 127.0.0.1 at 2013-09-09 11:06:50 +0400
607
+ Processing by UsersController#update as HTML
608
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"za77UwIKZYeguLVFq0/Yi6Q39LeZZaL0ptFT0fft8+M=", "user"=>{"name"=>"User!"}, "commit"=>"Update User", "id"=>"2"}
609
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "2"]]
610
+  (0.0ms) begin transaction
611
+  (0.0ms) rollback transaction
612
+ Completed 500 Internal Server Error in 4ms
613
+
614
+ ActiveModel::ForbiddenAttributesError (ActiveModel::ForbiddenAttributesError):
615
+ app/controllers/users_controller.rb:62:in `block in update'
616
+ app/controllers/users_controller.rb:61:in `update'
617
+
618
+
619
+ Rendered C:/apps/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms)
620
+ Rendered C:/apps/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms)
621
+ Rendered C:/apps/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
622
+ Rendered C:/apps/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (58.0ms)
623
+
624
+
625
+ Started PATCH "/users/2" for 127.0.0.1 at 2013-09-09 11:13:31 +0400
626
+ Processing by UsersController#update as HTML
627
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"za77UwIKZYeguLVFq0/Yi6Q39LeZZaL0ptFT0fft8+M=", "user"=>{"name"=>"User!"}, "commit"=>"Update User", "id"=>"2"}
628
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "2"]]
629
+  (0.0ms) begin transaction
630
+ SQL (123.0ms) UPDATE "users" SET "name" = ?, "updated_at" = ? WHERE "users"."id" = 2 [["name", "User!"], ["updated_at", Mon, 09 Sep 2013 07:13:31 UTC +00:00]]
631
+  (34.0ms) commit transaction
632
+ Redirected to http://localhost:3000/users/2
633
+ Completed 302 Found in 208ms (ActiveRecord: 158.0ms)
634
+
635
+
636
+ Started GET "/users/2" for 127.0.0.1 at 2013-09-09 11:13:31 +0400
637
+ Processing by UsersController#show as HTML
638
+ Parameters: {"id"=>"2"}
639
+ User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "2"]]
640
+ Rendered users/show.html.erb within layouts/application (1.0ms)
641
+ Completed 200 OK in 13ms (Views: 11.0ms | ActiveRecord: 1.0ms)
642
+
643
+
644
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-09 11:13:31 +0400
645
+
646
+
647
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-09 11:13:31 +0400
648
+
649
+
650
+ Started GET "/users" for 127.0.0.1 at 2013-09-09 11:13:35 +0400
651
+ Processing by UsersController#index as HTML
652
+ User Load (0.0ms) SELECT "users".* FROM "users"
653
+ Rendered users/index.html.erb within layouts/application (3.0ms)
654
+ Completed 200 OK in 18ms (Views: 18.0ms | ActiveRecord: 0.0ms)
655
+
656
+
657
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-09 11:13:35 +0400
658
+
659
+
660
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-09 11:13:35 +0400
661
+
662
+
663
+ Started GET "/users/new" for 127.0.0.1 at 2013-09-09 11:13:37 +0400
664
+ Processing by UsersController#new as HTML
665
+ Rendered users/_form.html.erb (3.0ms)
666
+ Rendered users/new.html.erb within layouts/application (9.0ms)
667
+ Completed 200 OK in 26ms (Views: 25.0ms | ActiveRecord: 0.0ms)
668
+
669
+
670
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-09 11:13:37 +0400
671
+
672
+
673
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-09 11:13:37 +0400
674
+
675
+
676
+ Started POST "/users" for 127.0.0.1 at 2013-09-09 11:13:42 +0400
677
+ Processing by UsersController#create as HTML
678
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"za77UwIKZYeguLVFq0/Yi6Q39LeZZaL0ptFT0fft8+M=", "user"=>{"name"=>"New User"}, "commit"=>"Create User"}
679
+  (0.0ms) begin transaction
680
+ SQL (2.0ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 09 Sep 2013 07:13:42 UTC +00:00], ["name", "New User"], ["updated_at", Mon, 09 Sep 2013 07:13:42 UTC +00:00]]
681
+  (8.0ms) commit transaction
682
+ Redirected to http://localhost:3000/users/3
683
+ Completed 302 Found in 18ms (ActiveRecord: 10.0ms)
684
+
685
+
686
+ Started GET "/users/3" for 127.0.0.1 at 2013-09-09 11:13:42 +0400
687
+ Processing by UsersController#show as HTML
688
+ Parameters: {"id"=>"3"}
689
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "3"]]
690
+ Rendered users/show.html.erb within layouts/application (1.0ms)
691
+ Completed 200 OK in 14ms (Views: 12.0ms | ActiveRecord: 0.0ms)
692
+
693
+
694
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-09 11:13:42 +0400
695
+
696
+
697
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-09 11:13:43 +0400
698
+
699
+
700
+ Started GET "/users" for 127.0.0.1 at 2013-09-09 11:13:46 +0400
701
+ Processing by UsersController#index as HTML
702
+ User Load (1.0ms) SELECT "users".* FROM "users"
703
+ Rendered users/index.html.erb within layouts/application (3.0ms)
704
+ Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 1.0ms)
705
+
706
+
707
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-09 11:13:46 +0400
708
+
709
+
710
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-09 11:13:46 +0400
711
+
712
+
713
+ Started DELETE "/users/3" for 127.0.0.1 at 2013-09-09 11:13:50 +0400
714
+ Processing by UsersController#destroy as HTML
715
+ Parameters: {"authenticity_token"=>"za77UwIKZYeguLVFq0/Yi6Q39LeZZaL0ptFT0fft8+M=", "id"=>"3"}
716
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "3"]]
717
+  (0.0ms) begin transaction
718
+ SQL (1.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
719
+  (4.0ms) commit transaction
720
+ Redirected to http://localhost:3000/users
721
+ Completed 302 Found in 12ms (ActiveRecord: 5.0ms)
722
+
723
+
724
+ Started GET "/users" for 127.0.0.1 at 2013-09-09 11:13:50 +0400
725
+ Processing by UsersController#index as HTML
726
+ User Load (0.0ms) SELECT "users".* FROM "users"
727
+ Rendered users/index.html.erb within layouts/application (2.0ms)
728
+ Completed 200 OK in 13ms (Views: 13.0ms | ActiveRecord: 0.0ms)
729
+
730
+
731
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-09 11:13:50 +0400
732
+
733
+
734
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-09 11:13:50 +0400
@@ -242,3 +242,7 @@ Connecting to database specified by database.yml
242
242
  Connecting to database specified by database.yml
243
243
  Connecting to database specified by database.yml
244
244
  Connecting to database specified by database.yml
245
+ Connecting to database specified by database.yml
246
+ Connecting to database specified by database.yml
247
+ Connecting to database specified by database.yml
248
+ Connecting to database specified by database.yml
@@ -1 +1 @@
1
- 25620
1
+ 12924
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: symbolink
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,22 +9,22 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-02-11 00:00:00.000000000 Z
12
+ date: 2013-09-09 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
16
- requirement: &21461616 !ruby/object:Gem::Requirement
16
+ requirement: &26311440 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ~>
20
20
  - !ruby/object:Gem::Version
21
- version: 3.2.11
21
+ version: 4.0.0
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *21461616
24
+ version_requirements: *26311440
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: sqlite3
27
- requirement: &21461004 !ruby/object:Gem::Requirement
27
+ requirement: &26311140 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ! '>='
@@ -32,18 +32,18 @@ dependencies:
32
32
  version: '0'
33
33
  type: :development
34
34
  prerelease: false
35
- version_requirements: *21461004
35
+ version_requirements: *26311140
36
36
  - !ruby/object:Gem::Dependency
37
37
  name: rspec-rails
38
- requirement: &21460296 !ruby/object:Gem::Requirement
38
+ requirement: &26310768 !ruby/object:Gem::Requirement
39
39
  none: false
40
40
  requirements:
41
41
  - - ~>
42
42
  - !ruby/object:Gem::Version
43
- version: 2.12.0
43
+ version: 2.13.0
44
44
  type: :development
45
45
  prerelease: false
46
- version_requirements: *21460296
46
+ version_requirements: *26310768
47
47
  description: Allow to register unicode symbols and displays them as symbolic icons
48
48
  in rails application. Provides some helpers to generate the links by symbols.
49
49
  email:
@@ -129,6 +129,27 @@ files:
129
129
  - test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6
130
130
  - test/dummy/tmp/cache/assets/D67/B60/sprockets%2F5f1a0d05e77ca8b9a1fc2a47e17a8174
131
131
  - test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994
132
+ - test/dummy/tmp/cache/assets/development/sprockets/0800f54ee19cf3cee10b956fa9786799
133
+ - test/dummy/tmp/cache/assets/development/sprockets/08182cca8261fd06a959d255ab29f705
134
+ - test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705
135
+ - test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af
136
+ - test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953
137
+ - test/dummy/tmp/cache/assets/development/sprockets/371bf96e99717688ed7313a0c53f4212
138
+ - test/dummy/tmp/cache/assets/development/sprockets/4050a4e5062ab95c9f32e9b6940821ea
139
+ - test/dummy/tmp/cache/assets/development/sprockets/510da110ae528e2d22533be39ff696c5
140
+ - test/dummy/tmp/cache/assets/development/sprockets/5f1a0d05e77ca8b9a1fc2a47e17a8174
141
+ - test/dummy/tmp/cache/assets/development/sprockets/62390fb308d4400fd883040d0e648b55
142
+ - test/dummy/tmp/cache/assets/development/sprockets/6fc757c2c8329244ca95d6909865bbc2
143
+ - test/dummy/tmp/cache/assets/development/sprockets/85113935090eccc062b4bd2100153b40
144
+ - test/dummy/tmp/cache/assets/development/sprockets/87b209c0c9da28094a8d5581a21262c6
145
+ - test/dummy/tmp/cache/assets/development/sprockets/95f229f4b15b301c2a03fa1672c412e2
146
+ - test/dummy/tmp/cache/assets/development/sprockets/bc3636eca7d7ca572f59de8e48759380
147
+ - test/dummy/tmp/cache/assets/development/sprockets/cebc6db0bbb8120f430da3970b173d2f
148
+ - test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994
149
+ - test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6
150
+ - test/dummy/tmp/cache/assets/development/sprockets/e396e33dd8bab7d90ba59b893bf641b3
151
+ - test/dummy/tmp/cache/assets/development/sprockets/f56253b5f374fff1a33fbbc9881c9124
152
+ - test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655
132
153
  - test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
133
154
  - test/dummy/tmp/pids/server.pid
134
155
  homepage: https://github.com/avolochnev/symbolink
@@ -223,5 +244,26 @@ test_files:
223
244
  - test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6
224
245
  - test/dummy/tmp/cache/assets/D67/B60/sprockets%2F5f1a0d05e77ca8b9a1fc2a47e17a8174
225
246
  - test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994
247
+ - test/dummy/tmp/cache/assets/development/sprockets/0800f54ee19cf3cee10b956fa9786799
248
+ - test/dummy/tmp/cache/assets/development/sprockets/08182cca8261fd06a959d255ab29f705
249
+ - test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705
250
+ - test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af
251
+ - test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953
252
+ - test/dummy/tmp/cache/assets/development/sprockets/371bf96e99717688ed7313a0c53f4212
253
+ - test/dummy/tmp/cache/assets/development/sprockets/4050a4e5062ab95c9f32e9b6940821ea
254
+ - test/dummy/tmp/cache/assets/development/sprockets/510da110ae528e2d22533be39ff696c5
255
+ - test/dummy/tmp/cache/assets/development/sprockets/5f1a0d05e77ca8b9a1fc2a47e17a8174
256
+ - test/dummy/tmp/cache/assets/development/sprockets/62390fb308d4400fd883040d0e648b55
257
+ - test/dummy/tmp/cache/assets/development/sprockets/6fc757c2c8329244ca95d6909865bbc2
258
+ - test/dummy/tmp/cache/assets/development/sprockets/85113935090eccc062b4bd2100153b40
259
+ - test/dummy/tmp/cache/assets/development/sprockets/87b209c0c9da28094a8d5581a21262c6
260
+ - test/dummy/tmp/cache/assets/development/sprockets/95f229f4b15b301c2a03fa1672c412e2
261
+ - test/dummy/tmp/cache/assets/development/sprockets/bc3636eca7d7ca572f59de8e48759380
262
+ - test/dummy/tmp/cache/assets/development/sprockets/cebc6db0bbb8120f430da3970b173d2f
263
+ - test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994
264
+ - test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6
265
+ - test/dummy/tmp/cache/assets/development/sprockets/e396e33dd8bab7d90ba59b893bf641b3
266
+ - test/dummy/tmp/cache/assets/development/sprockets/f56253b5f374fff1a33fbbc9881c9124
267
+ - test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655
226
268
  - test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
227
269
  - test/dummy/tmp/pids/server.pid