-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathactive_connect.gemspec
28 lines (23 loc) · 1.29 KB
/
active_connect.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
require_relative "lib/active_connect/version"
Gem::Specification.new do |spec|
spec.name = "active_connect"
spec.version = ActiveConnect::VERSION
spec.authors = ["andersmarkc"]
spec.email = ["[email protected]"]
spec.homepage = "https://github.com/andersmarkc/active_connect"
spec.summary = "A scraping utility for Rails applications, designed to work similarly to ActiveStorage."
spec.description = "ActiveConnect provides an easy-to-use scraping framework for Rails applications, allowing models to declare 'has_connect' associations to fetch and store scraped data. Compatible with Rails 7 and higher."
spec.license = "MIT"
# Allow pushing to RubyGems.org
# Remove the "allowed_push_host" metadata to permit pushes to any host
# or set it to a specific host if necessary.
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/andersmarkc/active_connect"
spec.metadata["changelog_uri"] = "https://github.com/andersmarkc/active_connect/blob/main/CHANGELOG.md"
# Files included in the gem
spec.files = Dir.chdir(File.expand_path(__dir__)) do
Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
end
# Dependencies
spec.add_dependency "rails", ">= 7.0.6", "< 8.0"
end