-
Notifications
You must be signed in to change notification settings - Fork 0
/
fb-localizer.gemspec
28 lines (24 loc) · 1.02 KB
/
fb-localizer.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "fb-localizer/version"
Gem::Specification.new do |s|
s.name = "fb-localizer"
s.version = Fb::Localizer::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Albert Bellonch"]
s.email = ["albert@itnig.net"]
s.homepage = "https://github.com/albertbellonch/fb-localizer"
s.summary = %q{Converts from Ruby's locale to the
nearest Facebook's locale.}
s.description = %q{Converts from Ruby's locale to the
nearest Facebook's locale. This way you can localize the "I like it" button on every web page you want}
s.rubyforge_project = "fb-localizer"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_development_dependency "rspec-rails"
s.add_dependency "rails"
s.add_dependency "i18n"
s.add_dependency "libxml-ruby"
end