caching_matcher 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/History.txt +5 -0
- data/version.txt +1 -1
- metadata +6 -9
- data/bin/caching_matcher +0 -7
- data/caching_matcher.gemspec +0 -51
data/History.txt
CHANGED
data/version.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.1
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: caching_matcher
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 25
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 1
|
|
9
|
-
-
|
|
10
|
-
version: 0.1.
|
|
9
|
+
- 1
|
|
10
|
+
version: 0.1.1
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Wolfram Arnold
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2010-09-
|
|
18
|
+
date: 2010-09-08 00:00:00 -07:00
|
|
19
19
|
default_executable:
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|
|
@@ -116,21 +116,18 @@ dependencies:
|
|
|
116
116
|
version_requirements: *id006
|
|
117
117
|
description: An rspec custom matcher to assert Rails action and fragment caching.
|
|
118
118
|
email: wolfram@rubyfocus.biz
|
|
119
|
-
executables:
|
|
120
|
-
|
|
119
|
+
executables: []
|
|
120
|
+
|
|
121
121
|
extensions: []
|
|
122
122
|
|
|
123
123
|
extra_rdoc_files:
|
|
124
124
|
- History.txt
|
|
125
125
|
- README.txt
|
|
126
|
-
- bin/caching_matcher
|
|
127
126
|
- version.txt
|
|
128
127
|
files:
|
|
129
128
|
- History.txt
|
|
130
129
|
- README.txt
|
|
131
130
|
- Rakefile
|
|
132
|
-
- bin/caching_matcher
|
|
133
|
-
- caching_matcher.gemspec
|
|
134
131
|
- lib/caching_matcher.rb
|
|
135
132
|
- lib/caching_matcher/caching_matcher.rb
|
|
136
133
|
- spec/controllers/caching_matcher_spec.rb
|
data/bin/caching_matcher
DELETED
data/caching_matcher.gemspec
DELETED
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
|
2
|
-
|
|
3
|
-
Gem::Specification.new do |s|
|
|
4
|
-
s.name = %q{caching_matcher}
|
|
5
|
-
s.version = "0.1.0"
|
|
6
|
-
|
|
7
|
-
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
8
|
-
s.authors = ["Wolfram Arnold"]
|
|
9
|
-
s.date = %q{2010-09-07}
|
|
10
|
-
s.default_executable = %q{caching_matcher}
|
|
11
|
-
s.description = %q{An rspec custom matcher to assert Rails action and fragment caching.}
|
|
12
|
-
s.email = %q{wolfram@rubyfocus.biz}
|
|
13
|
-
s.executables = ["caching_matcher"]
|
|
14
|
-
s.extra_rdoc_files = ["History.txt", "README.txt", "bin/caching_matcher", "version.txt"]
|
|
15
|
-
s.files = ["History.txt", "README.txt", "Rakefile", "bin/caching_matcher", "lib/caching_matcher.rb", "lib/caching_matcher/caching_matcher.rb", "spec/controllers/caching_matcher_spec.rb", "spec/mock_app/app/controllers/application_controller.rb", "spec/mock_app/app/controllers/items_controller.rb", "spec/mock_app/config/boot.rb", "spec/mock_app/config/environment.rb", "spec/mock_app/config/environments/test.rb", "spec/mock_app/config/initializers/cookie_verification_secret.rb", "spec/mock_app/config/initializers/mime_types.rb", "spec/mock_app/config/initializers/new_rails_defaults.rb", "spec/mock_app/config/initializers/session_store.rb", "spec/mock_app/config/locales/en.yml", "spec/mock_app/config/routes.rb", "spec/mock_app/log/test.log", "spec/spec_helper.rb", "test/test_caching_matcher.rb", "version.txt"]
|
|
16
|
-
s.homepage = %q{http://github.com/mightyverse/caching_matcher}
|
|
17
|
-
s.rdoc_options = ["--main", "README.txt"]
|
|
18
|
-
s.require_paths = ["lib"]
|
|
19
|
-
s.rubyforge_project = %q{caching_matcher}
|
|
20
|
-
s.rubygems_version = %q{1.3.7}
|
|
21
|
-
s.summary = %q{An rspec custom matcher to assert Rails action and fragment caching}
|
|
22
|
-
s.test_files = ["test/test_caching_matcher.rb"]
|
|
23
|
-
|
|
24
|
-
if s.respond_to? :specification_version then
|
|
25
|
-
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
26
|
-
s.specification_version = 3
|
|
27
|
-
|
|
28
|
-
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
29
|
-
s.add_development_dependency(%q<rails>, [">= 2.3.8"])
|
|
30
|
-
s.add_development_dependency(%q<activesupport>, [">= 2.3.8"])
|
|
31
|
-
s.add_development_dependency(%q<actionpack>, [">= 2.3.8"])
|
|
32
|
-
s.add_development_dependency(%q<rspec>, [">= 1.3.0"])
|
|
33
|
-
s.add_development_dependency(%q<rspec-rails>, [">= 1.3.2"])
|
|
34
|
-
s.add_development_dependency(%q<bones>, [">= 3.4.7"])
|
|
35
|
-
else
|
|
36
|
-
s.add_dependency(%q<rails>, [">= 2.3.8"])
|
|
37
|
-
s.add_dependency(%q<activesupport>, [">= 2.3.8"])
|
|
38
|
-
s.add_dependency(%q<actionpack>, [">= 2.3.8"])
|
|
39
|
-
s.add_dependency(%q<rspec>, [">= 1.3.0"])
|
|
40
|
-
s.add_dependency(%q<rspec-rails>, [">= 1.3.2"])
|
|
41
|
-
s.add_dependency(%q<bones>, [">= 3.4.7"])
|
|
42
|
-
end
|
|
43
|
-
else
|
|
44
|
-
s.add_dependency(%q<rails>, [">= 2.3.8"])
|
|
45
|
-
s.add_dependency(%q<activesupport>, [">= 2.3.8"])
|
|
46
|
-
s.add_dependency(%q<actionpack>, [">= 2.3.8"])
|
|
47
|
-
s.add_dependency(%q<rspec>, [">= 1.3.0"])
|
|
48
|
-
s.add_dependency(%q<rspec-rails>, [">= 1.3.2"])
|
|
49
|
-
s.add_dependency(%q<bones>, [">= 3.4.7"])
|
|
50
|
-
end
|
|
51
|
-
end
|