locales_panel 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (65) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +3 -0
  4. data/Rakefile +35 -0
  5. data/app/controllers/locales_controller.rb +15 -0
  6. data/app/views/locales/edit.html.erb +8 -0
  7. data/config/routes.rb +3 -0
  8. data/lib/locales_panel/engine.rb +4 -0
  9. data/lib/locales_panel/version.rb +3 -0
  10. data/lib/locales_panel.rb +4 -0
  11. data/lib/tasks/locales_panel_tasks.rake +4 -0
  12. data/test/dummy/README.rdoc +28 -0
  13. data/test/dummy/Rakefile +6 -0
  14. data/test/dummy/app/assets/javascripts/application.js +13 -0
  15. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  16. data/test/dummy/app/controllers/application_controller.rb +5 -0
  17. data/test/dummy/app/helpers/application_helper.rb +2 -0
  18. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  19. data/test/dummy/bin/bundle +3 -0
  20. data/test/dummy/bin/rails +4 -0
  21. data/test/dummy/bin/rake +4 -0
  22. data/test/dummy/bin/setup +29 -0
  23. data/test/dummy/config/application.rb +29 -0
  24. data/test/dummy/config/boot.rb +5 -0
  25. data/test/dummy/config/environment.rb +5 -0
  26. data/test/dummy/config/environments/development.rb +38 -0
  27. data/test/dummy/config/environments/production.rb +76 -0
  28. data/test/dummy/config/environments/test.rb +42 -0
  29. data/test/dummy/config/initializers/assets.rb +11 -0
  30. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  31. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  32. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  33. data/test/dummy/config/initializers/inflections.rb +16 -0
  34. data/test/dummy/config/initializers/mime_types.rb +4 -0
  35. data/test/dummy/config/initializers/session_store.rb +3 -0
  36. data/test/dummy/config/initializers/wrap_parameters.rb +9 -0
  37. data/test/dummy/config/locales/en.yml +2 -0
  38. data/test/dummy/config/locales/pl.yml +2 -0
  39. data/test/dummy/config/routes.rb +56 -0
  40. data/test/dummy/config/secrets.yml +22 -0
  41. data/test/dummy/config.ru +4 -0
  42. data/test/dummy/log/development.log +787 -0
  43. data/test/dummy/log/test.log +323 -0
  44. data/test/dummy/public/404.html +67 -0
  45. data/test/dummy/public/422.html +67 -0
  46. data/test/dummy/public/500.html +66 -0
  47. data/test/dummy/public/favicon.ico +0 -0
  48. data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  49. data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  50. data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  51. data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  52. data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  53. data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  54. data/test/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  55. data/test/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  56. data/test/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  57. data/test/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  58. data/test/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  59. data/test/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  60. data/test/dummy/tmp/pids/server.pid +1 -0
  61. data/test/integration/locales/en.yml +2 -0
  62. data/test/integration/locales/pl.yml +2 -0
  63. data/test/integration/locales_test.rb +33 -0
  64. data/test/test_helper.rb +18 -0
  65. metadata +174 -0
