forked from fastly/fastly-rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfastly-rails.gemspec
27 lines (22 loc) · 1.13 KB
/
fastly-rails.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
$:.push File.expand_path("../lib", __FILE__)
require "fastly-rails/version"
Gem::Specification.new do |s|
s.name = "fastly-rails"
s.version = FastlyRails::VERSION
s.authors = ["Michael May", "Hassan Shahid", "Ezekiel Templin", "Thomas O'Neil"]
s.homepage = "https://github.com/fastly/fastly-rails"
s.summary = "Fastly instant purging integration for Rails"
s.description = "Creates surrogate keys on ActiveRecord models, sets cache/surrogate headers, and adds a purge method to ActiveRecord objects."
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"]
s.test_files = Dir["test/**/*"]
s.add_dependency "rails"
s.add_dependency 'fastly', '~> 1.1.4'
s.add_development_dependency "sqlite3"
s.add_development_dependency "database_cleaner"
s.add_development_dependency "factory_girl_rails"
s.add_development_dependency "ffaker"
s.add_development_dependency "minitest-spec-rails"
s.add_development_dependency "appraisal"
s.add_development_dependency 'webmock'
end