missing_i18n 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- YmIwNDA0MmM3ODk5YTY2NDk2YmFiMDEyY2I5YzQyYjY5ZWM3ZDE3Yw==
4
+ NTQ3MzcxYjVlOWJiZmM1ZGNmMDJmMGNiMTllYzM4NDlhZTdiOGYxNw==
5
5
  data.tar.gz: !binary |-
6
- MjU4YjNjMGY0ZTBkYTM5MGE5YjExZjU3ZjJiMTgxMDJjM2MxZGVhYQ==
6
+ MzNhNmRiZjljZDUwNmE0ODI1NTdlOGEyYjA2ODU4ODE2YTBhOWIzYQ==
7
7
  !binary "U0hBNTEy":
8
8
  metadata.gz: !binary |-
9
- NGY3MDM0MjAzZWQwNzUyMGQxYjEyNjY1ZDhmYWViMTAzYmYwMmIzZTFmYmFh
10
- MGI1NWU3Y2NjYTRiODQ5M2YwYWY1Njc0YTg1MWMyY2FlMzIyYjNkODg3ZTg5
11
- MDY0YjNkNmJhZmJhNDlkNmYwMjlhNDFhODBkYTM5YTE1MDBkNzA=
9
+ NGQ3MGQ2MjU2N2FmOWY0YWQ3ZTE0ZjExYzUwMjZmMDU3OWQ0YmRiYTUzNDM4
10
+ MTBlNmE4MWE4ZTcwMDFhYWFiMzFjODNjY2E2Y2ZjMjAxNjQ4MGRhODI1M2Mw
11
+ MTY0MzE0NTI1ZjE2NWY0MzI3Y2NiN2JkNTMxYjc2NTc2YjRlZmU=
12
12
  data.tar.gz: !binary |-
13
- YTE3M2Q2OWFkMTJhMjIxYmU3N2I3Mzg0ZmNmZTAyMGE1YzY3OThkMmY1Yzg2
14
- NjgxODU2MmQyMWU1NDUxZjY3MTE5OTVjNGY3ZWYzMmJhZWMwOTY2NjFiOTQ2
15
- N2Y4YjE5N2VkNDkwOWU5OGNmY2RmODc2ZWIwNDFiZGNjYmIyODM=
13
+ NDVjODYyOGQ4YzE1MTAxZmZmNjI3YTU5MDg3MzMxNjJiZjNmZjAzMTJiNzg2
14
+ MGE2MDIzMmY2NDMyMDQ1NjU1Y2EzYzhhZGVmZmIxMTJhZTJjOTg5MGYzZmJj
15
+ NzhjNzg1NDE2MWViOTI3YmVhMjk5OWRkNDU1NTQyNmVlZDc0YjA=
data/README.md CHANGED
@@ -16,6 +16,9 @@ On your `config/routes.rb`:
16
16
  mount MissingI18n::Engine, :path => '/missing_i18n'
17
17
  end
18
18
 
