Sha256: de70112a9c30bb17e980c2038ae9780cddc0a295382bda042f794b132c17b6ee

Contents?: true

Size: 1.01 KB

Versions: 4

Compression:

Stored size: 1.01 KB

Contents

# 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.0"

    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

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
lastpass-1.7.0 lastpass.gemspec
lastpass-1.6.1 lastpass.gemspec
lastpass-1.6.0 lastpass.gemspec
lastpass-1.5.0 lastpass.gemspec