-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsql_view.gemspec
More file actions
executable file
·24 lines (19 loc) · 874 Bytes
/
sql_view.gemspec
File metadata and controls
executable file
·24 lines (19 loc) · 874 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
require_relative "lib/sql_view/version"
Gem::Specification.new do |spec|
spec.name = "sql_view"
spec.version = SqlView::VERSION
spec.authors = ["Igor Kasyanchuk"]
spec.email = ["igorkasyanchuk@gmail.com"]
spec.homepage = "https://github.com/igorkasyanchuk/sql_view"
spec.summary = "Simple way to create and interact with your SQL views using ActiveRecord."
spec.description = "Simple way to create and interact with your SQL views using ActiveRecord."
spec.license = "MIT"
spec.metadata["homepage_uri"] = spec.homepage
spec.files = Dir.chdir(File.expand_path(__dir__)) do
Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
end
spec.add_dependency "rails"
spec.add_development_dependency "pg"
spec.add_development_dependency "pry"
spec.add_development_dependency "wrapped_print"
end