19
+ After that, you can go to [http://localhost:3000/missing_i18n](http://localhost:3000/missing_i18n) to get a list of all the locales and their
20
+ missing keys.
21
+
19
22
  ## Customization & scope filtering
20
23
 
21
24
  You can override MissingI18n' only view by creating any of the following files:
@@ -58,7 +61,7 @@ However, you can try the dummy app by executing:
58
61
  cd test/dummy
59
62
  rails s
60
63
 
61
- If you then go to http://localhost:3000, you should see some differences between the es and en locales. Try modifying the files inside `test/dummy/config/locales` and
64
+ If you then go to [http://localhost:3000](http://localhost:3000), you should see some differences between the es and en locales. Try modifying the files inside `test/dummy/config/locales` and
62
65
  refreshing the page.
63
66
 
64
67
  Feel free to send me pull requests with tests if you want!
@@ -1,5 +1,5 @@
1
1
  module MissingI18n
2
- class LocalesController < ApplicationController
2
+ class LocalesController < MissingI18n::ApplicationController
3
3
  def index
4
4
  @locales = Locale.all
5
5
  end
@@ -1,3 +1,3 @@
1
1
  module MissingI18n
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
@@ -3700,3 +3700,387 @@ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
3700
3700
 
3701
3701
  Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:40:58 +0200
3702
3702
  Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
3703
+
3704
+
3705
+ Started GET "/missing_i18n/" for 127.0.0.1 at 2013-05-07 23:50:25 +0200
3706
+ Processing by MissingI18n::LocalesController#index as HTML
3707
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/index.html.erb within layouts/missing_i18n/application (1.5ms)
3708
+ Completed 200 OK in 16ms (Views: 16.4ms | ActiveRecord: 0.0ms)
3709
+
3710
+
3711
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:50:25 +0200
3712
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
3713
+
3714
+
3715
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:50:25 +0200
3716
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
3717
+
3718
+
3719
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:50:25 +0200
3720
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
3721
+
3722
+
3723
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:50:25 +0200
3724
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
3725
+
3726
+
3727
+ Started GET "/missing_i18n/en" for 127.0.0.1 at 2013-05-07 23:50:25 +0200
3728
+ Processing by MissingI18n::LocalesController#show as HTML
3729
+ Parameters: {"id"=>"en"}
3730
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.6ms)
3731
+ Completed 200 OK in 44ms (Views: 44.2ms | ActiveRecord: 0.0ms)
3732
+
3733
+
3734
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:50:25 +0200
3735
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
3736
+
3737
+
3738
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:50:25 +0200
3739
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
3740
+
3741
+
3742
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:50:25 +0200
3743
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
3744
+
3745
+
3746
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:50:25 +0200
3747
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
3748
+
3749
+
3750
+ Started GET "/missing_i18n/es" for 127.0.0.1 at 2013-05-07 23:50:27 +0200
3751
+ Processing by MissingI18n::LocalesController#show as HTML
3752
+ Parameters: {"id"=>"es"}
3753
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (1.9ms)
3754
+ Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.0ms)
3755
+
3756
+
3757
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:50:27 +0200
3758
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
3759
+
3760
+
3761
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:50:27 +0200
3762
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
3763
+
3764
+
3765
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:50:27 +0200
3766
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
3767
+
3768
+
3769
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:50:27 +0200
3770
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
3771
+
3772
+
3773
+ Started GET "/missing_i18n/en" for 127.0.0.1 at 2013-05-07 23:50:45 +0200
3774
+ Processing by MissingI18n::LocalesController#show as HTML
3775
+ Parameters: {"id"=>"en"}
3776
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.7ms)
3777
+ Completed 200 OK in 39ms (Views: 38.6ms | ActiveRecord: 0.0ms)
3778
+
3779
+
3780
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:50:45 +0200
3781
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
3782
+
3783
+
3784
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:50:45 +0200
3785
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
3786
+
3787
+
3788
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:50:45 +0200
3789
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
3790
+
3791
+
3792
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:50:45 +0200
3793
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
3794
+ Connecting to database specified by database.yml
3795
+
3796
+
3797
+ Started GET "/" for 127.0.0.1 at 2013-05-13 18:58:52 +0200
3798
+
3799
+
3800
+ Started GET "/missing_i18n" for 127.0.0.1 at 2013-05-13 18:58:52 +0200
3801
+ Processing by MissingI18n::LocalesController#index as HTML
3802
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/index.html.erb within layouts/application (5.7ms)
3803
+ Completed 200 OK in 22ms (Views: 21.3ms | ActiveRecord: 0.0ms)
3804
+
3805
+
3806
+ Started GET "/missing_i18n/en" for 127.0.0.1 at 2013-05-13 18:58:52 +0200
3807
+ Processing by MissingI18n::LocalesController#show as HTML
3808
+ Parameters: {"id"=>"en"}
3809
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/application (60.7ms)
3810
+ Completed 200 OK in 68ms (Views: 66.7ms | ActiveRecord: 0.0ms)
3811
+ Connecting to database specified by database.yml
3812
+
3813
+
3814
+ Started GET "/missing_i18n" for 127.0.0.1 at 2013-05-13 19:00:28 +0200
3815
+ Processing by MissingI18n::LocalesController#index as HTML
3816
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/index.html.erb within layouts/missing_i18n/application (6.3ms)
3817
+ Completed 200 OK in 89ms (Views: 88.5ms | ActiveRecord: 0.0ms)
3818
+
3819
+
3820
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-13 19:00:28 +0200
3821
+ Served asset /bootstrap.min.css - 304 Not Modified (12ms)
3822
+
3823
+
3824
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-13 19:00:28 +0200
3825
+ Served asset /missing_i18n/application.css - 304 Not Modified (5ms)
3826
+
3827
+
3828
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-13 19:00:28 +0200
3829
+ Served asset /missing_i18n/application.js - 304 Not Modified (6ms)
3830
+
3831
+
3832
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-13 19:00:28 +0200
3833
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (4ms)
3834
+
3835
+
3836
+ Started GET "/missing_i18n/en" for 127.0.0.1 at 2013-05-13 19:00:28 +0200
3837
+ Processing by MissingI18n::LocalesController#show as HTML
3838
+ Parameters: {"id"=>"en"}
3839
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (61.1ms)
3840
+ Completed 200 OK in 88ms (Views: 87.2ms | ActiveRecord: 0.0ms)
3841
+
3842
+
3843
+ Started GET "/assets/glyphicons-halflings-white.png" for 127.0.0.1 at 2013-05-13 19:00:29 +0200
3844
+ Served asset /glyphicons-halflings-white.png - 304 Not Modified (6ms)
3845
+
3846
+
3847
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-13 19:00:29 +0200
3848
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
3849
+
3850
+
3851
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-13 19:00:29 +0200
3852
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
3853
+
3854
+
3855
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-13 19:00:29 +0200
3856
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
3857
+
3858
+
3859
+ Started GET "/missing_i18n/es" for 127.0.0.1 at 2013-05-13 19:00:31 +0200
3860
+ Processing by MissingI18n::LocalesController#show as HTML
3861
+ Parameters: {"id"=>"es"}
3862
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.1ms)
3863
+ Completed 200 OK in 46ms (Views: 46.1ms | ActiveRecord: 0.0ms)
3864
+
3865
+
3866
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-13 19:00:32 +0200
3867
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
3868
+
3869
+
3870
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-13 19:00:32 +0200
3871
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
3872
+
3873
+
3874
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-13 19:00:32 +0200
3875
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
3876
+
3877
+
3878
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-13 19:00:32 +0200
3879
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
3880
+
3881
+
3882
+ Started GET "/missing_i18n/en" for 127.0.0.1 at 2013-05-13 19:00:32 +0200
3883
+ Processing by MissingI18n::LocalesController#show as HTML
3884
+ Parameters: {"id"=>"en"}
3885
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.2ms)
3886
+ Completed 200 OK in 17ms (Views: 16.9ms | ActiveRecord: 0.0ms)
3887
+
3888
+
3889
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-13 19:00:33 +0200
3890
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
3891
+
3892
+
3893
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-13 19:00:33 +0200
3894
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
3895
+
3896
+
3897
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-13 19:00:33 +0200
3898
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
3899
+
3900
+
3901
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-13 19:00:33 +0200
3902
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
3903
+
3904
+
3905
+ Started GET "/missing_i18n/es" for 127.0.0.1 at 2013-05-13 19:00:33 +0200
3906
+ Processing by MissingI18n::LocalesController#show as HTML
3907
+ Parameters: {"id"=>"es"}
3908
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (1.9ms)
3909
+ Completed 200 OK in 16ms (Views: 16.3ms | ActiveRecord: 0.0ms)
3910
+
3911
+
3912
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-13 19:00:33 +0200
3913
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
3914
+
3915
+
3916
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-13 19:00:33 +0200
3917
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
3918
+
3919
+
3920
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-13 19:00:33 +0200
3921
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
3922
+
3923
+
3924
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-13 19:00:33 +0200
3925
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
3926
+
3927
+
3928
+ Started GET "/missing_i18n/en" for 127.0.0.1 at 2013-05-13 19:00:34 +0200
3929
+ Processing by MissingI18n::LocalesController#show as HTML
3930
+ Parameters: {"id"=>"en"}
3931
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.0ms)
3932
+ Completed 200 OK in 17ms (Views: 16.9ms | ActiveRecord: 0.0ms)
3933
+
3934
+
3935
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-13 19:00:34 +0200
3936
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
3937
+
3938
+
3939
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-13 19:00:34 +0200
3940
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
3941
+
3942
+
3943
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-13 19:00:34 +0200
3944
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
3945
+
3946
+
3947
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-13 19:00:34 +0200
3948
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
3949
+
3950
+
3951
+ Started GET "/missing_i18n/es" for 127.0.0.1 at 2013-05-13 19:00:35 +0200
3952
+ Processing by MissingI18n::LocalesController#show as HTML
3953
+ Parameters: {"id"=>"es"}
3954
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.1ms)
3955
+ Completed 200 OK in 17ms (Views: 17.0ms | ActiveRecord: 0.0ms)
3956
+
3957
+
3958
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-13 19:00:35 +0200
3959
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
3960
+
3961
+
3962
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-13 19:00:35 +0200
3963
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
3964
+
3965
+
3966
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-13 19:00:35 +0200
3967
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
3968
+
3969
+
3970
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-13 19:00:35 +0200
3971
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
3972
+
3973
+
3974
+ Started GET "/missing_i18n/en" for 127.0.0.1 at 2013-05-13 19:00:36 +0200
3975
+ Processing by MissingI18n::LocalesController#show as HTML
3976
+ Parameters: {"id"=>"en"}
3977
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.2ms)
3978
+ Completed 200 OK in 51ms (Views: 50.3ms | ActiveRecord: 0.0ms)
3979
+
3980
+
3981
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-13 19:00:37 +0200
3982
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
3983
+
3984
+
3985
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-13 19:00:37 +0200
3986
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
3987
+
3988
+
3989
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-13 19:00:37 +0200
3990
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
3991
+
3992
+
3993
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-13 19:00:37 +0200
3994
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
3995
+
3996
+
3997
+ Started GET "/missing_i18n/es" for 127.0.0.1 at 2013-05-13 19:00:37 +0200
3998
+ Processing by MissingI18n::LocalesController#show as HTML
3999
+ Parameters: {"id"=>"es"}
4000
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (1.9ms)
4001
+ Completed 200 OK in 18ms (Views: 17.8ms | ActiveRecord: 0.0ms)
4002
+
4003
+
4004
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-13 19:00:37 +0200
4005
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
4006
+
4007
+
4008
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-13 19:00:37 +0200
4009
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
4010
+
4011
+
4012
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-13 19:00:37 +0200
4013
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
4014
+
4015
+
4016
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-13 19:00:38 +0200
4017
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
4018
+
4019
+
4020
+ Started GET "/missing_i18n/en" for 127.0.0.1 at 2013-05-13 19:00:38 +0200
4021
+ Processing by MissingI18n::LocalesController#show as HTML
4022
+ Parameters: {"id"=>"en"}
4023
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.2ms)
4024
+ Completed 200 OK in 21ms (Views: 20.3ms | ActiveRecord: 0.0ms)
4025
+
4026
+
4027
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-13 19:00:38 +0200
4028
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
4029
+
4030
+
4031
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-13 19:00:38 +0200
4032
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
4033
+
4034
+
4035
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-13 19:00:38 +0200
4036
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
4037
+
4038
+
4039
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-13 19:00:38 +0200
4040
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
4041
+
4042
+
4043
+ Started GET "/missing_i18n/es" for 127.0.0.1 at 2013-05-13 19:00:39 +0200
4044
+ Processing by MissingI18n::LocalesController#show as HTML
4045
+ Parameters: {"id"=>"es"}
4046
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.0ms)
4047
+ Completed 200 OK in 17ms (Views: 17.0ms | ActiveRecord: 0.0ms)
4048
+
4049
+
4050
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-13 19:00:39 +0200
4051
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
4052
+
4053
+
4054
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-13 19:00:39 +0200
4055
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
4056
+
4057
+
4058
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-13 19:00:39 +0200
4059
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
4060
+
4061
+
4062
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-13 19:00:39 +0200
4063
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
4064
+
4065
+
4066
+ Started GET "/missing_i18n/en" for 127.0.0.1 at 2013-05-13 19:00:40 +0200
4067
+ Processing by MissingI18n::LocalesController#show as HTML
4068
+ Parameters: {"id"=>"en"}
4069
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.1ms)
4070
+ Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.0ms)
4071
+
4072
+
4073
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-13 19:00:41 +0200
4074
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
4075
+
4076
+
4077
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-13 19:00:41 +0200
4078
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
4079
+
4080
+
4081
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-13 19:00:41 +0200
4082
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
4083
+
4084
+
4085
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-13 19:00:41 +0200
4086
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: missing_i18n
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Enrique Garcia Cota
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-05-07 00:00:00.000000000 Z
11
+ date: 2013-05-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -125,7 +125,6 @@ files:
125
125
  - test/dummy/tmp/cache/assets/DA2/EB0/sprockets%2Fcb0b147573bea528d5de16ce97c65a7f
126
126
  - test/dummy/tmp/cache/assets/DA5/7B0/sprockets%2F3cb24755d374c7f515eef2bfd548cde2
127
127
  - test/dummy/tmp/cache/assets/DC9/9F0/sprockets%2Fb6cf7b756a0d77db1e530ad74072dbef
128
- - test/dummy/tmp/pids/server.pid
129
128
  - test/integration/navigation_test.rb
130
129
  - test/missing_i18n_test.rb
131
130
  - test/test_helper.rb
@@ -211,7 +210,6 @@ test_files:
211
210
  - test/dummy/tmp/cache/assets/DA2/EB0/sprockets%2Fcb0b147573bea528d5de16ce97c65a7f
212
211
  - test/dummy/tmp/cache/assets/DA5/7B0/sprockets%2F3cb24755d374c7f515eef2bfd548cde2
213
212
  - test/dummy/tmp/cache/assets/DC9/9F0/sprockets%2Fb6cf7b756a0d77db1e530ad74072dbef
214
- - test/dummy/tmp/pids/server.pid
215
213
  - test/integration/navigation_test.rb
216
214
  - test/missing_i18n_test.rb
217
215
  - test/test_helper.rb
@@ -1 +0,0 @@
1
- 27976