ronin-support 0.1.0.pre2 → 0.1.0.pre3
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/COPYING.txt +158 -497
- data/ChangeLog.md +1 -0
- data/Gemfile +3 -9
- data/README.md +11 -14
- data/gemspec.yml +1 -1
- data/lib/ronin/extensions.rb +11 -13
- data/lib/ronin/extensions/file.rb +11 -13
- data/lib/ronin/extensions/ip_addr.rb +11 -13
- data/lib/ronin/extensions/kernel.rb +11 -13
- data/lib/ronin/extensions/meta.rb +11 -13
- data/lib/ronin/extensions/string.rb +11 -13
- data/lib/ronin/formatting.rb +11 -13
- data/lib/ronin/formatting/binary.rb +11 -13
- data/lib/ronin/formatting/digest.rb +11 -13
- data/lib/ronin/formatting/extensions.rb +11 -13
- data/lib/ronin/formatting/extensions/binary.rb +11 -13
- data/lib/ronin/formatting/extensions/binary/file.rb +11 -13
- data/lib/ronin/formatting/extensions/binary/integer.rb +11 -13
- data/lib/ronin/formatting/extensions/binary/string.rb +11 -13
- data/lib/ronin/formatting/extensions/digest.rb +11 -13
- data/lib/ronin/formatting/extensions/digest/file.rb +11 -13
- data/lib/ronin/formatting/extensions/digest/string.rb +11 -13
- data/lib/ronin/formatting/extensions/http.rb +11 -13
- data/lib/ronin/formatting/extensions/http/integer.rb +11 -13
- data/lib/ronin/formatting/extensions/http/string.rb +11 -13
- data/lib/ronin/formatting/extensions/text.rb +11 -13
- data/lib/ronin/formatting/extensions/text/array.rb +11 -13
- data/lib/ronin/formatting/extensions/text/string.rb +11 -13
- data/lib/ronin/formatting/http.rb +11 -13
- data/lib/ronin/formatting/text.rb +11 -13
- data/lib/ronin/network.rb +11 -13
- data/lib/ronin/network/esmtp.rb +11 -13
- data/lib/ronin/network/extensions.rb +11 -13
- data/lib/ronin/network/extensions/esmtp.rb +11 -13
- data/lib/ronin/network/extensions/esmtp/net.rb +11 -13
- data/lib/ronin/network/extensions/http.rb +11 -13
- data/lib/ronin/network/extensions/http/net.rb +11 -13
- data/lib/ronin/network/extensions/imap.rb +11 -13
- data/lib/ronin/network/extensions/imap/net.rb +11 -13
- data/lib/ronin/network/extensions/pop3.rb +11 -13
- data/lib/ronin/network/extensions/pop3/net.rb +11 -13
- data/lib/ronin/network/extensions/smtp.rb +11 -13
- data/lib/ronin/network/extensions/smtp/net.rb +11 -13
- data/lib/ronin/network/extensions/ssl.rb +11 -13
- data/lib/ronin/network/extensions/ssl/net.rb +11 -13
- data/lib/ronin/network/extensions/tcp.rb +11 -13
- data/lib/ronin/network/extensions/tcp/net.rb +11 -13
- data/lib/ronin/network/extensions/telnet.rb +11 -13
- data/lib/ronin/network/extensions/telnet/net.rb +11 -13
- data/lib/ronin/network/extensions/udp.rb +11 -13
- data/lib/ronin/network/extensions/udp/net.rb +11 -13
- data/lib/ronin/network/http.rb +11 -13
- data/lib/ronin/network/http/exceptions.rb +11 -13
- data/lib/ronin/network/http/exceptions/unknown_request.rb +11 -13
- data/lib/ronin/network/http/http.rb +11 -13
- data/lib/ronin/network/http/proxy.rb +11 -13
- data/lib/ronin/network/imap.rb +11 -13
- data/lib/ronin/network/network.rb +11 -13
- data/lib/ronin/network/pop3.rb +11 -13
- data/lib/ronin/network/smtp.rb +11 -13
- data/lib/ronin/network/smtp/email.rb +11 -13
- data/lib/ronin/network/smtp/smtp.rb +11 -13
- data/lib/ronin/network/ssl.rb +11 -13
- data/lib/ronin/network/tcp.rb +11 -13
- data/lib/ronin/network/telnet.rb +11 -13
- data/lib/ronin/network/udp.rb +11 -13
- data/lib/ronin/path.rb +11 -13
- data/lib/ronin/support.rb +11 -13
- data/lib/ronin/support/inflector.rb +9 -10
- data/lib/ronin/support/version.rb +12 -14
- data/lib/ronin/templates.rb +11 -13
- data/lib/ronin/templates/erb.rb +11 -13
- data/lib/ronin/templates/template.rb +11 -13
- data/spec/extensions/ip_addr_spec.rb +5 -5
- data/spec/extensions/kernel_spec.rb +1 -1
- data/spec/extensions/string_spec.rb +6 -6
- data/spec/formatting/binary/integer_spec.rb +3 -3
- data/spec/formatting/binary/string_spec.rb +11 -11
- data/spec/formatting/digest/string_spec.rb +5 -5
- data/spec/formatting/http/integer_spec.rb +3 -3
- data/spec/formatting/http/string_spec.rb +5 -5
- data/spec/formatting/text/array_spec.rb +5 -5
- data/spec/formatting/text/string_spec.rb +5 -5
- data/spec/network/http/proxy_spec.rb +0 -2
- data/spec/path_spec.rb +9 -7
- metadata +4 -4
data/ChangeLog.md
CHANGED
data/Gemfile
CHANGED
@@ -9,15 +9,9 @@ end
|
|
9
9
|
group :development do
|
10
10
|
gem 'rake', '~> 0.8.7'
|
11
11
|
|
12
|
-
platforms :jruby do
|
13
|
-
gem 'BlueCloth'
|
14
|
-
end
|
15
|
-
|
16
|
-
platforms :ruby do
|
17
|
-
gem 'rdiscount', '~> 1.6.3'
|
18
|
-
end
|
19
|
-
|
20
12
|
gem 'ore-core', '~> 0.1.0'
|
21
13
|
gem 'ore-tasks', '~> 0.3.0'
|
22
|
-
gem 'rspec', '~> 2.
|
14
|
+
gem 'rspec', '~> 2.3.0'
|
15
|
+
|
16
|
+
gem 'kramdown', '~> 0.12.0'
|
23
17
|
end
|
data/README.md
CHANGED
@@ -77,22 +77,19 @@ please see [Everyday Ronin](http://ronin-ruby.github.com/resources/everyday_roni
|
|
77
77
|
|
78
78
|
## License
|
79
79
|
|
80
|
-
|
80
|
+
Copyright (c) 2006-2011 Hal Brodigan (postmodern.mod3 at gmail.com)
|
81
81
|
|
82
|
-
|
82
|
+
This file is part of Ronin Support.
|
83
83
|
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
84
|
+
Ronin Support is free software: you can redistribute it and/or modify
|
85
|
+
it under the terms of the GNU Lesser General Public License as publishe by
|
86
|
+
the Free Software Foundation, either version 3 of the License, or
|
87
|
+
(at your option) any later version.
|
88
88
|
|
89
|
-
|
89
|
+
Ronin Support is distributed in the hope that it will be useful,
|
90
90
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
91
|
-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
92
|
-
Lesser General Public License for more details.
|
93
|
-
|
94
|
-
You should have received a copy of the GNU Lesser General Public
|
95
|
-
License along with this library; if not, write to the Free Software
|
96
|
-
Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
97
|
-
Boston, MA 02110-1301 USA
|
91
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
92
|
+
GNU Lesser General Public License for more details.
|
98
93
|
|
94
|
+
You should have received a copy of the GNU Lesser General Public License
|
95
|
+
along with Ronin Support. If not, see <http://www.gnu.org/licenses/>.
|
data/gemspec.yml
CHANGED
@@ -4,7 +4,7 @@ description:
|
|
4
4
|
Ronin Support is a support library for Ronin. Ronin Support contains many
|
5
5
|
of the convenience methods used by Ronin and additional libraries.
|
6
6
|
|
7
|
-
license: LGPL-
|
7
|
+
license: LGPL-3
|
8
8
|
authors: Postmodern
|
9
9
|
email: postmodern.mod3@gmail.com
|
10
10
|
homepage: http://github.com/ronin-ruby/ronin-support
|
data/lib/ronin/extensions.rb
CHANGED
@@ -1,22 +1,20 @@
|
|
1
1
|
#
|
2
|
-
#
|
2
|
+
# Copyright (c) 2006-2011 Hal Brodigan (postmodern.mod3 at gmail.com)
|
3
3
|
#
|
4
|
-
#
|
4
|
+
# This file is part of Ronin Support.
|
5
5
|
#
|
6
|
-
#
|
7
|
-
#
|
8
|
-
#
|
9
|
-
#
|
6
|
+
# Ronin Support is free software: you can redistribute it and/or modify
|
7
|
+
# it under the terms of the GNU Lesser General Public License as publishe by
|
8
|
+
# the Free Software Foundation, either version 3 of the License, or
|
9
|
+
# (at your option) any later version.
|
10
10
|
#
|
11
|
-
#
|
11
|
+
# Ronin Support is distributed in the hope that it will be useful,
|
12
12
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
13
|
-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
14
|
-
# Lesser General Public License for more details.
|
13
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
14
|
+
# GNU Lesser General Public License for more details.
|
15
15
|
#
|
16
|
-
# You should have received a copy of the GNU Lesser General Public
|
17
|
-
#
|
18
|
-
# Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
19
|
-
# Boston, MA 02110-1301 USA
|
16
|
+
# You should have received a copy of the GNU Lesser General Public License
|
17
|
+
# along with Ronin Support. If not, see <http://www.gnu.org/licenses/>.
|
20
18
|
#
|
21
19
|
|
22
20
|
require 'ronin/extensions/meta'
|
@@ -1,22 +1,20 @@
|
|
1
1
|
#
|
2
|
-
#
|
2
|
+
# Copyright (c) 2006-2011 Hal Brodigan (postmodern.mod3 at gmail.com)
|
3
3
|
#
|
4
|
-
#
|
4
|
+
# This file is part of Ronin Support.
|
5
5
|
#
|
6
|
-
#
|
7
|
-
#
|
8
|
-
#
|
9
|
-
#
|
6
|
+
# Ronin Support is free software: you can redistribute it and/or modify
|
7
|
+
# it under the terms of the GNU Lesser General Public License as publishe by
|
8
|
+
# the Free Software Foundation, either version 3 of the License, or
|
9
|
+
# (at your option) any later version.
|
10
10
|
#
|
11
|
-
#
|
11
|
+
# Ronin Support is distributed in the hope that it will be useful,
|
12
12
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
13
|
-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
14
|
-
# Lesser General Public License for more details.
|
13
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
14
|
+
# GNU Lesser General Public License for more details.
|
15
15
|
#
|
16
|
-
# You should have received a copy of the GNU Lesser General Public
|
17
|
-
#
|
18
|
-
# Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
19
|
-
# Boston, MA 02110-1301 USA
|
16
|
+
# You should have received a copy of the GNU Lesser General Public License
|
17
|
+
# along with Ronin Support. If not, see <http://www.gnu.org/licenses/>.
|
20
18
|
#
|
21
19
|
|
22
20
|
class File
|
@@ -1,22 +1,20 @@
|
|
1
1
|
#
|
2
|
-
#
|
2
|
+
# Copyright (c) 2006-2011 Hal Brodigan (postmodern.mod3 at gmail.com)
|
3
3
|
#
|
4
|
-
#
|
4
|
+
# This file is part of Ronin Support.
|
5
5
|
#
|
6
|
-
#
|
7
|
-
#
|
8
|
-
#
|
9
|
-
#
|
6
|
+
# Ronin Support is free software: you can redistribute it and/or modify
|
7
|
+
# it under the terms of the GNU Lesser General Public License as publishe by
|
8
|
+
# the Free Software Foundation, either version 3 of the License, or
|
9
|
+
# (at your option) any later version.
|
10
10
|
#
|
11
|
-
#
|
11
|
+
# Ronin Support is distributed in the hope that it will be useful,
|
12
12
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
13
|
-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
14
|
-
# Lesser General Public License for more details.
|
13
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
14
|
+
# GNU Lesser General Public License for more details.
|
15
15
|
#
|
16
|
-
# You should have received a copy of the GNU Lesser General Public
|
17
|
-
#
|
18
|
-
# Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
19
|
-
# Boston, MA 02110-1301 USA
|
16
|
+
# You should have received a copy of the GNU Lesser General Public License
|
17
|
+
# along with Ronin Support. If not, see <http://www.gnu.org/licenses/>.
|
20
18
|
#
|
21
19
|
|
22
20
|
require 'ipaddr'
|
@@ -1,22 +1,20 @@
|
|
1
1
|
#
|
2
|
-
#
|
2
|
+
# Copyright (c) 2006-2011 Hal Brodigan (postmodern.mod3 at gmail.com)
|
3
3
|
#
|
4
|
-
#
|
4
|
+
# This file is part of Ronin Support.
|
5
5
|
#
|
6
|
-
#
|
7
|
-
#
|
8
|
-
#
|
9
|
-
#
|
6
|
+
# Ronin Support is free software: you can redistribute it and/or modify
|
7
|
+
# it under the terms of the GNU Lesser General Public License as publishe by
|
8
|
+
# the Free Software Foundation, either version 3 of the License, or
|
9
|
+
# (at your option) any later version.
|
10
10
|
#
|
11
|
-
#
|
11
|
+
# Ronin Support is distributed in the hope that it will be useful,
|
12
12
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
13
|
-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
14
|
-
# Lesser General Public License for more details.
|
13
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
14
|
+
# GNU Lesser General Public License for more details.
|
15
15
|
#
|
16
|
-
# You should have received a copy of the GNU Lesser General Public
|
17
|
-
#
|
18
|
-
# Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
19
|
-
# Boston, MA 02110-1301 USA
|
16
|
+
# You should have received a copy of the GNU Lesser General Public License
|
17
|
+
# along with Ronin Support. If not, see <http://www.gnu.org/licenses/>.
|
20
18
|
#
|
21
19
|
|
22
20
|
module Kernel
|
@@ -1,22 +1,20 @@
|
|
1
1
|
#
|
2
|
-
#
|
2
|
+
# Copyright (c) 2006-2011 Hal Brodigan (postmodern.mod3 at gmail.com)
|
3
3
|
#
|
4
|
-
#
|
4
|
+
# This file is part of Ronin Support.
|
5
5
|
#
|
6
|
-
#
|
7
|
-
#
|
8
|
-
#
|
9
|
-
#
|
6
|
+
# Ronin Support is free software: you can redistribute it and/or modify
|
7
|
+
# it under the terms of the GNU Lesser General Public License as publishe by
|
8
|
+
# the Free Software Foundation, either version 3 of the License, or
|
9
|
+
# (at your option) any later version.
|
10
10
|
#
|
11
|
-
#
|
11
|
+
# Ronin Support is distributed in the hope that it will be useful,
|
12
12
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
13
|
-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
14
|
-
# Lesser General Public License for more details.
|
13
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
14
|
+
# GNU Lesser General Public License for more details.
|
15
15
|
#
|
16
|
-
# You should have received a copy of the GNU Lesser General Public
|
17
|
-
#
|
18
|
-
# Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
19
|
-
# Boston, MA 02110-1301 USA
|
16
|
+
# You should have received a copy of the GNU Lesser General Public License
|
17
|
+
# along with Ronin Support. If not, see <http://www.gnu.org/licenses/>.
|
20
18
|
#
|
21
19
|
|
22
20
|
require 'ronin/extensions/meta/object'
|
@@ -1,22 +1,20 @@
|
|
1
1
|
#
|
2
|
-
#
|
2
|
+
# Copyright (c) 2006-2011 Hal Brodigan (postmodern.mod3 at gmail.com)
|
3
3
|
#
|
4
|
-
#
|
4
|
+
# This file is part of Ronin Support.
|
5
5
|
#
|
6
|
-
#
|
7
|
-
#
|
8
|
-
#
|
9
|
-
#
|
6
|
+
# Ronin Support is free software: you can redistribute it and/or modify
|
7
|
+
# it under the terms of the GNU Lesser General Public License as publishe by
|
8
|
+
# the Free Software Foundation, either version 3 of the License, or
|
9
|
+
# (at your option) any later version.
|
10
10
|
#
|
11
|
-
#
|
11
|
+
# Ronin Support is distributed in the hope that it will be useful,
|
12
12
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
13
|
-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
14
|
-
# Lesser General Public License for more details.
|
13
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
14
|
+
# GNU Lesser General Public License for more details.
|
15
15
|
#
|
16
|
-
# You should have received a copy of the GNU Lesser General Public
|
17
|
-
#
|
18
|
-
# Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
19
|
-
# Boston, MA 02110-1301 USA
|
16
|
+
# You should have received a copy of the GNU Lesser General Public License
|
17
|
+
# along with Ronin Support. If not, see <http://www.gnu.org/licenses/>.
|
20
18
|
#
|
21
19
|
|
22
20
|
class String
|
data/lib/ronin/formatting.rb
CHANGED
@@ -1,22 +1,20 @@
|
|
1
1
|
#
|
2
|
-
#
|
2
|
+
# Copyright (c) 2006-2011 Hal Brodigan (postmodern.mod3 at gmail.com)
|
3
3
|
#
|
4
|
-
#
|
4
|
+
# This file is part of Ronin Support.
|
5
5
|
#
|
6
|
-
#
|
7
|
-
#
|
8
|
-
#
|
9
|
-
#
|
6
|
+
# Ronin Support is free software: you can redistribute it and/or modify
|
7
|
+
# it under the terms of the GNU Lesser General Public License as publishe by
|
8
|
+
# the Free Software Foundation, either version 3 of the License, or
|
9
|
+
# (at your option) any later version.
|
10
10
|
#
|
11
|
-
#
|
11
|
+
# Ronin Support is distributed in the hope that it will be useful,
|
12
12
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
13
|
-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
14
|
-
# Lesser General Public License for more details.
|
13
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
14
|
+
# GNU Lesser General Public License for more details.
|
15
15
|
#
|
16
|
-
# You should have received a copy of the GNU Lesser General Public
|
17
|
-
#
|
18
|
-
# Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
19
|
-
# Boston, MA 02110-1301 USA
|
16
|
+
# You should have received a copy of the GNU Lesser General Public License
|
17
|
+
# along with Ronin Support. If not, see <http://www.gnu.org/licenses/>.
|
20
18
|
#
|
21
19
|
|
22
20
|
require 'ronin/formatting/extensions'
|
@@ -1,22 +1,20 @@
|
|
1
1
|
#
|
2
|
-
#
|
2
|
+
# Copyright (c) 2006-2011 Hal Brodigan (postmodern.mod3 at gmail.com)
|
3
3
|
#
|
4
|
-
#
|
4
|
+
# This file is part of Ronin Support.
|
5
5
|
#
|
6
|
-
#
|
7
|
-
#
|
8
|
-
#
|
9
|
-
#
|
6
|
+
# Ronin Support is free software: you can redistribute it and/or modify
|
7
|
+
# it under the terms of the GNU Lesser General Public License as publishe by
|
8
|
+
# the Free Software Foundation, either version 3 of the License, or
|
9
|
+
# (at your option) any later version.
|
10
10
|
#
|
11
|
-
#
|
11
|
+
# Ronin Support is distributed in the hope that it will be useful,
|
12
12
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
13
|
-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
14
|
-
# Lesser General Public License for more details.
|
13
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
14
|
+
# GNU Lesser General Public License for more details.
|
15
15
|
#
|
16
|
-
# You should have received a copy of the GNU Lesser General Public
|
17
|
-
#
|
18
|
-
# Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
19
|
-
# Boston, MA 02110-1301 USA
|
16
|
+
# You should have received a copy of the GNU Lesser General Public License
|
17
|
+
# along with Ronin Support. If not, see <http://www.gnu.org/licenses/>.
|
20
18
|
#
|
21
19
|
|
22
20
|
require 'ronin/formatting/extensions/binary'
|
@@ -1,22 +1,20 @@
|
|
1
1
|
#
|
2
|
-
#
|
2
|
+
# Copyright (c) 2006-2011 Hal Brodigan (postmodern.mod3 at gmail.com)
|
3
3
|
#
|
4
|
-
#
|
4
|
+
# This file is part of Ronin Support.
|
5
5
|
#
|
6
|
-
#
|
7
|
-
#
|
8
|
-
#
|
9
|
-
#
|
6
|
+
# Ronin Support is free software: you can redistribute it and/or modify
|
7
|
+
# it under the terms of the GNU Lesser General Public License as publishe by
|
8
|
+
# the Free Software Foundation, either version 3 of the License, or
|
9
|
+
# (at your option) any later version.
|
10
10
|
#
|
11
|
-
#
|
11
|
+
# Ronin Support is distributed in the hope that it will be useful,
|
12
12
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
13
|
-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
14
|
-
# Lesser General Public License for more details.
|
13
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
14
|
+
# GNU Lesser General Public License for more details.
|
15
15
|
#
|
16
|
-
# You should have received a copy of the GNU Lesser General Public
|
17
|
-
#
|
18
|
-
# Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
19
|
-
# Boston, MA 02110-1301 USA
|
16
|
+
# You should have received a copy of the GNU Lesser General Public License
|
17
|
+
# along with Ronin Support. If not, see <http://www.gnu.org/licenses/>.
|
20
18
|
#
|
21
19
|
|
22
20
|
require 'ronin/formatting/extensions/digest'
|
@@ -1,22 +1,20 @@
|
|
1
1
|
#
|
2
|
-
#
|
2
|
+
# Copyright (c) 2006-2011 Hal Brodigan (postmodern.mod3 at gmail.com)
|
3
3
|
#
|
4
|
-
#
|
4
|
+
# This file is part of Ronin Support.
|
5
5
|
#
|
6
|
-
#
|
7
|
-
#
|
8
|
-
#
|
9
|
-
#
|
6
|
+
# Ronin Support is free software: you can redistribute it and/or modify
|
7
|
+
# it under the terms of the GNU Lesser General Public License as publishe by
|
8
|
+
# the Free Software Foundation, either version 3 of the License, or
|
9
|
+
# (at your option) any later version.
|
10
10
|
#
|
11
|
-
#
|
11
|
+
# Ronin Support is distributed in the hope that it will be useful,
|
12
12
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
13
|
-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
14
|
-
# Lesser General Public License for more details.
|
13
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
14
|
+
# GNU Lesser General Public License for more details.
|
15
15
|
#
|
16
|
-
# You should have received a copy of the GNU Lesser General Public
|
17
|
-
#
|
18
|
-
# Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
19
|
-
# Boston, MA 02110-1301 USA
|
16
|
+
# You should have received a copy of the GNU Lesser General Public License
|
17
|
+
# along with Ronin Support. If not, see <http://www.gnu.org/licenses/>.
|
20
18
|
#
|
21
19
|
|
22
20
|
require 'ronin/formatting/extensions/binary'
|
@@ -1,22 +1,20 @@
|
|
1
1
|
#
|
2
|
-
#
|
2
|
+
# Copyright (c) 2006-2011 Hal Brodigan (postmodern.mod3 at gmail.com)
|
3
3
|
#
|
4
|
-
#
|
4
|
+
# This file is part of Ronin Support.
|
5
5
|
#
|
6
|
-
#
|
7
|
-
#
|
8
|
-
#
|
9
|
-
#
|
6
|
+
# Ronin Support is free software: you can redistribute it and/or modify
|
7
|
+
# it under the terms of the GNU Lesser General Public License as publishe by
|
8
|
+
# the Free Software Foundation, either version 3 of the License, or
|
9
|
+
# (at your option) any later version.
|
10
10
|
#
|
11
|
-
#
|
11
|
+
# Ronin Support is distributed in the hope that it will be useful,
|
12
12
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
13
|
-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
14
|
-
# Lesser General Public License for more details.
|
13
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
14
|
+
# GNU Lesser General Public License for more details.
|
15
15
|
#
|
16
|
-
# You should have received a copy of the GNU Lesser General Public
|
17
|
-
#
|
18
|
-
# Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
19
|
-
# Boston, MA 02110-1301 USA
|
16
|
+
# You should have received a copy of the GNU Lesser General Public License
|
17
|
+
# along with Ronin Support. If not, see <http://www.gnu.org/licenses/>.
|
20
18
|
#
|
21
19
|
|
22
20
|
require 'ronin/formatting/extensions/binary/integer'
|