wip 0.1.2 → 0.2.0
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/.gitignore +2 -0
- data/.wiprc +2 -0
- data/README.mkd +5 -0
- data/Rakefile +1 -13
- data/doc/README.md +5 -0
- data/lib/wip/ui.rb +3 -0
- data/lib/wip/version.rb +1 -1
- data/wip.gemspec +1 -1
- metadata +10 -10
data/.gitignore
CHANGED
data/.wiprc
CHANGED
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
|
data/doc/README.md
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/lib/wip/ui.rb
CHANGED
data/lib/wip/version.rb
CHANGED
data/wip.gemspec
CHANGED
@@ -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.
|
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:
|
5
|
-
prerelease:
|
4
|
+
hash: 23
|
5
|
+
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
|
-
- 1
|
9
8
|
- 2
|
10
|
-
|
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:
|
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:
|
44
|
+
hash: 3
|
45
45
|
segments:
|
46
46
|
- 1
|
47
47
|
- 0
|
48
|
-
-
|
49
|
-
version: 1.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.
|
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.
|
161
|
+
rubygems_version: 1.6.1
|
162
162
|
signing_key:
|
163
163
|
specification_version: 3
|
164
164
|
summary: "'wip': streamlined work-in-progress projects"
|