-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathembed_view.gemspec
executable file
·23 lines (20 loc) · 977 Bytes
/
embed_view.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
$:.push File.expand_path("lib", __dir__)
# Maintain your gem's version:
require "embed_view/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |spec|
spec.name = "embed_view"
spec.version = EmbedView::VERSION
spec.authors = ["Igor Kasyanchuk"]
spec.email = ["[email protected]"]
spec.homepage = "http://github.com/igorkasyanchuk/embed_view"
spec.summary = "Embed partial inline into your views to increase performance of rendering."
spec.description = "Embed partial inline into your views to increase performance of rendering."
spec.license = "MIT"
spec.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
spec.add_dependency "rails", ">= 5.0.0"
spec.add_development_dependency "sqlite3"
spec.add_development_dependency 'minitest-rails'
spec.add_development_dependency 'minitest-rails-capybara'
spec.add_development_dependency 'capybara'
end