dev 2.0.99 → 2.0.100
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/command.rb +216 -0
- data/lib/commands/add.rb +22 -0
- data/lib/commands/analyze.rb +8 -0
- data/lib/commands/array.rb +30 -0
- data/lib/commands/build.rb +31 -0
- data/lib/commands/clean.rb +12 -0
- data/lib/commands/clobber.rb +15 -0
- data/lib/commands/command.rb +222 -0
- data/lib/commands/commands.rb +36 -0
- data/lib/commands/commit.rb +20 -0
- data/lib/commands/doc.rb +9 -0
- data/lib/commands/gemspec.rb +40 -0
- data/lib/commands/git.rb +22 -0
- data/lib/commands/hash.rb +21 -0
- data/lib/commands/info.rb +3 -0
- data/lib/commands/internet.rb +24 -0
- data/lib/commands/msbuild.rb +56 -0
- data/lib/commands/publish.rb +21 -0
- data/lib/commands/pull.rb +12 -0
- data/lib/commands/push.rb +8 -0
- data/lib/commands/setup.rb +41 -0
- data/lib/commands/tag.rb +3 -0
- data/lib/commands/test.rb +62 -0
- data/lib/commands/text.rb +16 -0
- data/lib/commands/timeout.rb +81 -0
- data/lib/commands/timer.rb +43 -0
- data/lib/commands/update.rb +5 -0
- data/lib/commands/upgrade.rb +6 -0
- data/lib/dev.rb +1 -1
- data/lib/{dev_environment.rb → environment.rb} +1 -35
- data/lib/file.rb +34 -0
- data/lib/{dev_git.rb → git.rb} +1 -1
- data/lib/{dev_msbuild.rb → msbuild.rb} +0 -1
- data/lib/project.rb +64 -0
- data/lib/{dev_projects.rb → projects.rb} +0 -71
- data/lib/{dev_svn.rb → svn.rb} +1 -1
- data/lib/{dev_tasks.rb → tasks.rb} +1 -5
- metadata +38 -9
- data/lib/dev_commands.rb +0 -1104
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dev
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.100
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lou Parslow
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-06-
|
11
|
+
date: 2015-06-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rspec
|
@@ -31,14 +31,43 @@ extensions: []
|
|
31
31
|
extra_rdoc_files: []
|
32
32
|
files:
|
33
33
|
- LICENSE
|
34
|
+
- lib/command.rb
|
35
|
+
- lib/commands/add.rb
|
36
|
+
- lib/commands/analyze.rb
|
37
|
+
- lib/commands/array.rb
|
38
|
+
- lib/commands/build.rb
|
39
|
+
- lib/commands/clean.rb
|
40
|
+
- lib/commands/clobber.rb
|
41
|
+
- lib/commands/command.rb
|
42
|
+
- lib/commands/commands.rb
|
43
|
+
- lib/commands/commit.rb
|
44
|
+
- lib/commands/doc.rb
|
45
|
+
- lib/commands/gemspec.rb
|
46
|
+
- lib/commands/git.rb
|
47
|
+
- lib/commands/hash.rb
|
48
|
+
- lib/commands/info.rb
|
49
|
+
- lib/commands/internet.rb
|
50
|
+
- lib/commands/msbuild.rb
|
51
|
+
- lib/commands/publish.rb
|
52
|
+
- lib/commands/pull.rb
|
53
|
+
- lib/commands/push.rb
|
54
|
+
- lib/commands/setup.rb
|
55
|
+
- lib/commands/tag.rb
|
56
|
+
- lib/commands/test.rb
|
57
|
+
- lib/commands/text.rb
|
58
|
+
- lib/commands/timeout.rb
|
59
|
+
- lib/commands/timer.rb
|
60
|
+
- lib/commands/update.rb
|
61
|
+
- lib/commands/upgrade.rb
|
34
62
|
- lib/dev.rb
|
35
|
-
- lib/
|
36
|
-
- lib/
|
37
|
-
- lib/
|
38
|
-
- lib/
|
39
|
-
- lib/
|
40
|
-
- lib/
|
41
|
-
- lib/
|
63
|
+
- lib/environment.rb
|
64
|
+
- lib/file.rb
|
65
|
+
- lib/git.rb
|
66
|
+
- lib/msbuild.rb
|
67
|
+
- lib/project.rb
|
68
|
+
- lib/projects.rb
|
69
|
+
- lib/svn.rb
|
70
|
+
- lib/tasks.rb
|
42
71
|
homepage: http://rubygems.org/gems/dev
|
43
72
|
licenses:
|
44
73
|
- Apache 2.0
|