bootstrap_toolbelt 0.0.3 → 0.0.4

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: ae6bd45361bb6b99732dcdba74ec7ce491b9a722
4
- data.tar.gz: 2f53a89ab815326f614c2b3034e47cb99afc4a77
3
+ metadata.gz: 5d9cb43e9dadeba94cd7d55e3375c629dc4f6780
4
+ data.tar.gz: a0adeb51552e7f67e4e69effb4d44c9be9a22b7f
5
5
  SHA512:
6
- metadata.gz: cb3c79edf4907dff7331d12e29c4b0c291a575f637d35ab666752c67eb3224bb6ebebc3e955a7f0aec1dd5da8b3484ae4c8a6eda7d522a1386a8b9deeae704ba
7
- data.tar.gz: 52f0dbefb600d20e22251ba9fac3146062130c60d27718fe6faca155c5c6526b006c41c863a70006c91ad0f26e97157a5f42cd1b25a164bc35ff0614aa5a8c5c
6
+ metadata.gz: 6ceb6a0d50b60df49775ae136026730991fe8097ef6f4d6bcac654d1b11bafaf30edb8500c5b1c3461fd3944b508a50cbf70dbb6b7a086385f9b270e1b42b27b
7
+ data.tar.gz: 8fd0811043421065ec52c8f7a1161b03e109dc8ac7d54d35794ce12812f041ac66718ec5c5169b463dc9a82bb8af04254ad4a3adf4a3a2fece523b7c03dab691
@@ -1,4 +1,4 @@
1
- module Navigation
1
+ module NavigationHelper
2
2
  def nav_link(text, link_path, options = {})
3
3
  class_name = current_page?(link_path) ? options.fetch(:class_name, 'active') : ''
4
4
 
@@ -1,4 +1,5 @@
1
1
  module BootstrapToolbelt
2
2
  class Engine < ::Rails::Engine
3
+ config.autoload_paths += Dir["#{config.root}/app/controllers/concerns/**"]
3
4
  end
4
5
  end
@@ -1,3 +1,3 @@
1
1
  module BootstrapToolbelt
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
@@ -2,4 +2,5 @@ class ApplicationController < ActionController::Base
2
2
  # Prevent CSRF attacks by raising an exception.
3
3
  # For APIs, you may want to use :null_session instead.
4
4
  protect_from_forgery with: :exception
5
+ include FlashMessages
5
6
  end
@@ -24,7 +24,7 @@ class UsersController < ApplicationController
24
24
  @user = User.new(user_params)
25
25
 
26
26
  if @user.save
27
- redirect_to @user, notice: 'User was successfully created.'
27
+ redirect_to @user, notice: create_message('users')
28
28
  else
29
29
  render :new
30
30
  end
@@ -21,3 +21,5 @@
21
21
 
22
22
  en:
23
23
  hello: "Hello world"
24
+ users:
25
+ one: User
Binary file
@@ -496,3 +496,253 @@ ActionController::RoutingError (No route matches [GET] "/lists"):
496
496
  Rendered /usr/local/opt/rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms)
497
497
  Rendered /usr/local/opt/rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
498
498
  Rendered /usr/local/opt/rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (62.3ms)
