-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathassembling_machine.gemspec
More file actions
22 lines (18 loc) · 896 Bytes
/
assembling_machine.gemspec
File metadata and controls
22 lines (18 loc) · 896 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require_relative "lib/assembling_machine/version"
Gem::Specification.new do |spec|
spec.name = "assembling_machine"
spec.version = AssemblingMachine::VERSION
spec.authors = [ "firewalker06" ]
spec.email = [ "didik.wicaksono@gmail.com" ]
spec.homepage = "https://github.com/firewalker06/assembling_machine"
spec.summary = "Automate everything I need"
spec.description = "For start, its a Rails engine that provides scheduled background jobs to check manga updates"
spec.license = "MIT"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/main/CHANGELOG.md"
spec.files = Dir.chdir(File.expand_path(__dir__)) do
Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
end
spec.add_dependency "rails", ">= 8.0.2"
end