-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathi18n-edit.gemspec
51 lines (46 loc) · 1.87 KB
/
i18n-edit.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "i18n/edit/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "i18n-edit"
s.version = I18n::Edit::VERSION
s.authors = ["Bruce Perens"]
s.email = ["[email protected]"]
s.homepage = "http://perens.com/i18n-edit/"
s.summary = "In-place editor of internationalized text (locale data)."
s.description = "Take the hassle out of managing internationized text! " \
"This in-place editor allows you to click on the text where it " \
"appears in your view in a live application, and edit it right " \
"there. No need to know the translation key, no multiple windows."
s.license = "AGPL-3.0"
s.files = Dir[
'Gemfile',
'Rakefile',
'app/controllers/i18n/edit/application_controller.rb',
'app/controllers/i18n/edit/edit_controller.rb',
'app/assets/javascripts/i18n/edit/application.js',
'app/assets/javascripts/i18n/edit/i18n_edit.js',
'app/assets/stylesheets/i18n/edit/i18n_edit.scss',
'app/helpers/i18n/edit/application_helper.rb',
'app/views/i18n/edit/edit/menu.html.slim',
'config/routes.rb',
'config/initializers/i18n_edit.rb',
'config/initializers/action_controller.rb',
'config/initializers/action_dispatch.rb',
'config/initializers/i18n_backend_base.rb',
'config/initializers/assets.rb',
'lib/i18n/edit.rb',
'lib/i18n/edit/version.rb',
'lib/i18n/edit/engine.rb',
'i18n-edit.gemspec',
'README.md',
'SIMPLE_TESTING_GRANT.txt',
'AFFERO_GPL3.txt',
]
s.add_runtime_dependency 'sysrandom', '~> 1'
# Dependency on a semantic version is too coarse to work well with something as large
# as rails.
s.add_runtime_dependency 'rails', '> 3'
s.add_runtime_dependency 'slim', '~> 3'
end