-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathi18n_admin.gemspec
34 lines (29 loc) · 1.09 KB
/
i18n_admin.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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "i18n_admin/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "i18n_admin"
s.version = I18nAdmin::VERSION
s.authors = ['Valentin Ballestrino']
s.email = ['[email protected]']
s.homepage = 'http://www.glyph.fr'
s.summary = "Small admin panel to translate your Rails app"
s.description = "Small admin panel to translate your Rails app"
s.license = "MIT"
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
s.add_dependency "rails", ">= 4.2", "<= 6.0"
s.add_dependency 'bootstrap-sass'
s.add_dependency 'coffee-rails'
s.add_dependency 'font-awesome-rails'
s.add_dependency 'kaminari'
s.add_dependency 'request_store'
s.add_dependency 'spreadsheet'
s.add_dependency 'nprogress-rails'
s.add_dependency 'turbolinks'
s.add_dependency 'sucker_punch'
s.add_dependency 'sidekiq'
s.add_dependency 'sidekiq-job_monitor'
s.add_dependency 'paperclip'
s.add_development_dependency "sqlite3"
end