-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathlastpass.gemspec
29 lines (23 loc) · 1.01 KB
/
lastpass.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Copyright (C) 2013 Dmitry Yakimenko (detunized@gmail.com).
# Licensed under the terms of the MIT license. See LICENCE for details.
$:.push File.expand_path("../lib", __FILE__)
require "lastpass/version"
Gem::Specification.new do |s|
s.name = "lastpass"
s.version = LastPass::VERSION
s.licenses = ["MIT"]
s.authors = ["Dmitry Yakimenko"]
s.email = "detunized@gmail.com"
s.homepage = "https://github.com/detunized/lastpass-ruby"
s.summary = "Unofficial LastPass API"
s.description = "Read only access to the online LastPass vault"
s.required_ruby_version = ">= 2.0.0"
s.add_dependency "httparty", "~> 0.14"
s.add_development_dependency "rake", "~> 12.0"
s.add_development_dependency "rspec", "~> 3.5"
s.add_development_dependency "rspec-its", "~> 1.2"
s.add_development_dependency "coveralls", "~> 0.8.19"
s.files = `git ls-files`.split "\n"
s.test_files = `git ls-files spec`.split "\n"
s.require_paths = ["lib"]
end