merb-cache 0.9.5 → 0.9.6

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 (2) hide show
  1. data/Rakefile +4 -4
  2. metadata +3 -3
data/Rakefile CHANGED
@@ -16,7 +16,7 @@ GEM_EMAIL = "alex.boussinet@gmail.com"
16
16
 
17
17
  GEM_NAME = "merb-cache"
18
18
  PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
19
- GEM_VERSION = (Merb::MORE_VERSION rescue "0.9.5") + PKG_BUILD
19
+ GEM_VERSION = (Merb::MORE_VERSION rescue "0.9.6") + PKG_BUILD
20
20
 
21
21
  RELEASE_NAME = "REL #{GEM_VERSION}"
22
22
 
@@ -34,7 +34,7 @@ spec = Gem::Specification.new do |s|
34
34
  s.author = GEM_AUTHOR
35
35
  s.email = GEM_EMAIL
36
36
  s.homepage = PROJECT_URL
37
- s.add_dependency('merb-core', '>= 0.9.5')
37
+ s.add_dependency('merb-core', '>= 0.9.6')
38
38
  s.require_path = 'lib'
39
39
  s.files = %w(LICENSE README Rakefile TODO) + Dir.glob("{lib,spec}/**/*")
40
40
  end
@@ -45,14 +45,14 @@ end
45
45
 
46
46
  desc "Install the gem"
47
47
  task :install => [:package] do
48
- sh %{#{sudo} gem install #{install_home} pkg/#{GEM_NAME}-#{GEM_VERSION} --no-update-sources}
48
+ sh install_command(GEM_NAME, GEM_VERSION)
49
49
  end
50
50
 
51
51
  namespace :jruby do
52
52
 
53
53
  desc "Run :package and install the resulting .gem with jruby"
54
54
  task :install => :package do
55
- sh %{#{sudo} jruby -S gem install #{install_home} pkg/#{GEM_NAME}-#{GEM_VERSION}.gem --no-rdoc --no-ri}
55
+ sh jinstall_command(GEM_NAME, GEM_VERSION)
56
56
  end
57
57
 
58
58
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: merb-cache
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.5
4
+ version: 0.9.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alex Boussinet
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-08-21 00:00:00 +03:00
12
+ date: 2008-09-08 00:00:00 +03:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -20,7 +20,7 @@ dependencies:
20
20
  requirements:
21
21
  - - ">="
22
22
  - !ruby/object:Gem::Version
23
- version: 0.9.5
23
+ version: 0.9.6
24
24
  version:
25
25
  description: Merb plugin that provides caching (page, action, fragment, object)
26
26
  email: alex.boussinet@gmail.com