Skip to content
This repository has been archived by the owner on Mar 28, 2023. It is now read-only.

Update dependencies #4

Merged
merged 7 commits into from
Feb 20, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.9.3
2.2.2
12 changes: 3 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,9 @@
language: ruby
rvm:
- 1.9.3
- 2.0
- 2.1
- 2.3.1
- 2.4.2
- ruby-head
- jruby-19mode
- jruby-head
- rbx-2
matrix:
allow_failures:
- rvm: rbx-2
- jruby-9.1.9.0
addons:
code_climate:
repo_token: 49ec5cc372755982c021444f2876490755eb61ea66c20660a77a9563491b25be
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ A phishing toolkit for generating and sending phishing emails.
Content-Type: text/html;
charset=ISO-8895-1
Content-Transfer-Encoding: 7bit

<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
Expand All @@ -109,13 +109,13 @@ A phishing toolkit for generating and sending phishing emails.

## Requirements

* [Ruby] >= 1.9.3
* [activesupport] ~> 3.2
* [Ruby] >= 2.2.2
* [activesupport] ~> 5.1
* [shorturl] ~> 1.0
* [liquid] ~> 2.4
* [nokogiri] ~> 1.6
* [nokogiri] ~> 1.8
* [chars] ~> 0.2
* [mail] ~> 2.5
* [mail] ~> 2.7

## Install

Expand Down
6 changes: 3 additions & 3 deletions tackle_box.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ Gem::Specification.new do |gem|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ['lib']

gem.add_dependency 'activesupport', '~> 3.2'
gem.add_dependency 'activesupport', '~> 5.1'
gem.add_dependency 'shorturl', '~> 1.0'
gem.add_dependency 'liquid', '~> 2.4'
gem.add_dependency 'nokogiri', '~> 1.6'
gem.add_dependency 'nokogiri', '~> 1.8'
gem.add_dependency 'chars', '~> 0.2'
gem.add_dependency 'mail', '~> 2.5'
gem.add_dependency 'mail', '~> 2.7'

gem.add_development_dependency 'bundler', '~> 1.0'
end