-
Notifications
You must be signed in to change notification settings - Fork 0
/
active_preview.gemspec
28 lines (23 loc) · 1.27 KB
/
active_preview.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
26
27
28
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "active_preview/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "active_preview"
s.version = ActivePreview::VERSION
s.authors = ["Syd Young"]
s.email = ["[email protected]"]
s.summary = %q{Create previews of ActiveRecord objects that don't
modify the database}
s.homepage = "https://github.com/efforg/active_preview"
s.license = "MIT"
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
s.add_dependency "rails", "~> 5"
s.add_development_dependency "rake", "~> 10.0"
s.add_development_dependency "rspec-rails", "~> 3.0"
s.add_development_dependency "database_cleaner", "~> 1.7"
s.add_development_dependency "sqlite3", "~> 1.3"
s.add_development_dependency "rubocop", "~> 0.60"
s.add_development_dependency "rubocop-github"
s.add_development_dependency "byebug"
end