diff options
Diffstat (limited to 'help/leap_web_help.gemspec')
-rw-r--r-- | help/leap_web_help.gemspec | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/help/leap_web_help.gemspec b/help/leap_web_help.gemspec index 19b59d7..2cc147c 100644 --- a/help/leap_web_help.gemspec +++ b/help/leap_web_help.gemspec @@ -1,24 +1,23 @@ $:.push File.expand_path("../lib", __FILE__) -# Maintain your gem's version: -require "leap_web_help/version" require "leap_web_core/dependencies" +require File.expand_path('../../lib/leap_web/version.rb', __FILE__) # Describe your gem and declare its dependencies: Gem::Specification.new do |s| s.name = "leap_web_help" - s.version = LeapWebHelp::VERSION - s.authors = ["TODO: Your name"] - s.email = ["TODO: Your email"] - s.homepage = "TODO" - s.summary = "TODO: Summary of LeapWebHelp." - s.description = "TODO: Description of LeapWebHelp." + s.version = LeapWeb::VERSION + s.authors = ["Jessib"] + s.email = ["jessib@leap.se"] + s.homepage = "http://www.leap.se" + s.summary = "Help Desk for LeapWeb" + s.description = "Managing Tickets for a Leap provider" - s.files = Dir["{app,config,db,lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.rdoc"] + s.files = Dir["{app,config,db,lib}/**/*"] + ["Rakefile", "Readme.md"] s.test_files = Dir["test/**/*"] s.add_dependency "rails", "~> 3.2.8" - s.add_dependency "leap_web_core", "~> 0.0.1" + s.add_dependency "leap_web_core", "~> #{LeapWeb::VERSION}" LeapWebCore::Dependencies.add_ui_gems_to_spec(s) |