-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgrowth.gemspec
More file actions
25 lines (20 loc) · 930 Bytes
/
growth.gemspec
File metadata and controls
25 lines (20 loc) · 930 Bytes
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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "growth/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "growth"
s.version = Growth::VERSION
s.authors = ["Ryan Friedman", "Nursultan Abdyldaev"]
s.email = ["ryan@soundtribe.com"]
s.homepage = "https://github.com/RyanFriedman/growth-engine"
s.summary = "A beautiful dashboard displaying the monthly and yearly growth of your Rails models."
s.description = "Track the monthly and yearly growth of your Rails models along with their associations."
s.license = "LGPL-3.0"
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
s.add_dependency "rails", "~> 5.0"
s.add_dependency("dry-container")
s.add_dependency("dry-transaction")
s.add_dependency("groupdate")
s.add_development_dependency "sqlite3"
end