-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathactiveadmin_calendar.gemspec
More file actions
29 lines (22 loc) · 1.1 KB
/
activeadmin_calendar.gemspec
File metadata and controls
29 lines (22 loc) · 1.1 KB
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
# frozen_string_literal: true
require_relative "lib/activeadmin_calendar/version"
Gem::Specification.new do |spec|
spec.name = "activeadmin_calendar"
spec.version = ActiveadminCalendar::VERSION
spec.authors = ["Igor Fedoronchuk"]
spec.email = ["fedoronchuk@gmail.com"]
spec.summary = "Calendar index style for ActiveAdmin"
spec.description = "Adds `index as: :calendar` — a month-grid index style that buckets " \
"resources by a date attribute or custom scope and yields each day cell."
spec.homepage = "https://github.com/activeadmin-plugins/activeadmin_calendar"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.1"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["changelog_uri"] = "#{spec.homepage}/releases"
spec.files = Dir["lib/**/*", "app/**/*", "README.md", "LICENSE.txt"]
spec.require_paths = ["lib"]
spec.add_dependency "activeadmin", ">= 3.5", "< 5.0"
spec.add_dependency "arbre", ">= 1.4", "< 3.0"
spec.add_dependency "railties", ">= 7.0"
end