cuken 0.1.13 → 0.1.15
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/.rvmrc +61 -0
- data/Gemfile +17 -15
- data/Gemfile.lock +55 -63
- data/VERSION +1 -1
- data/cuken.gems +46 -0
- data/cuken.gemspec +85 -31
- data/features/about.md +4 -0
- data/features/avagrant_steps/vagrant_steps.feature +13 -0
- data/features/chef_examples/cookbooks_cookbook.feature +1 -1
- data/features/chef_examples/cookbooks_metadata.feature +5 -5
- data/features/chef_examples/cookbooks_repo.feature +1 -1
- data/features/chef_examples/knife_admin_client.feature +12 -12
- data/features/chef_examples/knife_client_create.feature +1 -1
- data/features/chef_examples/zenoss_example/01_chef_server_setup.feature +1 -1
- data/features/chef_examples/zenoss_example/02_monitor_vm_setup.feature +1 -1
- data/features/chef_steps/cookbook_steps.feature +6 -16
- data/features/command_examples/commands.feature +3 -3
- data/features/command_examples/exit_statuses.feature +49 -0
- data/features/command_examples/file_system_commands.feature +128 -0
- data/features/command_examples/flushing.feature +24 -0
- data/features/command_examples/interactive.feature +57 -0
- data/features/command_examples/no_clobber.feature +41 -0
- data/features/command_examples/output.feature +205 -0
- data/features/command_steps/command_steps.feature +49 -42
- data/features/file_examples/files.feature +5 -5
- data/features/git_examples/git_clone.feature +33 -0
- data/features/ssh_examples/ssh.feature +11 -2
- data/features/step_definitions/cuken_steps.rb +3 -2
- data/features/support/env.rb +2 -1
- data/lib/cuken/all.rb +1 -0
- data/lib/cuken/api/aruba/api.rb +342 -0
- data/lib/cuken/api/aruba/hooks.rb +63 -0
- data/lib/cuken/api/aruba/process.rb +74 -0
- data/lib/cuken/api/aruba.rb +5 -0
- data/lib/cuken/api/chef/common.rb +8 -1
- data/lib/cuken/api/chef/cookbook.rb +31 -5
- data/lib/cuken/api/chef/knife.rb +3 -3
- data/lib/cuken/api/chef/role.rb +3 -3
- data/lib/cuken/api/chef.rb +98 -9
- data/lib/cuken/api/cmd.rb +8 -8
- data/lib/cuken/api/common.rb +11 -23
- data/lib/cuken/api/file.rb +38 -38
- data/lib/cuken/api/git/clone.rb +25 -0
- data/lib/cuken/api/git/common.rb +37 -0
- data/lib/cuken/api/git/remote.rb +16 -0
- data/lib/cuken/api/git/repository.rb +62 -0
- data/lib/cuken/api/git.rb +69 -0
- data/lib/cuken/api/rvm/common.rb +10 -0
- data/lib/cuken/api/rvm/gemsets.rb +33 -0
- data/lib/cuken/api/rvm/wip.rb +554 -0
- data/lib/cuken/api/rvm.rb +25 -479
- data/lib/cuken/api/ssh.rb +85 -4
- data/lib/cuken/api/vagrant/common.rb +7 -4
- data/lib/cuken/api/vagrant/v_m.rb +2 -2
- data/lib/cuken/api/vagrant.rb +3 -3
- data/lib/cuken/common.rb +3 -1
- data/lib/cuken/cucumber/chef/common.rb +3 -3
- data/lib/cuken/cucumber/chef/cookbook/action.rb +81 -0
- data/lib/cuken/cucumber/chef/cookbook/local.rb +71 -0
- data/lib/cuken/cucumber/chef/cookbook/remote.rb +37 -0
- data/lib/cuken/cucumber/chef/cookbook.rb +3 -140
- data/lib/cuken/cucumber/chef/cookbook_steps.rb +1 -1
- data/lib/cuken/cucumber/chef/deploy_steps.rb +1 -1
- data/lib/cuken/cucumber/chef/done_directory_steps.rb +2 -2
- data/lib/cuken/cucumber/chef/done_file_steps.rb +5 -5
- data/lib/cuken/cucumber/chef/knife.rb +1 -1
- data/lib/cuken/cucumber/chef.rb +1 -1
- data/lib/cuken/cucumber/cmd/execution.rb +34 -0
- data/lib/cuken/cucumber/cmd/exit_status.rb +30 -0
- data/lib/cuken/cucumber/cmd.rb +2 -36
- data/lib/cuken/cucumber/common.rb +42 -6
- data/lib/cuken/cucumber/file.rb +42 -37
- data/lib/cuken/cucumber/git/clone.rb +51 -0
- data/lib/cuken/cucumber/git/common.rb +36 -0
- data/lib/cuken/cucumber/git/local.rb +19 -0
- data/lib/cuken/cucumber/git/remote.rb +22 -0
- data/lib/cuken/cucumber/git.rb +26 -0
- data/lib/cuken/cucumber/output/all.rb +41 -0
- data/lib/cuken/cucumber/output/cmd.rb +46 -0
- data/lib/cuken/cucumber/output/stderr.rb +33 -0
- data/lib/cuken/cucumber/output/stdout.rb +34 -0
- data/lib/cuken/cucumber/rvm/common.rb +0 -0
- data/lib/cuken/cucumber/rvm/gemsets.rb +32 -0
- data/lib/cuken/cucumber/rvm/hooks.rb +0 -0
- data/lib/cuken/cucumber/rvm.rb +3 -1
- data/lib/cuken/cucumber/ssh/common.rb +51 -0
- data/lib/cuken/cucumber/ssh.rb +3 -35
- data/lib/cuken/cucumber/vagrant.rb +1 -1
- data/lib/cuken/git.rb +21 -0
- data/spec/api/rvm/gemsets/api_spec.rb +41 -0
- data/spec/api/rvm/gemsets/helper_spec.rb +19 -0
- data/spec/api/rvm_spec.rb +63 -15
- data/spec/api/vagrant/v_m/Vagrantfile +82 -0
- data/spec/api/vagrant/v_m/api_spec.rb +37 -0
- data/spec/spec_helper.rb +39 -0
- metadata +123 -45
- data/spec/cuken_spec.rb +0 -7
data/.rvmrc
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
#!/usr/bin/env bash
|
|
2
|
+
|
|
3
|
+
# This is an RVM Project .rvmrc file, used to automatically load the ruby
|
|
4
|
+
# development environment upon cd'ing into the directory
|
|
5
|
+
|
|
6
|
+
# First we specify our desired <ruby>[@<gemset>], the @gemset name is optional.
|
|
7
|
+
ruby_id='ruby-1.9.2-p180'
|
|
8
|
+
gemset_id='cuken'
|
|
9
|
+
environment_id="${ruby_id}@${gemset_id}"
|
|
10
|
+
|
|
11
|
+
if rvm list strings | grep -q "${ruby_id}" ; then
|
|
12
|
+
|
|
13
|
+
#
|
|
14
|
+
# First we attempt to load the desired environment directly from the environment
|
|
15
|
+
# file. This is very fast and efficicent compared to running through the entire
|
|
16
|
+
# CLI and selector. If you want feedback on which environment was used then
|
|
17
|
+
# insert the word 'use' after --create as this triggers verbose mode.
|
|
18
|
+
#
|
|
19
|
+
if [[ -d "${rvm_path:-$HOME/.rvm}/environments" \
|
|
20
|
+
&& -s "${rvm_path:-$HOME/.rvm}/environments/$environment_id" ]] ; then
|
|
21
|
+
\. "${rvm_path:-$HOME/.rvm}/environments/$environment_id"
|
|
22
|
+
|
|
23
|
+
[[ -s ".rvm/hooks/after_use" ]] && . ".rvm/hooks/after_use"
|
|
24
|
+
else
|
|
25
|
+
# If the environment file has not yet been created, use the RVM CLI to select.
|
|
26
|
+
rvm --create use "$environment_id"
|
|
27
|
+
fi
|
|
28
|
+
|
|
29
|
+
#
|
|
30
|
+
# If you use an RVM gemset file to install a list of gems (*.gems), you can have
|
|
31
|
+
# it be automatically loaded. Uncomment the following and adjust the filename if
|
|
32
|
+
# necessary.
|
|
33
|
+
#
|
|
34
|
+
filename="#{gemset_id}.gems"
|
|
35
|
+
if [[ -s "$filename" ]] ; then
|
|
36
|
+
rvm gemset import "$filename" | grep -v already | grep -v listed | grep -v complete | sed '/^$/d'
|
|
37
|
+
fi
|
|
38
|
+
|
|
39
|
+
#
|
|
40
|
+
# If you use bundler and would like to run bundle each time you enter the
|
|
41
|
+
# directory, you can uncomment the following code.
|
|
42
|
+
#
|
|
43
|
+
# Ensure that Bundler is installed. Install it if it is not.
|
|
44
|
+
#
|
|
45
|
+
if ! command -v bundle >/dev/null; then
|
|
46
|
+
printf "The rubygem 'bundler' is not installed. Installing it now.\n"
|
|
47
|
+
gem install bundler
|
|
48
|
+
fi
|
|
49
|
+
|
|
50
|
+
#
|
|
51
|
+
# Bundle while reducing excess noise.
|
|
52
|
+
#
|
|
53
|
+
printf "Bundling your gems. This may take a few minutes on a fresh clone.\n"
|
|
54
|
+
bundle | grep -v '^Using ' | grep -v ' is complete' | sed '/^$/d'
|
|
55
|
+
else
|
|
56
|
+
|
|
57
|
+
# Notify the user to install the desired interpreter before proceeding.
|
|
58
|
+
echo "${ruby_id} was not found, please run 'rvm install ${ruby_id}' and then cd back into the project directory."
|
|
59
|
+
|
|
60
|
+
fi
|
|
61
|
+
|
data/Gemfile
CHANGED
|
@@ -1,27 +1,29 @@
|
|
|
1
1
|
source "http://rubygems.org"
|
|
2
2
|
# Add dependencies required to use your gem here.
|
|
3
|
-
# Example:
|
|
4
|
-
# gem "activesupport", ">= 2.3.5"
|
|
5
3
|
group :default do
|
|
6
|
-
gem 'aruba', "~> 0.3.6"
|
|
7
|
-
gem "cucumber", ">= 0"
|
|
8
4
|
gem 'chef', "~>0.10.0"
|
|
5
|
+
gem 'childprocess', '>= 0.1.7'
|
|
6
|
+
gem 'cucumber', '> 1.0.0' #, :require => 'cucumber'
|
|
9
7
|
gem 'grit', "~>2.4.1"
|
|
10
|
-
gem '
|
|
8
|
+
# gem 'json', "1.5.2"
|
|
11
9
|
gem 'open4'
|
|
12
|
-
gem
|
|
10
|
+
gem 'rspec', '>= 2.5.0'
|
|
11
|
+
gem 'rvm', '~>1.8.0' #, :path => '/usr/src/rvm'
|
|
12
|
+
gem "vagrant", '0.8.7'
|
|
13
13
|
end
|
|
14
14
|
# Add dependencies to develop your gem here.
|
|
15
15
|
# Include everything needed to run rake, tests, features, etc.
|
|
16
16
|
group :development do
|
|
17
17
|
gem "rr", "~> 1.0.2"
|
|
18
|
-
gem
|
|
19
|
-
gem
|
|
20
|
-
gem
|
|
21
|
-
gem
|
|
22
|
-
gem
|
|
23
|
-
gem
|
|
24
|
-
gem
|
|
25
|
-
gem
|
|
26
|
-
gem
|
|
18
|
+
gem 'rspec', '>= 2.5.0'
|
|
19
|
+
gem 'chef', "~>0.10.0"
|
|
20
|
+
gem 'cucumber', '> 1.0.0' #, :require => 'cucumber'
|
|
21
|
+
gem 'yard', "~> 0.6.0"
|
|
22
|
+
gem 'bundler', "~> 1.0.21"
|
|
23
|
+
gem 'jeweler', "~> 1.5.2"
|
|
24
|
+
gem 'rcov', ">= 0"
|
|
25
|
+
gem 'reek', "~> 1.2.8"
|
|
26
|
+
gem 'roodi', "~> 2.1.0"
|
|
27
|
+
gem 'fakefs', '~>0.3.1'
|
|
28
|
+
gem 'vagrant', '0.8.7'
|
|
27
29
|
end
|
data/Gemfile.lock
CHANGED
|
@@ -1,62 +1,54 @@
|
|
|
1
1
|
GEM
|
|
2
2
|
remote: http://rubygems.org/
|
|
3
3
|
specs:
|
|
4
|
-
abstract (1.0.0)
|
|
5
4
|
archive-tar-minitar (0.5.2)
|
|
6
|
-
aruba (0.3.6)
|
|
7
|
-
childprocess (>= 0.1.7)
|
|
8
|
-
cucumber (>= 0.10.0)
|
|
9
|
-
rspec (>= 2.5.0)
|
|
10
5
|
builder (3.0.0)
|
|
11
|
-
bunny (0.
|
|
12
|
-
chef (0.10.
|
|
6
|
+
bunny (0.7.8)
|
|
7
|
+
chef (0.10.4)
|
|
13
8
|
bunny (>= 0.6.0)
|
|
14
9
|
erubis
|
|
15
10
|
highline
|
|
16
|
-
json (
|
|
11
|
+
json (>= 1.4.4, <= 1.5.2)
|
|
17
12
|
mixlib-authentication (>= 1.1.0)
|
|
18
13
|
mixlib-cli (>= 1.1.0)
|
|
19
14
|
mixlib-config (>= 1.1.2)
|
|
20
15
|
mixlib-log (>= 1.3.0)
|
|
21
16
|
moneta
|
|
22
17
|
net-ssh (~> 2.1.3)
|
|
23
|
-
net-ssh-multi (~> 1.0
|
|
18
|
+
net-ssh-multi (~> 1.1.0)
|
|
24
19
|
ohai (>= 0.6.0)
|
|
25
|
-
rest-client (
|
|
20
|
+
rest-client (>= 1.0.4, < 1.7.0)
|
|
26
21
|
treetop (~> 1.4.9)
|
|
27
22
|
uuidtools
|
|
28
|
-
childprocess (0.
|
|
29
|
-
ffi (~> 0.6
|
|
30
|
-
cucumber (
|
|
23
|
+
childprocess (0.2.2)
|
|
24
|
+
ffi (~> 1.0.6)
|
|
25
|
+
cucumber (1.1.0)
|
|
31
26
|
builder (>= 2.1.2)
|
|
32
27
|
diff-lcs (>= 1.1.2)
|
|
33
|
-
gherkin (
|
|
28
|
+
gherkin (~> 2.5.0)
|
|
34
29
|
json (>= 1.4.6)
|
|
35
|
-
term-ansicolor (>= 1.0.
|
|
30
|
+
term-ansicolor (>= 1.0.6)
|
|
36
31
|
diff-lcs (1.1.2)
|
|
37
|
-
erubis (2.
|
|
38
|
-
abstract (>= 1.0.0)
|
|
32
|
+
erubis (2.7.0)
|
|
39
33
|
fakefs (0.3.2)
|
|
40
|
-
ffi (0.
|
|
41
|
-
|
|
42
|
-
gherkin (2.3.7)
|
|
34
|
+
ffi (1.0.9)
|
|
35
|
+
gherkin (2.5.2)
|
|
43
36
|
json (>= 1.4.6)
|
|
44
37
|
git (1.2.5)
|
|
45
38
|
grit (2.4.1)
|
|
46
39
|
diff-lcs (~> 1.1)
|
|
47
40
|
mime-types (~> 1.15)
|
|
48
|
-
highline (1.6.
|
|
49
|
-
i18n (0.
|
|
41
|
+
highline (1.6.2)
|
|
42
|
+
i18n (0.6.0)
|
|
50
43
|
jeweler (1.5.2)
|
|
51
44
|
bundler (~> 1.0.0)
|
|
52
45
|
git (>= 1.2.5)
|
|
53
46
|
rake
|
|
54
|
-
json (1.5.
|
|
55
|
-
mario (0.0.6)
|
|
47
|
+
json (1.5.2)
|
|
56
48
|
mime-types (1.16)
|
|
57
49
|
mixlib-authentication (1.1.4)
|
|
58
50
|
mixlib-log
|
|
59
|
-
mixlib-cli (1.2.
|
|
51
|
+
mixlib-cli (1.2.2)
|
|
60
52
|
mixlib-config (1.1.2)
|
|
61
53
|
mixlib-log (1.3.0)
|
|
62
54
|
moneta (0.6.0)
|
|
@@ -65,72 +57,72 @@ GEM
|
|
|
65
57
|
net-ssh (2.1.4)
|
|
66
58
|
net-ssh-gateway (1.1.0)
|
|
67
59
|
net-ssh (>= 1.99.1)
|
|
68
|
-
net-ssh-multi (1.
|
|
69
|
-
net-ssh (>= 1.
|
|
60
|
+
net-ssh-multi (1.1)
|
|
61
|
+
net-ssh (>= 2.1.4)
|
|
70
62
|
net-ssh-gateway (>= 0.99.0)
|
|
71
|
-
ohai (0.6.
|
|
63
|
+
ohai (0.6.8)
|
|
72
64
|
mixlib-cli
|
|
73
65
|
mixlib-config
|
|
74
66
|
mixlib-log
|
|
75
67
|
systemu
|
|
76
68
|
yajl-ruby
|
|
77
|
-
open4 (1.0
|
|
78
|
-
polyglot (0.3.
|
|
79
|
-
rake (0.
|
|
80
|
-
rcov (0.9.
|
|
69
|
+
open4 (1.2.0)
|
|
70
|
+
polyglot (0.3.2)
|
|
71
|
+
rake (0.9.2)
|
|
72
|
+
rcov (0.9.11)
|
|
81
73
|
reek (1.2.8)
|
|
82
74
|
ruby2ruby (~> 1.2)
|
|
83
75
|
ruby_parser (~> 2.0)
|
|
84
76
|
sexp_processor (~> 3.0)
|
|
85
|
-
rest-client (1.6.
|
|
77
|
+
rest-client (1.6.7)
|
|
86
78
|
mime-types (>= 1.16)
|
|
87
79
|
roodi (2.1.0)
|
|
88
80
|
ruby_parser
|
|
89
|
-
rr (1.0.
|
|
90
|
-
rspec (2.
|
|
91
|
-
rspec-core (~> 2.
|
|
92
|
-
rspec-expectations (~> 2.
|
|
93
|
-
rspec-mocks (~> 2.
|
|
94
|
-
rspec-core (2.
|
|
95
|
-
rspec-expectations (2.
|
|
81
|
+
rr (1.0.4)
|
|
82
|
+
rspec (2.7.0)
|
|
83
|
+
rspec-core (~> 2.7.0)
|
|
84
|
+
rspec-expectations (~> 2.7.0)
|
|
85
|
+
rspec-mocks (~> 2.7.0)
|
|
86
|
+
rspec-core (2.7.0)
|
|
87
|
+
rspec-expectations (2.7.0)
|
|
96
88
|
diff-lcs (~> 1.1.2)
|
|
97
|
-
rspec-mocks (2.
|
|
98
|
-
ruby2ruby (1.
|
|
89
|
+
rspec-mocks (2.7.0)
|
|
90
|
+
ruby2ruby (1.3.1)
|
|
99
91
|
ruby_parser (~> 2.0)
|
|
100
92
|
sexp_processor (~> 3.0)
|
|
101
|
-
ruby_parser (2.
|
|
93
|
+
ruby_parser (2.3.1)
|
|
102
94
|
sexp_processor (~> 3.0)
|
|
103
|
-
rvm (1.
|
|
104
|
-
sexp_processor (3.0.
|
|
105
|
-
systemu (2.
|
|
106
|
-
term-ansicolor (1.0.
|
|
95
|
+
rvm (1.8.6)
|
|
96
|
+
sexp_processor (3.0.7)
|
|
97
|
+
systemu (2.4.0)
|
|
98
|
+
term-ansicolor (1.0.7)
|
|
107
99
|
thor (0.14.6)
|
|
108
|
-
treetop (1.4.
|
|
100
|
+
treetop (1.4.10)
|
|
101
|
+
polyglot
|
|
109
102
|
polyglot (>= 0.3.1)
|
|
110
103
|
uuidtools (2.1.2)
|
|
111
|
-
vagrant (0.7
|
|
104
|
+
vagrant (0.8.7)
|
|
112
105
|
archive-tar-minitar (= 0.5.2)
|
|
113
|
-
erubis (~> 2.
|
|
114
|
-
i18n (~> 0.
|
|
106
|
+
erubis (~> 2.7.0)
|
|
107
|
+
i18n (~> 0.6.0)
|
|
115
108
|
json (~> 1.5.1)
|
|
116
|
-
mario (~> 0.0.6)
|
|
117
109
|
net-scp (~> 1.0.4)
|
|
118
|
-
net-ssh (~> 2.1.
|
|
110
|
+
net-ssh (~> 2.1.4)
|
|
119
111
|
thor (~> 0.14.6)
|
|
120
|
-
virtualbox (~> 0.
|
|
121
|
-
virtualbox (0.
|
|
122
|
-
ffi (~> 0.
|
|
123
|
-
yajl-ruby (0.
|
|
112
|
+
virtualbox (~> 0.9.1)
|
|
113
|
+
virtualbox (0.9.2)
|
|
114
|
+
ffi (~> 1.0.9)
|
|
115
|
+
yajl-ruby (1.0.0)
|
|
124
116
|
yard (0.6.8)
|
|
125
117
|
|
|
126
118
|
PLATFORMS
|
|
127
119
|
ruby
|
|
128
120
|
|
|
129
121
|
DEPENDENCIES
|
|
130
|
-
|
|
131
|
-
bundler (~> 1.0.11)
|
|
122
|
+
bundler (~> 1.0.21)
|
|
132
123
|
chef (~> 0.10.0)
|
|
133
|
-
|
|
124
|
+
childprocess (>= 0.1.7)
|
|
125
|
+
cucumber (> 1.0.0)
|
|
134
126
|
fakefs (~> 0.3.1)
|
|
135
127
|
grit (~> 2.4.1)
|
|
136
128
|
jeweler (~> 1.5.2)
|
|
@@ -139,7 +131,7 @@ DEPENDENCIES
|
|
|
139
131
|
reek (~> 1.2.8)
|
|
140
132
|
roodi (~> 2.1.0)
|
|
141
133
|
rr (~> 1.0.2)
|
|
142
|
-
rspec (
|
|
143
|
-
rvm (~> 1.
|
|
144
|
-
vagrant (
|
|
134
|
+
rspec (>= 2.5.0)
|
|
135
|
+
rvm (~> 1.8.0)
|
|
136
|
+
vagrant (= 0.8.7)
|
|
145
137
|
yard (~> 0.6.0)
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.15
|
data/cuken.gems
CHANGED
|
@@ -4,21 +4,30 @@ activesupport -v3.0.5
|
|
|
4
4
|
amqp -v0.6.7
|
|
5
5
|
archive-tar-minitar -v0.5.2
|
|
6
6
|
arrayfields -v4.7.4
|
|
7
|
+
aruba -v0.3.6
|
|
7
8
|
aruba -v0.3.5
|
|
8
9
|
aruba -v0.3.4
|
|
9
10
|
aruba -v0.3.3
|
|
10
11
|
aruba -v0.3.2
|
|
11
12
|
builder -v3.0.0
|
|
13
|
+
bundler -v1.0.11
|
|
12
14
|
bundler -v1.0.7
|
|
13
15
|
bunny -v0.6.0
|
|
16
|
+
chef -v0.10.2
|
|
17
|
+
chef -v0.10.0
|
|
18
|
+
chef -v0.10.0.rc.1
|
|
19
|
+
chef -v0.10.0.rc.0
|
|
20
|
+
chef -v0.9.16
|
|
14
21
|
chef -v0.9.14
|
|
15
22
|
chef -v0.9.12
|
|
23
|
+
childprocess -v0.1.9
|
|
16
24
|
childprocess -v0.1.8
|
|
17
25
|
childprocess -v0.1.7
|
|
18
26
|
chronic -v0.2.3
|
|
19
27
|
churn -v0.0.13
|
|
20
28
|
colored -v1.2
|
|
21
29
|
columnize -v0.3.2
|
|
30
|
+
cucumber -v0.10.3
|
|
22
31
|
cucumber -v0.10.2
|
|
23
32
|
cucumber -v0.10.0
|
|
24
33
|
cucumber-nagios -v0.9.0
|
|
@@ -27,29 +36,40 @@ cuken -v0.1.4
|
|
|
27
36
|
cuken -v0.1.1
|
|
28
37
|
cuken -v0.1.0
|
|
29
38
|
diff-lcs -v1.1.2
|
|
39
|
+
erubis -v2.7.0
|
|
30
40
|
erubis -v2.6.6
|
|
31
41
|
eventmachine -v0.12.10
|
|
32
42
|
extlib -v0.9.15
|
|
43
|
+
fakefs -v0.3.2
|
|
33
44
|
fakefs -v0.3.1
|
|
34
45
|
fattr -v2.2.0
|
|
46
|
+
ffi -v1.0.9
|
|
35
47
|
ffi -v1.0.7
|
|
36
48
|
ffi -v0.6.3
|
|
37
49
|
flay -v1.4.2
|
|
38
50
|
flog -v2.5.1
|
|
51
|
+
gherkin -v2.3.9
|
|
52
|
+
gherkin -v2.3.7
|
|
53
|
+
gherkin -v2.3.6
|
|
39
54
|
gherkin -v2.3.5
|
|
40
55
|
gherkin -v2.3.4
|
|
41
56
|
git -v1.2.5
|
|
42
57
|
grit -v2.4.1
|
|
43
58
|
haml -v3.0.25
|
|
59
|
+
highline -v1.6.2
|
|
44
60
|
highline -v1.6.1
|
|
45
61
|
hirb -v0.4.0
|
|
46
62
|
hoe -v2.9.1
|
|
47
63
|
i18n -v0.5.0
|
|
48
64
|
jeweler -v1.5.2
|
|
65
|
+
json -v1.5.2
|
|
66
|
+
json -v1.5.1
|
|
49
67
|
json -v1.4.6
|
|
50
68
|
json_pure -v1.5.1
|
|
69
|
+
linecache19 -v0.5.12
|
|
51
70
|
linecache19 -v0.5.11
|
|
52
71
|
main -v4.4.0
|
|
72
|
+
mario -v0.0.6
|
|
53
73
|
mechanize -v1.0.0
|
|
54
74
|
metric_fu -v2.0.0
|
|
55
75
|
mime-types -v1.16
|
|
@@ -59,12 +79,18 @@ mixlib-config -v1.1.2
|
|
|
59
79
|
mixlib-log -v1.3.0
|
|
60
80
|
mixlib-log -v1.2.0
|
|
61
81
|
moneta -v0.6.0
|
|
82
|
+
net-scp -v1.0.4
|
|
83
|
+
net-ssh -v2.1.4
|
|
62
84
|
net-ssh -v2.1.3
|
|
63
85
|
net-ssh -v2.1.0
|
|
64
86
|
net-ssh -v2.0.18
|
|
87
|
+
net-ssh-gateway -v1.1.0
|
|
65
88
|
net-ssh-gateway -v1.0.1
|
|
66
89
|
net-ssh-multi -v1.0.1
|
|
67
90
|
nokogiri -v1.4.4
|
|
91
|
+
ohai -v0.6.4
|
|
92
|
+
ohai -v0.6.2
|
|
93
|
+
ohai -v0.6.0
|
|
68
94
|
ohai -v0.5.8
|
|
69
95
|
open4 -v1.0.1
|
|
70
96
|
polyglot -v0.3.1
|
|
@@ -72,37 +98,57 @@ rack -v1.2.2
|
|
|
72
98
|
rack -v1.2.1
|
|
73
99
|
rack-test -v0.5.7
|
|
74
100
|
rails_best_practices -v0.7.1
|
|
101
|
+
rake -v0.9.0
|
|
75
102
|
rake -v0.8.7
|
|
76
103
|
rcov -v0.9.9
|
|
77
104
|
reek -v1.2.8
|
|
78
105
|
relish -v0.2.2
|
|
106
|
+
relish -v0.0.3
|
|
107
|
+
rest-client -v1.6.3
|
|
79
108
|
rest-client -v1.6.1
|
|
80
109
|
roodi -v2.1.0
|
|
81
110
|
rr -v1.0.2
|
|
111
|
+
rspec -v2.6.0
|
|
82
112
|
rspec -v2.5.0
|
|
83
113
|
rspec -v2.3.0
|
|
114
|
+
rspec-core -v2.6.3
|
|
115
|
+
rspec-core -v2.5.2
|
|
84
116
|
rspec-core -v2.5.1
|
|
85
117
|
rspec-core -v2.3.1
|
|
118
|
+
rspec-expectations -v2.6.0
|
|
86
119
|
rspec-expectations -v2.5.0
|
|
87
120
|
rspec-expectations -v2.3.0
|
|
121
|
+
rspec-mocks -v2.6.0
|
|
88
122
|
rspec-mocks -v2.5.0
|
|
89
123
|
rspec-mocks -v2.3.0
|
|
124
|
+
ruby-debug-base19x -v0.11.27
|
|
90
125
|
ruby-debug-base19x -v0.11.26
|
|
91
126
|
ruby-debug-base19x -v0.11.25.jb3
|
|
92
127
|
ruby-debug-ide -v0.4.17.beta3
|
|
93
128
|
ruby-debug-ide -v0.4.17.beta2
|
|
94
129
|
ruby-progressbar -v0.0.9
|
|
95
130
|
ruby2ruby -v1.2.5
|
|
131
|
+
ruby_core_source -v0.1.5
|
|
96
132
|
ruby_core_source -v0.1.4
|
|
97
133
|
ruby_parser -v2.0.6
|
|
134
|
+
rvm -v1.6.5
|
|
98
135
|
rvm -v1.5.2
|
|
99
136
|
Saikuro -v1.1.0
|
|
100
137
|
sexp_processor -v3.0.5
|
|
101
138
|
ssh-forever -v0.4.0
|
|
139
|
+
systemu -v2.2.0
|
|
102
140
|
systemu -v1.2.0
|
|
103
141
|
templater -v1.0.0
|
|
104
142
|
term-ansicolor -v1.0.5
|
|
143
|
+
thor -v0.14.6
|
|
105
144
|
treetop -v1.4.9
|
|
106
145
|
uuidtools -v2.1.2
|
|
146
|
+
vagrant -v0.7.5
|
|
147
|
+
vagrant -v0.7.3
|
|
148
|
+
virtualbox -v0.8.6
|
|
149
|
+
virtualbox -v0.8.3
|
|
107
150
|
webrat -v0.7.2
|
|
151
|
+
yajl-ruby -v0.8.2
|
|
152
|
+
yard -v0.6.8
|
|
153
|
+
yard -v0.6.7
|
|
108
154
|
yard -v0.6.5
|