forked from magnusvk/counter_culture
-
Notifications
You must be signed in to change notification settings - Fork 1
/
counter_culture.gemspec
136 lines (131 loc) · 5.38 KB
/
counter_culture.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "counter_culture"
s.version = "0.1.18"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Magnus von Koeller"]
s.date = "2013-10-16"
s.description = "counter_culture provides turbo-charged counter caches that are kept up-to-date not just on create and destroy, that support multiple levels of indirection through relationships, allow dynamic column names and that avoid deadlocks by updating in the after_commit callback."
s.email = "[email protected]"
s.extra_rdoc_files = [
"LICENSE.txt",
"README.md"
]
s.files = [
".document",
".rspec",
".ruby-gemset",
".ruby-version",
"CHANGELOG.md",
"Gemfile",
"Gemfile.lock",
"LICENSE.txt",
"README.md",
"Rakefile",
"VERSION",
"circle.yml",
"counter_culture.gemspec",
"lib/counter_culture.rb",
"lib/generators/counter_culture_generator.rb",
"lib/generators/templates/counter_culture_migration.rb.erb",
"spec/counter_culture_spec.rb",
"spec/models/category.rb",
"spec/models/company.rb",
"spec/models/has_string_id.rb",
"spec/models/industry.rb",
"spec/models/product.rb",
"spec/models/review.rb",
"spec/models/simple_dependent.rb",
"spec/models/simple_main.rb",
"spec/models/user.rb",
"spec/rails_app/.gitignore",
"spec/rails_app/Gemfile",
"spec/rails_app/README.rdoc",
"spec/rails_app/Rakefile",
"spec/rails_app/app/assets/images/rails.png",
"spec/rails_app/app/assets/javascripts/application.js",
"spec/rails_app/app/assets/stylesheets/application.css",
"spec/rails_app/app/controllers/application_controller.rb",
"spec/rails_app/app/helpers/application_helper.rb",
"spec/rails_app/app/mailers/.gitkeep",
"spec/rails_app/app/models/.gitkeep",
"spec/rails_app/app/views/layouts/application.html.erb",
"spec/rails_app/config.ru",
"spec/rails_app/config/application.rb",
"spec/rails_app/config/boot.rb",
"spec/rails_app/config/database.yml",
"spec/rails_app/config/environment.rb",
"spec/rails_app/config/environments/development.rb",
"spec/rails_app/config/environments/production.rb",
"spec/rails_app/config/environments/test.rb",
"spec/rails_app/config/initializers/backtrace_silencers.rb",
"spec/rails_app/config/initializers/inflections.rb",
"spec/rails_app/config/initializers/mime_types.rb",
"spec/rails_app/config/initializers/secret_token.rb",
"spec/rails_app/config/initializers/session_store.rb",
"spec/rails_app/config/initializers/wrap_parameters.rb",
"spec/rails_app/config/locales/en.yml",
"spec/rails_app/config/routes.rb",
"spec/rails_app/db/seeds.rb",
"spec/rails_app/lib/assets/.gitkeep",
"spec/rails_app/lib/tasks/.gitkeep",
"spec/rails_app/log/.gitkeep",
"spec/rails_app/public/404.html",
"spec/rails_app/public/422.html",
"spec/rails_app/public/500.html",
"spec/rails_app/public/favicon.ico",
"spec/rails_app/public/index.html",
"spec/rails_app/public/robots.txt",
"spec/rails_app/script/rails",
"spec/rails_app/test/fixtures/.gitkeep",
"spec/rails_app/test/functional/.gitkeep",
"spec/rails_app/test/integration/.gitkeep",
"spec/rails_app/test/performance/browsing_test.rb",
"spec/rails_app/test/test_helper.rb",
"spec/rails_app/test/unit/.gitkeep",
"spec/rails_app/vendor/assets/javascripts/.gitkeep",
"spec/rails_app/vendor/assets/stylesheets/.gitkeep",
"spec/rails_app/vendor/plugins/.gitkeep",
"spec/schema.rb",
"spec/spec_helper.rb"
]
s.homepage = "http://github.com/bestvendor/counter_culture"
s.licenses = ["MIT"]
s.require_paths = ["lib"]
s.rubygems_version = "2.0.7"
s.summary = "Turbo-charged counter caches for your Rails app."
if s.respond_to? :specification_version then
s.specification_version = 4
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_development_dependency(%q<rails>, [">= 3.1.0"])
s.add_development_dependency(%q<rspec>, ["~> 2.10.0"])
s.add_development_dependency(%q<after_commit_action>, [">= 0"])
s.add_development_dependency(%q<awesome_print>, [">= 0"])
s.add_development_dependency(%q<rdoc>, ["~> 3.12"])
s.add_development_dependency(%q<bundler>, [">= 1.2.0"])
s.add_development_dependency(%q<jeweler>, ["~> 1.8.3"])
s.add_runtime_dependency(%q<after_commit_action>, ["~> 0.1.3"])
else
s.add_dependency(%q<rails>, [">= 3.1.0"])
s.add_dependency(%q<rspec>, ["~> 2.10.0"])
s.add_dependency(%q<after_commit_action>, [">= 0"])
s.add_dependency(%q<awesome_print>, [">= 0"])
s.add_dependency(%q<rdoc>, ["~> 3.12"])
s.add_dependency(%q<bundler>, [">= 1.2.0"])
s.add_dependency(%q<jeweler>, ["~> 1.8.3"])
s.add_dependency(%q<after_commit_action>, ["~> 0.1.3"])
end
else
s.add_dependency(%q<rails>, [">= 3.1.0"])
s.add_dependency(%q<rspec>, ["~> 2.10.0"])
s.add_dependency(%q<after_commit_action>, [">= 0"])
s.add_dependency(%q<awesome_print>, [">= 0"])
s.add_dependency(%q<rdoc>, ["~> 3.12"])
s.add_dependency(%q<bundler>, [">= 1.2.0"])
s.add_dependency(%q<jeweler>, ["~> 1.8.3"])
s.add_dependency(%q<after_commit_action>, ["~> 0.1.3"])
end
end