cached_values 1.7.2 → 1.7.3

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.
Files changed (4) hide show
  1. data/LICENSE +20 -0
  2. data/VERSION +1 -1
  3. data/cached_values.gemspec +64 -0
  4. metadata +19 -7
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2011 Jack Danger Canty
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.7.2
1
+ 1.7.3
@@ -0,0 +1,64 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{cached_values}
8
+ s.version = "1.7.3"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Jack Danger Canty"]
12
+ s.date = %q{2011-04-10}
13
+ s.description = %q{Speedup your ActiveRecord by storing and updating the results of SQL or Ruby expressions into record attributes}
14
+ s.email = %q{rubygems@6brand.com}
15
+ s.extra_rdoc_files = [
16
+ "LICENSE",
17
+ "README.markdown"
18
+ ]
19
+ s.files = [
20
+ "LICENSE",
21
+ "MIT-LICENSE",
22
+ "README.markdown",
23
+ "Rakefile",
24
+ "VERSION",
25
+ "cached_values.gemspec",
26
+ "init.rb",
27
+ "install.rb",
28
+ "lib/cached_value.rb",
29
+ "lib/cached_values.rb",
30
+ "tasks/cached_values_tasks.rake",
31
+ "test/cached_values_test.rb",
32
+ "test/database.yml",
33
+ "test/leprechaun.rb",
34
+ "test/schema.rb",
35
+ "test/test_helper.rb",
36
+ "uninstall.rb"
37
+ ]
38
+ s.homepage = %q{http://github.com/JackDanger/cached_values}
39
+ s.require_paths = ["lib"]
40
+ s.rubygems_version = %q{1.4.2}
41
+ s.summary = %q{Memoize and persist calculations into ActiveRecord attributes}
42
+ s.test_files = [
43
+ "test/cached_values_test.rb",
44
+ "test/leprechaun.rb",
45
+ "test/schema.rb",
46
+ "test/test_helper.rb"
47
+ ]
48
+
49
+ if s.respond_to? :specification_version then
50
+ s.specification_version = 3
51
+
52
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
53
+ s.add_runtime_dependency(%q<object_proxy>, [">= 0"])
54
+ s.add_development_dependency(%q<active_record>, [">= 0"])
55
+ else
56
+ s.add_dependency(%q<object_proxy>, [">= 0"])
57
+ s.add_dependency(%q<active_record>, [">= 0"])
58
+ end
59
+ else
60
+ s.add_dependency(%q<object_proxy>, [">= 0"])
61
+ s.add_dependency(%q<active_record>, [">= 0"])
62
+ end
63
+ end
64
+
metadata CHANGED
@@ -1,12 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cached_values
3
3
  version: !ruby/object:Gem::Version
4
- prerelease: false
4
+ hash: 13
5
+ prerelease:
5
6
  segments:
6
7
  - 1
7
8
  - 7
8
- - 2
9
- version: 1.7.2
9
+ - 3
10
+ version: 1.7.3
10
11
  platform: ruby
11
12
  authors:
12
13
  - Jack Danger Canty
@@ -14,16 +15,18 @@ autorequire:
14
15
  bindir: bin
15
16
  cert_chain: []
16
17
 
17
- date: 2010-07-15 00:00:00 -07:00
18
+ date: 2011-04-10 00:00:00 -07:00
18
19
  default_executable:
19
20
  dependencies:
20
21
  - !ruby/object:Gem::Dependency
21
22
  name: object_proxy
22
23
  prerelease: false
23
24
  requirement: &id001 !ruby/object:Gem::Requirement
25
+ none: false
24
26
  requirements:
25
27
  - - ">="
26
28
  - !ruby/object:Gem::Version
29
+ hash: 3
27
30
  segments:
28
31
  - 0
29
32
  version: "0"
@@ -33,9 +36,11 @@ dependencies:
33
36
  name: active_record
34
37
  prerelease: false
35
38
  requirement: &id002 !ruby/object:Gem::Requirement
39
+ none: false
36
40
  requirements:
37
41
  - - ">="
38
42
  - !ruby/object:Gem::Version
43
+ hash: 3
39
44
  segments:
40
45
  - 0
41
46
  version: "0"
@@ -48,12 +53,15 @@ executables: []
48
53
  extensions: []
49
54
 
50
55
  extra_rdoc_files:
56
+ - LICENSE
51
57
  - README.markdown
52
58
  files:
59
+ - LICENSE
53
60
  - MIT-LICENSE
54
61
  - README.markdown
55
62
  - Rakefile
56
63
  - VERSION
64
+ - cached_values.gemspec
57
65
  - init.rb
58
66
  - install.rb
59
67
  - lib/cached_value.rb
@@ -70,28 +78,32 @@ homepage: http://github.com/JackDanger/cached_values
70
78
  licenses: []
71
79
 
72
80
  post_install_message:
73
- rdoc_options:
74
- - --charset=UTF-8
81
+ rdoc_options: []
82
+
75
83
  require_paths:
76
84
  - lib
77
85
  required_ruby_version: !ruby/object:Gem::Requirement
86
+ none: false
78
87
  requirements:
79
88
  - - ">="
80
89
  - !ruby/object:Gem::Version
90
+ hash: 3
81
91
  segments:
82
92
  - 0
83
93
  version: "0"
84
94
  required_rubygems_version: !ruby/object:Gem::Requirement
95
+ none: false
85
96
  requirements:
86
97
  - - ">="
87
98
  - !ruby/object:Gem::Version
99
+ hash: 3
88
100
  segments:
89
101
  - 0
90
102
  version: "0"
91
103
  requirements: []
92
104
 
93
105
  rubyforge_project:
94
- rubygems_version: 1.3.6
106
+ rubygems_version: 1.4.2
95
107
  signing_key:
96
108
  specification_version: 3
97
109
  summary: Memoize and persist calculations into ActiveRecord attributes