ronin-support 0.1.0.pre2 → 0.1.0.pre3
Sign up to get free protection for your applications and to get access to all the features.
- 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
@@ -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/string'
|
@@ -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 Integer
|
@@ -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'
|
@@ -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/string'
|
@@ -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 'digest/md5'
|
@@ -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 'digest/md5'
|
@@ -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/http/integer'
|
@@ -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 'uri'
|
@@ -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/http/integer'
|
@@ -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/text/string'
|
@@ -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 Array
|
@@ -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 'chars'
|
@@ -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/http'
|