bananajour 2.6.5 → 2.6.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.
data/Rakefile CHANGED
@@ -15,12 +15,12 @@ require "bananajour/version"
15
15
  version = Bananajour::VERSION
16
16
  gem_name = "bananajour-#{version}.gem"
17
17
 
18
- desc "Build #{gem_name} into pkg"
18
+ desc "Build #{gem_name}"
19
19
  task :build do
20
20
  system "gem build bananajour.gemspec"
21
21
  end
22
22
 
23
23
  desc "Tag and push #{gem_name}"
24
24
  task :push => :build do
25
- system "git push && git push --tags && gem push #{gem_name}"
25
+ system "git tag #{version} && git push && git push --tags && gem push #{gem_name}"
26
26
  end
@@ -25,7 +25,7 @@ module Bananajour
25
25
  end
26
26
 
27
27
  def setup!
28
- repositories_path.create_dir
28
+ repositories_path.mkpath
29
29
  end
30
30
 
31
31
  def path
@@ -20,7 +20,7 @@ module Bananajour
20
20
  path.exist?
21
21
  end
22
22
  def init!
23
- path.create_dir
23
+ path.mkpath
24
24
  Dir.chdir(path) { `git init --bare` }
25
25
  end
26
26
  def name
@@ -1,3 +1,3 @@
1
1
  module Bananajour
2
- VERSION = '2.6.5'
2
+ VERSION = '2.6.6'
3
3
  end
@@ -14,6 +14,7 @@ require 'active_support/core_ext/array'
14
14
  set :server, 'thin'
15
15
  set :haml, {:format => :html5, :attr_wrapper => '"'}
16
16
  set :logging, false
17
+ set :root, File.dirname(__FILE__)
17
18
 
18
19
  require "mock_browsers" if Sinatra::Application.development?
19
20
 
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 2
7
7
  - 6
8
- - 5
9
- version: 2.6.5
8
+ - 6
9
+ version: 2.6.6
10
10
  platform: ruby
11
11
  authors:
12
12
  - Tim Lucas
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-08-29 00:00:00 +10:00
17
+ date: 2010-08-30 00:00:00 +10:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency