wip 0.1.2 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore CHANGED
@@ -1,7 +1,9 @@
1
+ *_local
1
2
  *.gem
2
3
  .DS_Store
3
4
  .bundle
4
5
  .yardoc
6
+ Gemfile.lock
5
7
  pkg/*
6
8
  scratch/*
7
9
  spec/spec.opts
data/.wiprc CHANGED
@@ -1 +1,3 @@
1
1
  echo 'working on wip...'
2
+
3
+ rvm use 1.8.7
data/README.mkd CHANGED
@@ -3,6 +3,11 @@
3
3
 
4
4
  > NOTE: `wip` is WIP
5
5
 
6
+ > ALSO: if `wip-bootstrap` fails to bootstrap, that's probably because
7
+ > (hard-coded-ly) assumes you have a .profile file. all you need to do
8
+ > is add `source .wiprc` to the profile you *do* have (e.g., `.wiprc`)
9
+ > I'll fix this soon.
10
+
6
11
  `wip` is a concept I'm playing with for streamlining the process of
7
12
  coding for and documenting client and personal software projects.
8
13
 
data/Rakefile CHANGED
@@ -1,15 +1,3 @@
1
1
  require 'bundler'
2
+ require 'bundler/gem_helper'
2
3
  Bundler::GemHelper.install_tasks
3
-
4
- module Bundler
5
- class GemHelper
6
- # override in order to see install output (we have a post-install hook)
7
- def install_gem
8
- built_gem_path = build_gem
9
- out, err, code = sh_with_code("gem install #{built_gem_path}")
10
- puts out
11
- raise err if err[/ERROR/]
12
- Bundler.ui.confirm "#{name} (#{version}) installed"
13
- end
14
- end
15
- end
@@ -3,6 +3,11 @@
3
3
 
4
4
  > NOTE: `wip` is WIP
5
5
 
6
+ > ALSO: if `wip-bootstrap` fails to bootstrap, that's probably because
7
+ > (hard-coded-ly) assumes you have a .profile file. all you need to do
8
+ > is add `source .wiprc` to the profile you *do* have (e.g., `.wiprc`)
9
+ > I'll fix this soon.
10
+
6
11
  `wip` is a concept I'm playing with for streamlining the process of
7
12
  coding for and documenting client and personal software projects.
8
13
 
@@ -1,3 +1,5 @@
1
+ require 'rubygems/user_interaction'
2
+
1
3
  module WIP
2
4
  class UI
3
5
  def warn(message)
@@ -46,6 +48,7 @@ module WIP
46
48
  class RGProxy < Gem::SilentUI
47
49
  def initialize(ui)
48
50
  @ui = ui
51
+ super()
49
52
  end
50
53
 
51
54
  def say(message)
@@ -1,3 +1,3 @@
1
1
  module WIP
2
- VERSION = "0.1.2"
2
+ VERSION = "0.2.0"
3
3
  end
@@ -24,7 +24,7 @@ Gem::Specification.new do |s|
24
24
  s.require_path = "lib"
25
25
 
26
26
  s.add_runtime_dependency 'wip-bootstrap', BOOTSTRAP_VERSION
27
- s.add_development_dependency 'bundler', '~> 1.0.0'
27
+ s.add_development_dependency 'bundler', '~> 1.0.10'
28
28
 
29
29
  s.post_install_message = %Q{
30
30
  Thank you for installing #{s.name} v#{s.version}
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wip
3
3
  version: !ruby/object:Gem::Version
4
- hash: 31
5
- prerelease: false
4
+ hash: 23
5
+ prerelease:
6
6
  segments:
7
7
  - 0
8
- - 1
9
8
  - 2
10
- version: 0.1.2
9
+ - 0
10
+ version: 0.2.0
11
11
  platform: ruby
12
12
  authors:
13
13
  - Corey Innis
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2010-11-01 00:00:00 -07:00
18
+ date: 2011-03-06 00:00:00 +08:00
19
19
  default_executable: wip
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -41,12 +41,12 @@ dependencies:
41
41
  requirements:
42
42
  - - ~>
43
43
  - !ruby/object:Gem::Version
44
- hash: 23
44
+ hash: 3
45
45
  segments:
46
46
  - 1
47
47
  - 0
48
- - 0
49
- version: 1.0.0
48
+ - 10
49
+ version: 1.0.10
50
50
  type: :development
51
51
  version_requirements: *id002
52
52
  description: "'wip' provides tools to assist with the creation/maintenance of and collaboration on software projects"
@@ -106,7 +106,7 @@ licenses: []
106
106
 
107
107
  post_install_message: |
108
108
 
109
- Thank you for installing wip v0.1.2
109
+ Thank you for installing wip v0.2.0
110
110
  ------------------------------------------------------------------------------
111
111
 
112
112
  Please Note:
@@ -158,7 +158,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
158
158
  requirements: []
159
159
 
160
160
  rubyforge_project: wip
161
- rubygems_version: 1.3.7
161
+ rubygems_version: 1.6.1
162
162
  signing_key:
163
163
  specification_version: 3
164
164
  summary: "'wip': streamlined work-in-progress projects"