499
+
500
+
501
+ Started GET "/" for 127.0.0.1 at 2015-03-05 14:15:03 +0100
502
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
503
+
504
+ ActionController::RoutingError (Couldn't find NavigationHelper, expected it to be defined in helpers/navigation_helper.rb):
505
+ actionpack (4.2.0) lib/abstract_controller/helpers.rb:162:in `rescue in block in modules_for_helpers'
506
+ actionpack (4.2.0) lib/abstract_controller/helpers.rb:155:in `block in modules_for_helpers'
507
+ actionpack (4.2.0) lib/abstract_controller/helpers.rb:144:in `map!'
508
+ actionpack (4.2.0) lib/abstract_controller/helpers.rb:144:in `modules_for_helpers'
509
+ actionpack (4.2.0) lib/action_controller/metal/helpers.rb:93:in `modules_for_helpers'
510
+ actionpack (4.2.0) lib/abstract_controller/helpers.rb:108:in `helper'
511
+ actionpack (4.2.0) lib/action_controller/railties/helpers.rb:17:in `inherited'
512
+ railties (4.2.0) lib/rails/application_controller.rb:1:in `<top (required)>'
513
+ activesupport (4.2.0) lib/active_support/dependencies.rb:274:in `require'
514
+ activesupport (4.2.0) lib/active_support/dependencies.rb:274:in `block in require'
515
+ activesupport (4.2.0) lib/active_support/dependencies.rb:240:in `load_dependency'
516
+ activesupport (4.2.0) lib/active_support/dependencies.rb:274:in `require'
517
+ railties (4.2.0) lib/rails/welcome_controller.rb:1:in `<top (required)>'
518
+ activesupport (4.2.0) lib/active_support/inflector/methods.rb:263:in `const_get'
519
+ activesupport (4.2.0) lib/active_support/inflector/methods.rb:263:in `block in constantize'
520
+ activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `each'
521
+ activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `inject'
522
+ activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `constantize'
523
+ activesupport (4.2.0) lib/active_support/dependencies.rb:566:in `get'
524
+ activesupport (4.2.0) lib/active_support/dependencies.rb:597:in `constantize'
525
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
526
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:59:in `controller'
527
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:38:in `serve'
528
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
529
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
530
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
531
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
532
+ rack (1.6.0) lib/rack/etag.rb:24:in `call'
533
+ rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
534
+ rack (1.6.0) lib/rack/head.rb:13:in `call'
535
+ actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
536
+ actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
537
+ rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
538
+ rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
539
+ actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
540
+ activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
541
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
542
+ activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
543
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
544
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
545
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
546
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
547
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
548
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
549
+ actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
550
+ actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
551
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
552
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
553
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
554
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
555
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
556
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
557
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
558
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
559
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
560
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
561
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
562
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
563
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
564
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
565
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
566
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
567
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
568
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
569
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
570
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
571
+ /usr/local/opt/rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
572
+ /usr/local/opt/rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
573
+ /usr/local/opt/rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
574
+
575
+
576
+ Rendered /usr/local/opt/rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms)
577
+ Rendered /usr/local/opt/rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms)
578
+ Rendered /usr/local/opt/rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (8.3ms)
579
+ Rendered /usr/local/opt/rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (10.5ms)
580
+ Rendered /usr/local/opt/rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (92.8ms)
581
+
582
+
583
+ Started GET "/" for 127.0.0.1 at 2015-03-05 14:15:30 +0100
584
+ Processing by Rails::WelcomeController#index as HTML
585
+ Rendered /usr/local/opt/rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/railties-4.2.0/lib/rails/templates/rails/welcome/index.html.erb (0.7ms)
586
+ Completed 200 OK in 12ms (Views: 11.7ms | ActiveRecord: 0.0ms)
587
+
588
+
589
+ Started GET "/users" for 127.0.0.1 at 2015-03-05 14:15:35 +0100
590
+ Processing by UsersController#index as HTML
591
+ User Load (0.6ms) SELECT "users".* FROM "users"
592
+ Rendered users/index.html.erb within layouts/application (6.2ms)
593
+ Rendered /Users/kristian/Code/bootstrap_toolbelt/app/views/flash_helper/_flash.html.erb (0.3ms)
594
+ Completed 200 OK in 44ms (Views: 41.7ms | ActiveRecord: 0.9ms)
595
+
596
+
597
+ Started GET "/assets/users-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-05 14:15:35 +0100
598
+
599
+
600
+ Started GET "/assets/scaffold-ca007d4d73fdd54c8e9c2a16b1d732f9.css?body=1" for 127.0.0.1 at 2015-03-05 14:15:35 +0100
601
+
602
+
603
+ Started GET "/assets/application-bcdad396ad4dd02237c45c691ac058eb.css?body=1" for 127.0.0.1 at 2015-03-05 14:15:35 +0100
604
+
605
+
606
+ Started GET "/assets/users-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-05 14:15:35 +0100
607
+
608
+
609
+ Started GET "/assets/application-9dd4861a92e4f9a660455c3058cf3a14.js?body=1" for 127.0.0.1 at 2015-03-05 14:15:35 +0100
610
+
611
+
612
+ Started GET "/users/new" for 127.0.0.1 at 2015-03-05 14:15:37 +0100
613
+ Processing by UsersController#new as HTML
614
+ Rendered users/_form.html.erb (21.1ms)
615
+ Rendered users/new.html.erb within layouts/application (22.6ms)
616
+ Rendered /Users/kristian/Code/bootstrap_toolbelt/app/views/flash_helper/_flash.html.erb (0.1ms)
617
+ Completed 200 OK in 40ms (Views: 39.5ms | ActiveRecord: 0.0ms)
618
+
619
+
620
+ Started GET "/assets/scaffold-ca007d4d73fdd54c8e9c2a16b1d732f9.css?body=1" for 127.0.0.1 at 2015-03-05 14:15:37 +0100
621
+
622
+
623
+ Started GET "/assets/users-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-05 14:15:37 +0100
624
+
625
+
626
+ Started GET "/assets/application-bcdad396ad4dd02237c45c691ac058eb.css?body=1" for 127.0.0.1 at 2015-03-05 14:15:37 +0100
627
+
628
+
629
+ Started GET "/assets/users-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-05 14:15:37 +0100
630
+
631
+
632
+ Started GET "/assets/application-9dd4861a92e4f9a660455c3058cf3a14.js?body=1" for 127.0.0.1 at 2015-03-05 14:15:37 +0100
633
+
634
+
635
+ Started POST "/users" for 127.0.0.1 at 2015-03-05 14:15:40 +0100
636
+ Processing by UsersController#create as HTML
637
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"0P50uvgX133xNbMx+fQNC1jm20L+l9w+9eHrkduC8xZmzhaCd1cMXN4sxs6weKGx52Y5KBkbEeNDLLGWjvZ78Q==", "user"=>{"name"=>"asdfasdf"}, "commit"=>"Create User"}
638
+  (0.1ms) begin transaction
639
+ SQL (0.9ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "asdfasdf"], ["created_at", "2015-03-05 13:15:40.289192"], ["updated_at", "2015-03-05 13:15:40.289192"]]
640
+  (1.2ms) commit transaction
641
+ Redirected to http://localhost:3000/users/4
642
+ Completed 302 Found in 9ms (ActiveRecord: 2.2ms)
643
+
644
+
645
+ Started GET "/users/4" for 127.0.0.1 at 2015-03-05 14:15:40 +0100
646
+ Processing by UsersController#show as HTML
647
+ Parameters: {"id"=>"4"}
648
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 4]]
649
+ Rendered users/show.html.erb within layouts/application (0.9ms)
650
+ Rendered /Users/kristian/Code/bootstrap_toolbelt/app/views/shared/_flash.html.erb (0.5ms)
651
+ Rendered /Users/kristian/Code/bootstrap_toolbelt/app/views/flash_helper/_flash.html.erb (1.9ms)
652
+ Completed 200 OK in 30ms (Views: 19.9ms | ActiveRecord: 0.2ms)
653
+
654
+
655
+ Started GET "/assets/application-bcdad396ad4dd02237c45c691ac058eb.css?body=1" for 127.0.0.1 at 2015-03-05 14:15:40 +0100
656
+
657
+
658
+ Started GET "/assets/scaffold-ca007d4d73fdd54c8e9c2a16b1d732f9.css?body=1" for 127.0.0.1 at 2015-03-05 14:15:40 +0100
659
+
660
+
661
+ Started GET "/assets/users-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-05 14:15:40 +0100
662
+
663
+
664
+ Started GET "/assets/users-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-05 14:15:40 +0100
665
+
666
+
667
+ Started GET "/assets/application-9dd4861a92e4f9a660455c3058cf3a14.js?body=1" for 127.0.0.1 at 2015-03-05 14:15:40 +0100
668
+
669
+
670
+ Started GET "/users" for 127.0.0.1 at 2015-03-05 14:15:57 +0100
671
+ Processing by UsersController#index as HTML
672
+ User Load (0.2ms) SELECT "users".* FROM "users"
673
+ Rendered users/index.html.erb within layouts/application (4.2ms)
674
+ Rendered /Users/kristian/Code/bootstrap_toolbelt/app/views/flash_helper/_flash.html.erb (0.0ms)
675
+ Completed 200 OK in 28ms (Views: 26.1ms | ActiveRecord: 0.5ms)
676
+
677
+
678
+ Started GET "/assets/scaffold-ca007d4d73fdd54c8e9c2a16b1d732f9.css?body=1" for 127.0.0.1 at 2015-03-05 14:15:57 +0100
679
+
680
+
681
+ Started GET "/assets/application-bcdad396ad4dd02237c45c691ac058eb.css?body=1" for 127.0.0.1 at 2015-03-05 14:15:57 +0100
682
+
683
+
684
+ Started GET "/assets/users-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-05 14:15:57 +0100
685
+
686
+
687
+ Started GET "/assets/application-9dd4861a92e4f9a660455c3058cf3a14.js?body=1" for 127.0.0.1 at 2015-03-05 14:15:57 +0100
688
+
689
+
690
+ Started GET "/assets/users-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-05 14:15:57 +0100
691
+
692
+
693
+ Started GET "/users/new" for 127.0.0.1 at 2015-03-05 14:15:59 +0100
694
+ Processing by UsersController#new as HTML
695
+ Rendered users/_form.html.erb (6.5ms)
696
+ Rendered users/new.html.erb within layouts/application (7.7ms)
697
+ Rendered /Users/kristian/Code/bootstrap_toolbelt/app/views/flash_helper/_flash.html.erb (0.1ms)
698
+ Completed 200 OK in 30ms (Views: 29.2ms | ActiveRecord: 0.0ms)
699
+
700
+
701
+ Started GET "/assets/users-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-05 14:15:59 +0100
702
+
703
+
704
+ Started GET "/assets/application-bcdad396ad4dd02237c45c691ac058eb.css?body=1" for 127.0.0.1 at 2015-03-05 14:15:59 +0100
705
+
706
+
707
+ Started GET "/assets/application-9dd4861a92e4f9a660455c3058cf3a14.js?body=1" for 127.0.0.1 at 2015-03-05 14:15:59 +0100
708
+
709
+
710
+ Started GET "/assets/scaffold-ca007d4d73fdd54c8e9c2a16b1d732f9.css?body=1" for 127.0.0.1 at 2015-03-05 14:15:59 +0100
711
+
712
+
713
+ Started GET "/assets/users-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-05 14:15:59 +0100
714
+
715
+
716
+ Started POST "/users" for 127.0.0.1 at 2015-03-05 14:16:01 +0100
717
+ Processing by UsersController#create as HTML
718
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"/QOZ76y5u9B9Ye+8yAnmU6KiCL+GYDkgBWpthLt0T3pLM/vXI/lg8VJ4mkOBhUrpHSLq1WHs9P2zpzeD7gDHnQ==", "user"=>{"name"=>"asdf"}, "commit"=>"Create User"}
719
+  (0.1ms) begin transaction
720
+ SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "asdf"], ["created_at", "2015-03-05 13:16:01.830531"], ["updated_at", "2015-03-05 13:16:01.830531"]]
721
+  (8.0ms) commit transaction
722
+ Redirected to http://localhost:3000/users/5
723
+ Completed 302 Found in 11ms (ActiveRecord: 8.3ms)
724
+
725
+
726
+ Started GET "/users/5" for 127.0.0.1 at 2015-03-05 14:16:01 +0100
727
+ Processing by UsersController#show as HTML
728
+ Parameters: {"id"=>"5"}
729
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 5]]
730
+ Rendered users/show.html.erb within layouts/application (1.5ms)
731
+ Rendered /Users/kristian/Code/bootstrap_toolbelt/app/views/shared/_flash.html.erb (0.5ms)
732
+ Rendered /Users/kristian/Code/bootstrap_toolbelt/app/views/flash_helper/_flash.html.erb (2.2ms)
733
+ Completed 200 OK in 22ms (Views: 20.5ms | ActiveRecord: 0.2ms)
734
+
735
+
736
+ Started GET "/assets/scaffold-ca007d4d73fdd54c8e9c2a16b1d732f9.css?body=1" for 127.0.0.1 at 2015-03-05 14:16:01 +0100
737
+
738
+
739
+ Started GET "/assets/application-bcdad396ad4dd02237c45c691ac058eb.css?body=1" for 127.0.0.1 at 2015-03-05 14:16:01 +0100
740
+
741
+
742
+ Started GET "/assets/users-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-05 14:16:01 +0100
743
+
744
+
745
+ Started GET "/assets/users-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-05 14:16:01 +0100
746
+
747
+
748
+ Started GET "/assets/application-9dd4861a92e4f9a660455c3058cf3a14.js?body=1" for 127.0.0.1 at 2015-03-05 14:16:01 +0100
@@ -0,0 +1 @@
1
+ 51725
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bootstrap_toolbelt
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kristian Rasmussen
@@ -129,6 +129,7 @@ files:
129
129
  - test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6
130
130
  - test/dummy/tmp/cache/assets/development/sprockets/f56253b5f374fff1a33fbbc9881c9124
131
131
  - test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655
132
+ - test/dummy/tmp/pids/server.pid
132
133
  - test/integration/navigation_test.rb
133
134
  - test/test_helper.rb
134
135
  homepage: http://github.com/iamkristian/bootstrap_toolbelt
@@ -224,5 +225,6 @@ test_files:
224
225
  - test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6
225
226
  - test/dummy/tmp/cache/assets/development/sprockets/f56253b5f374fff1a33fbbc9881c9124
226
227
  - test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655
228
+ - test/dummy/tmp/pids/server.pid
227
229
  - test/integration/navigation_test.rb
228
230
  - test/test_helper.rb