diff options
author | jessib <jessib@riseup.net> | 2012-10-08 11:05:17 -0700 |
---|---|---|
committer | jessib <jessib@riseup.net> | 2012-10-08 11:05:17 -0700 |
commit | 8f100d3c03a6f554e703c5d0b2fe221958424c26 (patch) | |
tree | 77e90f53d05fecefa91adf89a3c35f19e277996b /leap_web.gemspec | |
parent | f77301824c42bdd4559a0b0e58b8f3c26f239643 (diff) | |
parent | f5aea5347601c3500bb3670971d44995c35c3c7b (diff) |
Merge branch 'release-0.1.0' into help_develop
Conflicts:
.gitignore
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 |