27 lines
832 B
Ruby
27 lines
832 B
Ruby
|
# encoding: UTF-8
|
||
|
$:.push File.expand_path("../lib", __FILE__)
|
||
|
|
||
|
# Maintain your gem's version:
|
||
|
require "event_news_mod/version"
|
||
|
env_pwd = ENV['PWD']
|
||
|
app_path = File.expand_path(__dir__)
|
||
|
template_path = env_pwd + '/app/templates'
|
||
|
all_template = Dir.glob(template_path+'/*/')
|
||
|
|
||
|
# Describe your gem and declare its dependencies:
|
||
|
Gem::Specification.new do |s|
|
||
|
s.name = "event_news_mod"
|
||
|
s.version = EventNewsMod::VERSION
|
||
|
s.authors = ["RulingDigital"]
|
||
|
s.email = ["orbit@rulingcom.com"]
|
||
|
s.homepage = "http://www.rulingcom.com"
|
||
|
s.summary = "EventNews for Orbit"
|
||
|
s.description = "EventNews for Orbit"
|
||
|
s.license = "MIT"
|
||
|
|
||
|
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"]
|
||
|
s.test_files = Dir["test/**/*"]
|
||
|
|
||
|
s.add_dependency "rufus-scheduler", "~> 3.6.0"
|
||
|
end
|