-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommand_proposal.gemspec
25 lines (19 loc) · 1.35 KB
/
command_proposal.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
require_relative "lib/command_proposal/version"
Gem::Specification.new do |spec|
spec.name = "command_proposal"
spec.version = CommandProposal::VERSION
spec.authors = ["Rocco Nicholls"]
spec.email = ["[email protected]"]
spec.summary = "Gives the ability to run approved commands through a UI in your browser"
spec.description = "Rather than creating rake tasks, which have to go through CI/CD, then some deploy process, eventually make it to production, only to be run once, and then never get deleted and litter your code base- this gem allows you to create command proposals via a UI that can be immediately reviewed by your peers and then run- keeping a history of what happened, when, and what the results were."
spec.homepage = "https://github.com/Rockster160/command_proposal"
spec.license = "MIT"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/Rockster160/command_proposal"
spec.metadata["changelog_uri"] = "https://github.com/Rockster160/command_proposal/blob/master/README.md"
spec.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
spec.add_dependency "rails", ">= 5.0.0"
spec.add_dependency "font-awesome-rails"
spec.add_development_dependency "rspec-rails"
spec.add_development_dependency "activejob"
end