-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsource_browser.gemspec
More file actions
26 lines (21 loc) · 1.13 KB
/
source_browser.gemspec
File metadata and controls
26 lines (21 loc) · 1.13 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
require_relative "lib/source_browser/version"
Gem::Specification.new do |spec|
spec.name = "source_browser"
spec.version = SourceBrowser::VERSION
spec.authors = ["Jeff Peterson", "Matt Tognetti"]
spec.email = ["jeff@concept.love", "matt@concept.love"]
spec.homepage = "https://github.com/craft-concept/source_browser"
spec.summary = "Rails plugin for browsing source code"
spec.description = "SourceBrowser is a Rails engine for browsing source code. It is designed to be used in a Rails application that is serving web pages to users."
spec.license = "MIT"
# spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/craft-concept/source_browser"
spec.metadata["changelog_uri"] = "https://github.com/craft-concept/source_browser/CHANGELOG.md"
spec.files = Dir.chdir(File.expand_path(__dir__)) do
Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
end
spec.required_ruby_version = ">= 3.0.0"
spec.add_dependency "rails", "~> 8.0.0.beta1"
spec.add_dependency "git", "~> 2.3.0"
spec.add_dependency "rouge", "~> 4.4.0"
end