forked from cookpad/RTLize
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrtlize.gemspec
27 lines (22 loc) · 928 Bytes
/
rtlize.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
$:.push File.expand_path("../lib", __FILE__)
require "rtlize/version"
Gem::Specification.new do |s|
s.name = "rtlize"
s.summary = "Automatic CSS layout switcher (from LTR to RTL)"
s.version = Rtlize::VERSION
s.authors = ["Marwan Al Jubeh"]
s.email = ["marwan.al.jubeh@gmail.com"]
s.homepage = "http://github.com/maljub01/RTLize"
s.executables = ['rtlize']
s.files = Dir["{app,bin,config,db,lib,test}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.rdoc"]
s.test_files = Dir["test/**/*"]
s.license = "MIT"
s.add_development_dependency "rails", ">= 3.1.0"
s.add_development_dependency "sass-rails"
s.add_development_dependency "sqlite3"
s.add_development_dependency "simplecov"
s.description = <<-END
RTLize allows you to write your stylesheets for left-to-right (LTR) layouts
and have them automatically work for right-to-left (RTL) layouts as well.
END
end