Skip to content

Commit cf95c9f

Browse files
author
Pedro Ribeiro
authored
Merge pull request #25 from rapid7/master
asasa
2 parents fbb18b5 + 1281265 commit cf95c9f

File tree

457 files changed

+15314
-16215
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

457 files changed

+15314
-16215
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,3 +84,4 @@ data/meterpreter/ext_server_pivot.*.dll
8484
# Avoid checking in metakitty, the source for
8585
# https://rapid7.github.io/metasploit-framework. It's an orphan branch.
8686
/metakitty
87+
.vagrant

.mailmap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ wchen-r7 <wchen-r7@github> <[email protected]> # aka sinn3r
3737
wchen-r7 <wchen-r7@github> <[email protected]>
3838
wvu-r7 <wvu-r7@github> William Vu <[email protected]>
3939
wvu-r7 <wvu-r7@github> William Vu <[email protected]>
40-
wvu-r7 <wvu-r7@github> William Vu <[email protected]>
40+
wvu-r7 <wvu-r7@github> William Vu <wvu@cs.nmt.edu>
4141
wvu-r7 <wvu-r7@github> wvu-r7 <[email protected]>
4242
wwebb-r7 <wwebb-r7@github> William Webb <[email protected]>
4343

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.1.9
1+
2.3.1

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ addons:
1010
- graphviz
1111
language: ruby
1212
rvm:
13-
- '2.1.8'
13+
- '2.3.1'
1414

1515
env:
1616
- RAKE_TASKS="cucumber cucumber:boot" CREATE_BINSTUBS=true

CONTRIBUTING.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ and Metasploit's [Common Coding Mistakes].
4545
* **Do** specify a descriptive title to make searching for your pull request easier.
4646
* **Do** include [console output], especially for witnessable effects in `msfconsole`.
4747
* **Do** list [verification steps] so your code is testable.
48+
* **Do** [reference associated issues] in your pull request description
4849
* **Don't** leave your pull request description blank.
4950
* **Don't** abandon your pull request. Being responsive helps us land your code faster.
5051

@@ -56,6 +57,10 @@ Pull requests [PR#2940] and [PR#3043] are a couple good examples to follow.
5657
- It would be even better to set up `msftidy.rb` as a [pre-commit hook].
5758
* **Do** use the many module mixin [API]s. Wheel improvements are welcome; wheel reinventions, not so much.
5859
* **Don't** include more than one module per pull request.
60+
* **Do** include instructions on how to setup the vulnerable environment or software
61+
* **Do** include [Module Documentation](https://github.com/rapid7/metasploit-framework/wiki/Generating-Module-Documentation) showing sample run-throughs
62+
63+
5964

6065
#### Scripts
6166

@@ -102,6 +107,7 @@ already way ahead of the curve, so keep it up!
102107
[topic branch]:http://git-scm.com/book/en/Git-Branching-Branching-Workflows#Topic-Branches
103108
[console output]:https://help.github.com/articles/github-flavored-markdown#fenced-code-blocks
104109
[verification steps]:https://help.github.com/articles/writing-on-github#task-lists
110+
[reference associated issues]:https://github.com/blog/1506-closing-issues-via-pull-requests
105111
[PR#2940]:https://github.com/rapid7/metasploit-framework/pull/2940
106112
[PR#3043]:https://github.com/rapid7/metasploit-framework/pull/3043
107113
[pre-commit hook]:https://github.com/rapid7/metasploit-framework/blob/master/tools/dev/pre-commit-hook.rb

Gemfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ end
2525

2626
group :development, :test do
2727
# automatically include factories from spec/factories
28-
gem 'factory_girl_rails', '~> 4.5.0'
28+
gem 'factory_girl_rails'
2929
# Make rspec output shorter and more useful
30-
gem 'fivemat', '~> 1.3.1'
30+
gem 'fivemat'
3131
# running documentation generation tasks and rspec tasks
32-
gem 'rake', '>= 10.0.0'
32+
gem 'rake'
3333
# Define `rake spec`. Must be in development AND test so that its available by default as a rake test when the
3434
# environment is development
35-
gem 'rspec-rails' , '~> 3.3'
35+
gem 'rspec-rails'
3636
end
3737

3838
group :test do

0 commit comments

Comments
 (0)