metadata ADDED
@@ -0,0 +1,174 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: locales_panel
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Maciej Kasprzyk
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-04-02 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 4.0.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: 4.0.0
27
+ description: Edit yaml translations in browser
28
+ email:
29
+ - kapustka.maciek@gmail.com
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - MIT-LICENSE
35
+ - README.rdoc
36
+ - Rakefile
37
+ - app/controllers/locales_controller.rb
38
+ - app/views/locales/edit.html.erb
39
+ - config/routes.rb
40
+ - lib/locales_panel.rb
41
+ - lib/locales_panel/engine.rb
42
+ - lib/locales_panel/version.rb
43
+ - lib/tasks/locales_panel_tasks.rake
44
+ - test/dummy/README.rdoc
45
+ - test/dummy/Rakefile
46
+ - test/dummy/app/assets/javascripts/application.js
47
+ - test/dummy/app/assets/stylesheets/application.css
48
+ - test/dummy/app/controllers/application_controller.rb
49
+ - test/dummy/app/helpers/application_helper.rb
50
+ - test/dummy/app/views/layouts/application.html.erb
51
+ - test/dummy/bin/bundle
52
+ - test/dummy/bin/rails
53
+ - test/dummy/bin/rake
54
+ - test/dummy/bin/setup
55
+ - test/dummy/config.ru
56
+ - test/dummy/config/application.rb
57
+ - test/dummy/config/boot.rb
58
+ - test/dummy/config/environment.rb
59
+ - test/dummy/config/environments/development.rb
60
+ - test/dummy/config/environments/production.rb
61
+ - test/dummy/config/environments/test.rb
62
+ - test/dummy/config/initializers/assets.rb
63
+ - test/dummy/config/initializers/backtrace_silencers.rb
64
+ - test/dummy/config/initializers/cookies_serializer.rb
65
+ - test/dummy/config/initializers/filter_parameter_logging.rb
66
+ - test/dummy/config/initializers/inflections.rb
67
+ - test/dummy/config/initializers/mime_types.rb
68
+ - test/dummy/config/initializers/session_store.rb
69
+ - test/dummy/config/initializers/wrap_parameters.rb
70
+ - test/dummy/config/locales/en.yml
71
+ - test/dummy/config/locales/pl.yml
72
+ - test/dummy/config/routes.rb
73
+ - test/dummy/config/secrets.yml
74
+ - test/dummy/log/development.log
75
+ - test/dummy/log/test.log
76
+ - test/dummy/public/404.html
77
+ - test/dummy/public/422.html
78
+ - test/dummy/public/500.html
79
+ - test/dummy/public/favicon.ico
80
+ - test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705
81
+ - test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af
82
+ - test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953
83
+ - test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994
84
+ - test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6
85
+ - test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655
86
+ - test/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705
87
+ - test/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af
88
+ - test/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953
89
+ - test/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994
90
+ - test/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6
91
+ - test/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655
92
+ - test/dummy/tmp/pids/server.pid
93
+ - test/integration/locales/en.yml
94
+ - test/integration/locales/pl.yml
95
+ - test/integration/locales_test.rb
96
+ - test/test_helper.rb
97
+ homepage: https://github.com/lokson/locales_panel
98
+ licenses:
99
+ - MIT
100
+ metadata: {}
101
+ post_install_message:
102
+ rdoc_options: []
103
+ require_paths:
104
+ - lib
105
+ required_ruby_version: !ruby/object:Gem::Requirement
106
+ requirements:
107
+ - - ">="
108
+ - !ruby/object:Gem::Version
109
+ version: '0'
110
+ required_rubygems_version: !ruby/object:Gem::Requirement
111
+ requirements:
112
+ - - ">="
113
+ - !ruby/object:Gem::Version
114
+ version: '0'
115
+ requirements: []
116
+ rubyforge_project:
117
+ rubygems_version: 2.4.5
118
+ signing_key:
119
+ specification_version: 4
120
+ summary: Edit yaml translations in browser
121
+ test_files:
122
+ - test/dummy/app/assets/javascripts/application.js
123
+ - test/dummy/app/assets/stylesheets/application.css
124
+ - test/dummy/app/controllers/application_controller.rb
125
+ - test/dummy/app/helpers/application_helper.rb
126
+ - test/dummy/app/views/layouts/application.html.erb
127
+ - test/dummy/bin/bundle
128
+ - test/dummy/bin/rails
129
+ - test/dummy/bin/rake
130
+ - test/dummy/bin/setup
131
+ - test/dummy/config/application.rb
132
+ - test/dummy/config/boot.rb
133
+ - test/dummy/config/environment.rb
134
+ - test/dummy/config/environments/development.rb
135
+ - test/dummy/config/environments/production.rb
136
+ - test/dummy/config/environments/test.rb
137
+ - test/dummy/config/initializers/assets.rb
138
+ - test/dummy/config/initializers/backtrace_silencers.rb
139
+ - test/dummy/config/initializers/cookies_serializer.rb
140
+ - test/dummy/config/initializers/filter_parameter_logging.rb
141
+ - test/dummy/config/initializers/inflections.rb
142
+ - test/dummy/config/initializers/mime_types.rb
143
+ - test/dummy/config/initializers/session_store.rb
144
+ - test/dummy/config/initializers/wrap_parameters.rb
145
+ - test/dummy/config/locales/en.yml
146
+ - test/dummy/config/locales/pl.yml
147
+ - test/dummy/config/routes.rb
148
+ - test/dummy/config/secrets.yml
149
+ - test/dummy/config.ru
150
+ - test/dummy/log/development.log
151
+ - test/dummy/log/test.log
152
+ - test/dummy/public/404.html
153
+ - test/dummy/public/422.html
154
+ - test/dummy/public/500.html
155
+ - test/dummy/public/favicon.ico
156
+ - test/dummy/Rakefile
157
+ - test/dummy/README.rdoc
158
+ - test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705
159
+ - test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af
160
+ - test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953
161
+ - test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994
162
+ - test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6
163
+ - test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655
164
+ - test/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705
165
+ - test/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af
166
+ - test/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953
167
+ - test/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994
168
+ - test/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6
169
+ - test/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655
170
+ - test/dummy/tmp/pids/server.pid
171
+ - test/integration/locales/en.yml
172
+ - test/integration/locales/pl.yml
173
+ - test/integration/locales_test.rb
174
+ - test/test_helper.rb