2012-10-05 00:33:47 +08:00
|
|
|
Gem::Specification.new do |gem|
|
2016-11-12 19:04:51 +08:00
|
|
|
gem.name = "actionpack-action_caching"
|
2021-05-11 02:50:05 +08:00
|
|
|
gem.version = "1.2.2"
|
2016-11-12 19:04:51 +08:00
|
|
|
gem.author = "David Heinemeier Hansson"
|
|
|
|
|
gem.email = "david@loudthinking.com"
|
|
|
|
|
gem.description = "Action caching for Action Pack (removed from core in Rails 4.0)"
|
|
|
|
|
gem.summary = "Action caching for Action Pack (removed from core in Rails 4.0)"
|
|
|
|
|
gem.homepage = "https://github.com/rails/actionpack-action_caching"
|
2012-10-05 00:33:47 +08:00
|
|
|
|
2019-11-14 05:42:09 +08:00
|
|
|
gem.metadata = {
|
|
|
|
|
"bug_tracker_uri" => "https://github.com/rails/actionpack-action_caching/issues",
|
|
|
|
|
"changelog_uri" => "https://github.com/rails/actionpack-action_caching/blob/v#{gem.version}/CHANGELOG.md",
|
|
|
|
|
"documentation_uri" => "https://www.rubydoc.info/gems/actionpack-action_caching/#{gem.version}",
|
|
|
|
|
"source_code_uri" => "https://github.com/rails/actionpack-action_caching/tree/v#{gem.version}",
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-12 19:04:51 +08:00
|
|
|
gem.required_ruby_version = ">= 1.9.3"
|
2012-10-05 00:33:47 +08:00
|
|
|
gem.files = `git ls-files`.split($/)
|
2016-11-12 19:04:51 +08:00
|
|
|
gem.executables = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) }
|
2012-10-05 00:33:47 +08:00
|
|
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
2016-11-12 19:04:51 +08:00
|
|
|
gem.require_paths = ["lib"]
|
|
|
|
|
gem.license = "MIT"
|
2012-10-05 00:58:16 +08:00
|
|
|
|
2018-11-21 03:42:43 +08:00
|
|
|
gem.add_dependency "actionpack", ">= 4.0.0"
|
2012-10-05 00:58:16 +08:00
|
|
|
|
2016-11-12 18:19:21 +08:00
|
|
|
gem.add_development_dependency "mocha"
|
2018-11-21 03:42:57 +08:00
|
|
|
gem.add_development_dependency "activerecord", ">= 4.0.0"
|
2012-10-05 00:33:47 +08:00
|
|
|
end
|