locale_ninja 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +20 -0
  3. data/README.md +93 -0
  4. data/Rakefile +10 -0
  5. data/app/assets/builds/locale_ninja.css +1 -0
  6. data/app/assets/config/locale_ninja_manifest.js +1 -0
  7. data/app/assets/stylesheets/application.tailwind.css +17 -0
  8. data/app/assets/stylesheets/locale_ninja/application.css +26 -0
  9. data/app/controllers/locale_ninja/application_controller.rb +35 -0
  10. data/app/controllers/locale_ninja/branches_controller.rb +22 -0
  11. data/app/controllers/locale_ninja/dashboard_controller.rb +19 -0
  12. data/app/controllers/locale_ninja/locales_controller.rb +33 -0
  13. data/app/controllers/locale_ninja/session_controller.rb +34 -0
  14. data/app/helpers/locale_ninja/application_helper.rb +9 -0
  15. data/app/helpers/locale_ninja/dashboard_helper.rb +6 -0
  16. data/app/helpers/locale_ninja/locale_helper.rb +91 -0
  17. data/app/jobs/locale_ninja/application_job.rb +6 -0
  18. data/app/mailers/locale_ninja/application_mailer.rb +8 -0
  19. data/app/models/locale_ninja/application_record.rb +7 -0
  20. data/app/services/locale_ninja/github_api_service.rb +98 -0
  21. data/app/views/components/_branch_select.html.erb +10 -0
  22. data/app/views/components/_flashes.html.erb +33 -0
  23. data/app/views/components/_sidebar.html.erb +31 -0
  24. data/app/views/components/_table.html.erb +204 -0
  25. data/app/views/layouts/locale_ninja/application.html.erb +15 -0
  26. data/app/views/locale_ninja/branches/index.html.erb +1 -0
  27. data/app/views/locale_ninja/branches/show.html.erb +22 -0
  28. data/app/views/locale_ninja/dashboard/index.html.erb +34 -0
  29. data/app/views/locale_ninja/locales/show.html.erb +21 -0
  30. data/config/credentials/development.key +1 -0
  31. data/config/credentials/development.yml.enc +1 -0
  32. data/config/credentials/production.yml.enc +1 -0
  33. data/config/locales/locale_ninja/en.yml +6 -0
  34. data/config/locales/locale_ninja/fr.yml +6 -0
  35. data/config/routes.rb +13 -0
  36. data/config/tailwind.config.js +23 -0
  37. data/lib/locale_ninja/engine.rb +11 -0
  38. data/lib/locale_ninja/version.rb +6 -0
  39. data/lib/locale_ninja.rb +8 -0
  40. data/lib/tasks/locale_ninja_tasks.rake +21 -0
  41. metadata +190 -0
