summaryrefslogtreecommitdiff
path: root/leap_web.gemspec
blob: da9d2db9aab11cd185ae2a65fa59bdc56c771597 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
$:.push File.expand_path("../lib", __FILE__)

require 'leap_web/version.rb'

Gem::Specification.new do |s|
  s.platform = Gem::Platform::RUBY
  s.name = 'leap_web'
  s.version = LeapWeb::VERSION
  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['*.md', 'lib/leap_web.rb', 'lib/leap_web/*']
  s.require_path = 'lib'
  s.requirements << 'none'
  s.required_ruby_version = '>= 2.1.0'
  s.required_rubygems_version = ">= 1.3.6"

  s.author = 'Azul'
  s.email = 'azul@leap.se'
  s.homepage = 'http://leap.se'

end