forked from chamnap/themes_on_rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
themes_on_rails.gemspec
28 lines (23 loc) · 1013 Bytes
/
themes_on_rails.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 "themes_on_rails/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "themes_on_rails"
s.version = ThemesOnRails::VERSION
s.authors = ["Chamnap Chhorn"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/chamnap/themes_on_rails"
s.summary = "Adds multi themes support to your Rails 3/4 application"
s.description = "Adds multi themes support to your Rails 3/4 application"
s.license = "MIT"
s.required_ruby_version = '>= 2.0.0'
s.required_rubygems_version = '>= 1.8.11'
s.files = Dir["{app,config,db,lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.md"]
s.test_files = Dir["spec/**/*"]
s.require_paths = ["lib"]
s.add_dependency "rails", ">= 3.2"
s.add_dependency "concurrent-ruby"
s.add_development_dependency "ammeter", "~> 1.1.2"
s.add_development_dependency "bundler", "~> 1.11"
end