metadata ADDED
@@ -0,0 +1,190 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: locale_ninja
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.2
5
+ platform: ruby
6
+ authors:
7
+ - Julien Marseille
8
+ - Théo Dupuis
9
+ - Pierre Fitoussi
10
+ - Clément Avenel
11
+ autorequire:
12
+ bindir: bin
13
+ cert_chain: []
14
+ date: 2023-07-30 00:00:00.000000000 Z
15
+ dependencies:
16
+ - !ruby/object:Gem::Dependency
17
+ name: faraday-retry
18
+ requirement: !ruby/object:Gem::Requirement
19
+ requirements:
20
+ - - "~>"
21
+ - !ruby/object:Gem::Version
22
+ version: '2.2'
23
+ - - ">="
24
+ - !ruby/object:Gem::Version
25
+ version: 2.2.0
26
+ type: :runtime
27
+ prerelease: false
28
+ version_requirements: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - "~>"
31
+ - !ruby/object:Gem::Version
32
+ version: '2.2'
33
+ - - ">="
34
+ - !ruby/object:Gem::Version
35
+ version: 2.2.0
36
+ - !ruby/object:Gem::Dependency
37
+ name: httparty
38
+ requirement: !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - "~>"
41
+ - !ruby/object:Gem::Version
42
+ version: '0.21'
43
+ - - ">="
44
+ - !ruby/object:Gem::Version
45
+ version: 0.21.0
46
+ type: :runtime
47
+ prerelease: false
48
+ version_requirements: !ruby/object:Gem::Requirement
49
+ requirements:
50
+ - - "~>"
51
+ - !ruby/object:Gem::Version
52
+ version: '0.21'
53
+ - - ">="
54
+ - !ruby/object:Gem::Version
55
+ version: 0.21.0
56
+ - !ruby/object:Gem::Dependency
57
+ name: octokit
58
+ requirement: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - "~>"
61
+ - !ruby/object:Gem::Version
62
+ version: '5.0'
63
+ - - ">="
64
+ - !ruby/object:Gem::Version
65
+ version: '5.0'
66
+ type: :runtime
67
+ prerelease: false
68
+ version_requirements: !ruby/object:Gem::Requirement
69
+ requirements:
70
+ - - "~>"
71
+ - !ruby/object:Gem::Version
72
+ version: '5.0'
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '5.0'
76
+ - !ruby/object:Gem::Dependency
77
+ name: rails
78
+ requirement: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '7.0'
83
+ - - ">="
84
+ - !ruby/object:Gem::Version
85
+ version: 7.0.6
86
+ type: :runtime
87
+ prerelease: false
88
+ version_requirements: !ruby/object:Gem::Requirement
89
+ requirements:
90
+ - - "~>"
91
+ - !ruby/object:Gem::Version
92
+ version: '7.0'
93
+ - - ">="
94
+ - !ruby/object:Gem::Version
95
+ version: 7.0.6
96
+ - !ruby/object:Gem::Dependency
97
+ name: tailwindcss-rails
98
+ requirement: !ruby/object:Gem::Requirement
99
+ requirements:
100
+ - - "~>"
101
+ - !ruby/object:Gem::Version
102
+ version: '2.0'
103
+ - - ">="
104
+ - !ruby/object:Gem::Version
105
+ version: 2.0.0
106
+ type: :runtime
107
+ prerelease: false
108
+ version_requirements: !ruby/object:Gem::Requirement
109
+ requirements:
110
+ - - "~>"
111
+ - !ruby/object:Gem::Version
112
+ version: '2.0'
113
+ - - ">="
114
+ - !ruby/object:Gem::Version
115
+ version: 2.0.0
116
+ description: LocaleNinja is a powerful Git-based gem for effortless translation management
117
+ in Ruby on Rails apps.
118
+ email: contact@squadracer.com
119
+ executables: []
120
+ extensions: []
121
+ extra_rdoc_files: []
122
+ files:
123
+ - LICENSE
124
+ - README.md
125
+ - Rakefile
126
+ - app/assets/builds/locale_ninja.css
127
+ - app/assets/config/locale_ninja_manifest.js
128
+ - app/assets/stylesheets/application.tailwind.css
129
+ - app/assets/stylesheets/locale_ninja/application.css
130
+ - app/controllers/locale_ninja/application_controller.rb
131
+ - app/controllers/locale_ninja/branches_controller.rb
132
+ - app/controllers/locale_ninja/dashboard_controller.rb
133
+ - app/controllers/locale_ninja/locales_controller.rb
134
+ - app/controllers/locale_ninja/session_controller.rb
135
+ - app/helpers/locale_ninja/application_helper.rb
136
+ - app/helpers/locale_ninja/dashboard_helper.rb
137
+ - app/helpers/locale_ninja/locale_helper.rb
138
+ - app/jobs/locale_ninja/application_job.rb
139
+ - app/mailers/locale_ninja/application_mailer.rb
140
+ - app/models/locale_ninja/application_record.rb
141
+ - app/services/locale_ninja/github_api_service.rb
142
+ - app/views/components/_branch_select.html.erb
143
+ - app/views/components/_flashes.html.erb
144
+ - app/views/components/_sidebar.html.erb
145
+ - app/views/components/_table.html.erb
146
+ - app/views/layouts/locale_ninja/application.html.erb
147
+ - app/views/locale_ninja/branches/index.html.erb
148
+ - app/views/locale_ninja/branches/show.html.erb
149
+ - app/views/locale_ninja/dashboard/index.html.erb
150
+ - app/views/locale_ninja/locales/show.html.erb
151
+ - config/credentials/development.key
152
+ - config/credentials/development.yml.enc
153
+ - config/credentials/production.yml.enc
154
+ - config/locales/locale_ninja/en.yml
155
+ - config/locales/locale_ninja/fr.yml
156
+ - config/routes.rb
157
+ - config/tailwind.config.js
158
+ - lib/locale_ninja.rb
159
+ - lib/locale_ninja/engine.rb
160
+ - lib/locale_ninja/version.rb
161
+ - lib/tasks/locale_ninja_tasks.rake
162
+ homepage: https://locale-ninja.osc-fr1.scalingo.io/
163
+ licenses:
164
+ - MIT
165
+ metadata:
166
+ allowed_push_host: https://rubygems.org
167
+ rubygems_mfa_required: 'true'
168
+ homepage_uri: https://locale-ninja.osc-fr1.scalingo.io/
169
+ source_code_uri: https://github.com/squadracer/locale_ninja
170
+ changelog_uri: https://github.com/squadracer/locale_ninja/blob/main/CHANGELOG.md
171
+ post_install_message:
172
+ rdoc_options: []
173
+ require_paths:
174
+ - lib
175
+ required_ruby_version: !ruby/object:Gem::Requirement
176
+ requirements:
177
+ - - ">="
178
+ - !ruby/object:Gem::Version
179
+ version: 3.1.4
180
+ required_rubygems_version: !ruby/object:Gem::Requirement
181
+ requirements:
182
+ - - ">="
183
+ - !ruby/object:Gem::Version
184
+ version: '0'
185
+ requirements: []
186
+ rubygems_version: 3.4.10
187
+ signing_key:
188
+ specification_version: 4
189
+ summary: A git based gem to manage translations in a Ruby on Rails app.
190
+ test_files: []