-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmagic_locales.gemspec
28 lines (22 loc) · 1.12 KB
/
magic_locales.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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "magic_locales/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "magic_locales"
s.version = MagicLocales::VERSION
s.authors = ["Torsten Wetzel"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/berlinmagic/magic_locales"
s.summary = "Rails gem to help with common european locales."
s.description = "Rails gem to help with translations and locale changing. Uses simple locale style like `en` or `de` .. more complex (`en-US`) style may follow. "
s.license = "MIT"
s.files = Dir["{config,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
s.test_files = Dir["spec/**/*"]
s.add_runtime_dependency "rails", ">= 4.0"
s.add_runtime_dependency "railties", ">= 4.0"
s.add_runtime_dependency "globalize", ">= 5.0"
s.add_runtime_dependency "micromachine", ">= 1.1"
s.add_development_dependency "sqlite3", '>= 3.2'
s.add_development_dependency "rspec-rails", '>= 1.3'
end