gemrage 0.0.0 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -1,5 +1,6 @@
1
1
  require 'rubygems'
2
2
  require 'rake'
3
+
3
4
  require File.join(File.dirname(__FILE__), 'vendor', 'ruby', '1.8', 'gems', 'bundler-1.0.3', 'lib', 'bundler', 'setup')
4
5
  Bundler.require
5
6
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.0
1
+ 0.1.0
data/gemrage.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{gemrage}
8
- s.version = "0.0.0"
8
+ s.version = "0.1.0"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Daniel Huckstep"]
@@ -1,5 +1,15 @@
1
1
  require 'rubygems/gemcutter_utilities'
2
2
 
3
+ # Holy shit disgusting
4
+ Gem.clear_paths
5
+ paths = ENV['GEM_PATH'].to_s.split(':')
6
+ paths.unshift(File.expand_path(File.join(File.dirname(__FILE__), '..', '..', '..', 'vendor', 'ruby', '1.8')))
7
+ ENV['GEM_PATH'] = paths.join(':')
8
+ ENV['BUNDLE_GEMFILE'] = File.expand_path(File.join(File.dirname(__FILE__), '..', '..', '..', 'Gemfile'))
9
+ require 'bundler'
10
+ Bundler.setup
11
+ Bundler.require
12
+
3
13
  class Gem::Commands::ScanCommand < Gem::Command
4
14
  include Gem::GemcutterUtilities
5
15
 
@@ -20,6 +30,6 @@ class Gem::Commands::ScanCommand < Gem::Command
20
30
  end
21
31
 
22
32
  def execute
23
- p 'Hello, world!'
33
+ p 'Hello, World!'
24
34
  end
25
35
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gemrage
3
3
  version: !ruby/object:Gem::Version
4
- hash: 31
4
+ hash: 27
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
+ - 1
8
9
  - 0
9
- - 0
10
- version: 0.0.0
10
+ version: 0.1.0
11
11
  platform: ruby
12
12
  authors:
13
13
  - Daniel Huckstep