Sha256: 34fa63c7708989b0b35a1ce0086f9c53635b7c77432ea3073b4d628b19a66ed7
Contents?: true
Size: 1.28 KB
Versions: 10
Compression:
Stored size: 1.28 KB
Contents
# frozen_string_literal: true lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "vgcal/version" Gem::Specification.new do |spec| spec.name = "vgcal" spec.version = Vgcal::VERSION spec.authors = ["Shota Ito"] spec.email = ["shota.ito.jp@gmail.com"] spec.summary = "%q{The vgcal command simplifies the display of Google Calendar events.}" spec.description = "%q{The vgcal command simplifies the display of Google Calendar events.}" spec.homepage = "https://github.com/st1t/vgcal" spec.license = "MIT" spec.required_ruby_version = Gem::Requirement.new(">= 3.0.1") spec.files = Dir.chdir(File.expand_path(__dir__)) do `git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) } end spec.bindir = "exe" spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 2.2" spec.add_development_dependency "rake", "~> 13.0" spec.add_development_dependency "rspec", "~> 3.10" spec.add_development_dependency "rubocop" spec.add_runtime_dependency "thor", "~> 1.1" spec.add_runtime_dependency "google-api-client" spec.add_runtime_dependency "dotenv" end
Version data entries
10 entries across 10 versions & 1 rubygems