sinatralli 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore CHANGED
@@ -15,4 +15,4 @@ spec/reports
15
15
  test/tmp
16
16
  test/version_tmp
17
17
  tmp
18
- .DS_Store
18
+ *.DS_Store
@@ -15,7 +15,6 @@ module Sinatra
15
15
  def cache_output(key, content, opts)
16
16
  content = minify_output(content) if settings.cache_minify_pages && opts[:minify]
17
17
  expires = opts[:expires] ? opts[:expires] : settings.cache_expires
18
- puts key
19
18
  output = cache_set(key, content, expires)
20
19
  end
21
20
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |gem|
4
4
  gem.name = "sinatralli"
5
- gem.version = "0.0.2"
5
+ gem.version = "0.0.3"
6
6
  gem.authors = ["Daryl Ginn"]
7
7
  gem.email = ["me@daryl.im"]
8
8
  gem.description = %q{A Sinatra Dalli Gem for page, fragment and key value caching.}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sinatralli
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-12-16 00:00:00.000000000 Z
12
+ date: 2012-12-30 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: dalli
@@ -39,8 +39,6 @@ files:
39
39
  - LICENSE.txt
40
40
  - README.md
41
41
  - Rakefile
42
- - lib/.DS_Store
43
- - lib/sinatra/.DS_Store
44
42
  - lib/sinatra/templates.rb
45
43
  - lib/sinatralli.rb
46
44
  - sinatralli.gemspec