diff options
author | Azul <azul@leap.se> | 2012-10-11 12:53:10 +0200 |
---|---|---|
committer | Azul <azul@leap.se> | 2012-10-11 12:53:10 +0200 |
commit | 09003d3d2df7c250d3a0b55e83094e5e27094859 (patch) | |
tree | 90d2a851cd558652121182937a5ec8373722cab0 /leap_web.gemspec | |
parent | 118d9ab5c9f4d7a82b7cf24774ef12d3c221f8ef (diff) | |
parent | 33ef3d2ac9a03b06ff29f1367c69731a89f1dfc7 (diff) |
Merge branch 'release-0.1.0' into develop
Diffstat (limited to 'leap_web.gemspec')
-rw-r--r-- | leap_web.gemspec | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/leap_web.gemspec b/leap_web.gemspec index 569abc8..44a30e0 100644 --- a/leap_web.gemspec +++ b/leap_web.gemspec @@ -1,7 +1,6 @@ $:.push File.expand_path("../lib", __FILE__) -# Maintain your gem's version: -require "leap_web/version" +require 'leap_web/version.rb' Gem::Specification.new do |s| s.platform = Gem::Platform::RUBY @@ -10,7 +9,7 @@ Gem::Specification.new do |s| s.summary = 'Leap web framework for Ruby on Rails.' s.description = 'Leap is the Leap Encryption Access Project. This is a framework for the web administrative interface. Its components live in separate gems. You can find out more about leap on www.leap.se' - s.files = Dir['README.md', 'lib/leap_web.rb', 'lib/leap_web/*'] + s.files = Dir['*.md', 'lib/leap_web.rb', 'lib/leap_web/*'] s.require_path = 'lib' s.requirements << 'none' s.required_ruby_version = '>= 1.8.7' @@ -21,6 +20,6 @@ Gem::Specification.new do |s| s.homepage = 'http://leap.se' # s.add_dependency 'leap_web_core' - s.add_dependency 'leap_web_certs' - s.add_dependency 'leap_web_users' + s.add_dependency 'leap_web_certs', LeapWeb::VERSION + s.add_dependency 'leap_web_users', LeapWeb::VERSION end |