Sha256: 9012edbacd143def89d47e4f13d3c8f6af085a88e0388431e025afc52a7cffea
Contents?: true
Size: 1.71 KB
Versions: 10
Compression:
Stored size: 1.71 KB
Contents
# frozen_string_literal: true require_relative "lib/simple_calendar/timeslot/version" Gem::Specification.new do |spec| spec.name = "simple_calendar-timeslot" spec.version = SimpleCalendar::Timeslot::VERSION spec.authors = ["Kim Laplume"] spec.email = ["kl@heartforge.eu"] spec.summary = "Calendar with Timeslots for Ruby on Rails" spec.description = "This gem extends simple_calendar to be able to display events in a 24h grid sized according to the respective start and end times" spec.homepage = "https://github.com/1klap/simple_calendar-timeslot" spec.required_ruby_version = ">= 2.4.0" spec.license = "MIT" #spec.metadata["allowed_push_host"] = "TODO: Set to 'https://mygemserver.com'" spec.metadata["homepage_uri"] = spec.homepage spec.metadata["source_code_uri"] = "https://github.com/1klap/simple_calendar-timeslot" spec.metadata["changelog_uri"] = "https://github.com/1klap/simple_calendar-timeslot/blob/main/CHANGELOG.md" # Specify which files should be added to the gem when it is released. # The `git ls-files -z` loads the files in the RubyGem that have been added into git. 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"] # Uncomment to register a new dependency of your gem spec.add_dependency 'simple_calendar', '~> 2.0' #spec.add_development_dependency 'rails' spec.add_development_dependency "rspec", "~> 3.2" spec.add_development_dependency 'rake' spec.add_development_dependency 'rubocop' end
Version data entries
10 entries across 10 versions & 1 rubygems