knowbe4_hiring 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: c9444d93087685bb733bffcf745be78e0451347ce4a501589aac98d9d3fbcb31
4
+ data.tar.gz: 24751b6a0a257bbdcc5920e3d7a655d2fee9c53cc80893049978097fca6a12e8
5
+ SHA512:
6
+ metadata.gz: 7b8bc04940a1fc44fdc066a7db866346aaff9817d1fd56f59069155efbe544d27115203877d6ba6a643d465ed1f89a28613a99a229777e46d77eb70bdea5065b
7
+ data.tar.gz: 74d38e1a3cd4cff724d0866cf6ce9437a8eb7f4089127b9de9cdf92608d99c3242ac540fd1dc8e0fd5460640df3fc0ccc87720b579a0f3c865b0a6431e791f84
data/.gitignore ADDED
@@ -0,0 +1,8 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
data/.rubocop.yml ADDED
@@ -0,0 +1,6 @@
1
+ inherit_from: .rubocop_todo.yml
2
+
3
+
4
+ AllCops:
5
+ Exclude:
6
+ - '*.gemspec'
data/.rubocop_todo.yml ADDED
@@ -0,0 +1 @@
1
+
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in knowbe4_hiring.gemspec
4
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,22 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ knowbe4_hiring (0.1.0)
5
+ os (~> 1.0)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ os (1.0.0)
11
+ rake (10.5.0)
12
+
13
+ PLATFORMS
14
+ ruby
15
+
16
+ DEPENDENCIES
17
+ bundler (~> 2.0)
18
+ knowbe4_hiring!
19
+ rake (~> 10.0)
20
+
21
+ BUNDLED WITH
22
+ 2.0.1
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2019 benj
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,39 @@
1
+ # Knowbe4Hiring
2
+
3
+ KnowBe4, Inc. is a high growth information security company. We are the world’s largest provider of new-school security awareness training and simulated phishing. KnowBe4 was created to help organizations manage the ongoing problem of social engineering. Tens of thousands of organizations worldwide use KnowBe4’s platform to mobilize their end users as a last line of defense and enable them to make better security decisions, every day. We are ranked #1 best place to work in technology nationwide by Fortune Magazine and have placed #1 or #2 in The Tampa Bay Best Workplaces Survey for the last three years. We also just had our 23rd record-setting quarter in a row!
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'knowbe4_hiring'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install knowbe4_hiring
20
+
21
+ ## Usage
22
+
23
+ ```ruby
24
+ Knowbe4Hiring::Jobs.all[0].apply(name)
25
+ ```
26
+
27
+ ## Development
28
+
29
+ After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
+
31
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/knowbe4_hiring.
36
+
37
+ ## License
38
+
39
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require 'bundler/gem_tasks'
2
+ task default: :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'bundler/setup'
4
+ require 'knowbe4_hiring'
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require 'irb'
14
+ IRB.start(__FILE__)
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,26 @@
1
+ lib = File.expand_path('lib', __dir__)
2
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
+ require 'knowbe4_hiring/version'
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = 'knowbe4_hiring'
7
+ spec.version = Knowbe4Hiring::VERSION
8
+ spec.authors = ['Ben Jehl']
9
+ spec.email = ['benj@knowbe4.com']
10
+
11
+ spec.summary = 'Available Software Development jobs at Knowbe4'
12
+ spec.description = 'KnowBe4, Inc. is a high growth information security company. We are the world’s largest provider of new-school security awareness training and simulated phishing. KnowBe4 was created to help organizations manage the ongoing problem of social engineering. Tens of thousands of organizations worldwide use KnowBe4’s platform to mobilize their end users as a last line of defense and enable them to make better security decisions, every day. We are ranked #1 best place to work in technology nationwide by Fortune Magazine and have placed #1 or #2 in The Tampa Bay Best Workplaces Survey for the last three years. We also just had our 23rd record-setting quarter in a row!'
13
+ spec.homepage = 'https://rubygems.org/gems/knowbe4_hiring'
14
+ spec.license = 'MIT'
15
+
16
+ spec.files = Dir.chdir(File.expand_path(__dir__)) do
17
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(spec)/}) }
18
+ end
19
+ spec.bindir = 'exe'
20
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
21
+ spec.require_paths = ['lib']
22
+
23
+ spec.add_development_dependency 'bundler', '~> 2.0'
24
+ spec.add_development_dependency 'rake', '~> 10.0'
25
+ spec.add_dependency 'os', '~> 1.0'
26
+ end
@@ -0,0 +1,10 @@
1
+ require 'json'
2
+ require 'os'
3
+
4
+ require 'knowbe4_hiring/version'
5
+ require 'knowbe4_hiring/jobs'
6
+ require 'knowbe4_hiring/job'
7
+
8
+ module Knowbe4Hiring
9
+ class Error < StandardError; end
10
+ end
@@ -0,0 +1,48 @@
1
+ module Knowbe4Hiring
2
+ # this class creates a job
3
+ class Job
4
+ attr_reader :id, :title, :language, :location, :mission_statement,
5
+ :desired_abilities, :responsibilities, :requirements,
6
+ :additional_qualifications
7
+
8
+ def initialize(options)
9
+ @id = options[:id]
10
+ @title = options[:title]
11
+ @language = options[:language]
12
+ @location = options[:location]
13
+ @mission_statement = options[:mission_statement]
14
+ @desired_abilities = options[:desired_abilities]
15
+ @responsibilities = options[:responsibilities]
16
+ @requirements = options[:requirements]
17
+ @additional_qualifications = options[:additional_qualifications]
18
+ end
19
+
20
+ def apply(name)
21
+ `#{OS.open_file_command} #{mail_to_link(name)}`
22
+ end
23
+
24
+ private
25
+
26
+ def mail_to_link(name)
27
+ "mailto:\"hirethebest@knowbe4.com?subject=#{subject}&body=#{body(name)}\""
28
+ end
29
+
30
+ def subject
31
+ "Application from Rails Conf, Job Opening: #{title}"
32
+ end
33
+
34
+ def full_position
35
+ "#{language} #{title} position"
36
+ end
37
+
38
+ def body(name)
39
+ body = "Hello KnowBe4 Hiring Team,\n"
40
+ body += "My name is #{name} and I am interested in the #{full_position}."
41
+ body += 'I would like to be considered for this role because I meet the '
42
+ body += "following requirements: #{requirements}."
43
+ body += "I welcome the opportunity to discuss this position further.\n\n"
44
+ body += "Regards,\n#{name}"
45
+ body
46
+ end
47
+ end
48
+ end
@@ -0,0 +1,68 @@
1
+ [
2
+ {
3
+ "id": 1,
4
+ "title": "Software Engineer",
5
+ "language": "Ruby on Rails",
6
+ "location": "Clearwater, FL",
7
+ "mission_statement": "KnowBe4, Inc. is a high growth information security company. We are the world’s largest provider of new-school security awareness training and simulated phishing. KnowBe4 was created to help organizations manage the ongoing problem of social engineering. Tens of thousands of organizations worldwide use KnowBe4’s platform to mobilize their end users as a last line of defense and enable them to make better security decisions, every day. We are ranked #1 best place to work in technology nationwide by Fortune Magazine and have placed #1 or #2 in The Tampa Bay Best Workplaces Survey for the last three years. We also just had our 23rd record-setting quarter in a row!",
8
+ "desired_abilities": "",
9
+ "responsibilities": "Design and develop Ruby on Rails web applications in an agile development environment. Evaluate and utilize cutting edge JavaScript frameworks. Design and develop Ruby back end solutions. Rapidly prototype and refine applications based on user experience feedback. Collaborate with product managers and fellow engineers to establish and refine requirements",
10
+ "requirements": "Strong understanding of Ruby on Rails. Experience building commercial web applications using Ruby on Rails. Strong with JavaScript frameworks such as jQuery. Experience developing in Ruby or similar languages. Able to leverage structured formats like JSON, YAML, XML and related technologies to build scalable, testable RESTful applications. Experience with common SQL data layers such as MySQL. Built applications with current and forward-facing web standards like CSS3 and HTML5. Used automated unit testing tools. Used Behavior-driven development (BDD) tools like Cucumber or RSpec. Experience with Amazon Web Services (AWS)",
11
+ "additional_qualifications": "Communication skills, verbal & written. 4+ years of relevant experience. B.S. or B.A. in Computer Science or Software Engineering (or comparable work experience)"
12
+ },
13
+ {
14
+ "id": 2,
15
+ "title": "Senior Software Engineer",
16
+ "language": "Node, Python, Docker, MySQL",
17
+ "location": "Clearwater, FL",
18
+ "mission_statement": "KnowBe4, Inc. is a high growth information security company. We are the world’s largest provider of new-school security awareness training and simulated phishing. KnowBe4 was created to help organizations manage the ongoing problem of social engineering. Tens of thousands of organizations worldwide use KnowBe4’s platform to mobilize their end users as a last line of defense and enable them to make better security decisions, every day. We are ranked #1 best place to work in technology nationwide by Fortune Magazine and have placed #1 or #2 in The Tampa Bay Best Workplaces Survey for the last three years. We also just had our 23rd record-setting quarter in a row! We are looking for an outstanding software engineer to work on exciting products for KnowBe4’s customers, working in our Artificial Intelligence Group. While you need to understand reasonable software security practices, you do not need to have a background in information security. We just need you to be a great engineer, bring new ideas to the table, and ship software! You’ll work together with other engineers in a fast-paced, agile development environment. Our highly collaborative teams rapidly release software in an environment where innovation is applauded, and minimizing distractions from real work is top priority.",
19
+ "desired_abilities": "Strong knowledge in modern development processes, architectures, software development best practices and demonstrated experience of successful application of those practices. A strong full stack software development background. A strong understanding of technical architectures within Amazon Web Services (AWS) or similar cloud services. A strong understanding and working knowledge of docker/containers. Effective communication skills with the ability to influence/collaborate with multiple teams to ensure there is no delay in new releases forecasted on the product roadmap. A proven track record demonstrating ability to develop high-quality software in a fast paced environment. Excitement about working with highly-skilled teams, collaborating, and contributing new ideas. Willingness to learn new programming languages (like Golang) and technologies",
20
+ "responsibilities": "Design and develop Node, Python applications in an agile development environment. Design and develop back end solutions and APIs with Node, Python. Rapidly prototype and refine applications based on user experience feedback. Collaborate with product managers and fellow engineers to establish and refine requirements",
21
+ "requirements": "Strong understanding of Node, Python, Docker. Experience building commercial web applications using Node and Python. Able to leverage structured formats like JSON, YAML, XML and related technologies to build scalable, testable RESTful applications. Experience with common SQL data layers such as MySQL. Built applications with current and forward-facing web standards like CSS3 and HTML5. Used automated unit testing tools. Used Behavior-driven development (BDD) tools. Experience with Amazon Web Services (AWS) or other cloud providers",
22
+ "additional_qualifications": "5 +years of relevant experience. B.S. or B.A. in Computer Science or Software. Engineering (or comparable work experience). AWS certifications a plus. Familiarity with AWS Managed services like DynamoDB, Aurora, Kinesis, ElastiCache, or CI/CD tools such as Terraform, AWS CodeDeploy a plus.Familiarity with AI technologies a plus"
23
+ },
24
+ {
25
+ "id": 3,
26
+ "title": "Site Reliability Engineer",
27
+ "language": "",
28
+ "location": "Clearwater, FL",
29
+ "mission_statement": "KnowBe4’s Dev Team is growing. KnowBe4, Inc. is a high growth information security company. We are the world’s largest provider of new-school security awareness training and simulated phishing. KnowBe4 was created to help organizations manage the ongoing problem of social engineering. Tens of thousands of organizations worldwide use KnowBe4’s platform to mobilize their end users as a last line of defense and enable them to make better security decisions, every day. We are ranked #1 best place to work in technology nationwide by Fortune Magazine and have placed #1 or #2 in The Tampa Bay Best Workplaces Survey for the last three years. We also just had our 23rd record-setting quarter in a row!",
30
+ "desired_abilities": "",
31
+ "responsibilities": "Learn, maintain, and improve our existing deployment, monitoring, and alerting systems. Work alongside other engineers to not only get our products into the cloud, but to drive the implementation, development, and documentation of them. Assist with finding deficiencies in our current applications and infrastructure and correcting them",
32
+ "requirements": "Participate in an on-call rotation to support our production services. Full-Time Position Only, No C2C . 2+ years experience working with complex systems in AWS. 2+ years experience in software development. 2+ years experience with Docker and container orchestration. 5+ years experience with Linux/Unix administration. Experience with automation and configuration management tools like Ansible, Puppet, or an equivalent. Excellent understanding of modern web application architecture, such as load balancing, front-end vs back-end networking. Excellent command of at least one programming language. Ability to quickly grasp new languages (such as Go, Python, and Ruby) and technologies. An eagerness to work with the latest technologies and expand your skill set. Able to ship code quickly and efficiently with zero downtime. Great communicator and team player. Creativity, initiative and acute attention to detail",
33
+ "additional_qualifications": "AWS Certification(s). Managed production infrastructure in ECS or Kubernetes. Templated AWS Infrastructure with Terraform or Cloudformation. Experience deploying and managing serverless architecture with AWS Lambda. Experience with security and compliance standards and frameworks (SOC2, PCI, NIST, ISO). Degree in Computer Science or equivalent background"
34
+ },
35
+ {
36
+ "id": 4,
37
+ "title": "Software Development Manager",
38
+ "language": "",
39
+ "location": "Clearwater, FL",
40
+ "mission_statement": "KnowBe4, Inc. is a high growth information security company. We are the world’s largest provider of new-school security awareness training and simulated phishing. KnowBe4 was created to help organizations manage the ongoing problem of social engineering. Tens of thousands of organizations worldwide use KnowBe4’s platform to mobilize their end users as a last line of defense and enable them to make better security decisions, every day. We are ranked #1 best place to work in technology nationwide by Fortune Magazine and have placed #1 or #2 in The Tampa Bay Best Workplaces Survey for the last three years. We also just had our 23rd record-setting quarter in a row!. The Software Engineering Manager at KnowBe4 leads a team of software engineers, enforces the software development process, enforces quality standards and on-time delivery.",
41
+ "desired_abilities": "",
42
+ "responsibilities": "Lead a high-performing development team of 5 to 6 software engineers to design, implement, and help operate key portions of the KnowBe4 platform. Make critical decisions regarding technology selection, balance feature and operational priorities, and set high standards for quality and on-time delivery. Collaborate effectively with peer teams across KnowBe4 to bring the product to market, followed by delivering additional features at a rapid pace. Make sure the software development process is followed and make sure the security and quality of the code is at the highest standards",
43
+ "requirements": "Experience with Gmail and Google Docs. Experience with MS Office (Word and Excel). Experience with web browsers (Chrome, Internet Explorer, etc.). A proven track record demonstrating your ability to lead successful engineering teams and build outstanding product. Should be a skilled coder who enjoys helping teams solve technical challenges. A passion for building great product. Fantastic communication and influencing/collaboration skills. Someone excited about building teams",
44
+ "additional_qualifications": ""
45
+ },
46
+ {
47
+ "id": 5,
48
+ "title": "Software Engineer",
49
+ "language": "GO (Golang)",
50
+ "location": "Clearwater, FL",
51
+ "mission_statement": "KnowBe4, Inc. is a high growth information security company. We are the world’s largest provider of new-school security awareness training and simulated phishing. KnowBe4 was created to help organizations manage the ongoing problem of social engineering. Tens of thousands of organizations worldwide use KnowBe4’s platform to mobilize their end users as a last line of defense and enable them to make better security decisions, every day. We are ranked #1 best place to work in technology nationwide by Fortune Magazine and have placed #1 or #2 in The Tampa Bay Best Workplaces Survey for the last three years. We also just had our 23rd record-setting quarter in a row! We are looking for an outstanding software engineer to work on exciting products for KnowBe4’s customers. While you need to understand reasonable software security practices, you do not need to have a background in information security. Just be a great engineer, bring new ideas to the table, and ship software! You’ll work together with other engineers in a fast-paced, agile development environment using go (golang) to build our modern backend. Our highly collaborative teams rapidly release software in an environment where innovation is applauded, and minimizing distractions from real work is top priority.",
52
+ "desired_abilities": "",
53
+ "responsibilities": "Design and develop GO applications in an agile development environment. Evaluate and utilize cutting edge AWS technologies. Rapidly prototype and refine applications based on user experience feedback. Collaborate with product managers and fellow engineers to establish and refine requirements",
54
+ "requirements": "Strong understanding of GO. Experience building commercial web applications using GO. Experience developing in similar languages. Able to leverage structured formats like JSON, YAML, XML and related technologies to build scalable, testable RESTful applications. Experience with common SQL data layers such as MySQL. Used automated unit testing tools. Experience with Amazon Web Services (AWS)",
55
+ "additional_qualifications": "Communication skills, verbal & written. 3+ years of relevant experience. B.S. or B.A. in Computer Science or Software Engineering (or comparable work experience)"
56
+ },
57
+ {
58
+ "id": 6,
59
+ "title": "Software Engineer",
60
+ "language": "PHP",
61
+ "location": "Clearwater, FL",
62
+ "mission_statement": "KnowBe4, Inc. is a high growth information security company. We are the world’s largest provider of new-school security awareness training and simulated phishing. KnowBe4 was created to help organizations manage the ongoing problem of social engineering. Tens of thousands of organizations worldwide use KnowBe4’s platform to mobilize their end users as a last line of defense and enable them to make better security decisions, every day. We are ranked #1 best place to work in technology nationwide by Fortune Magazine and have placed #1 or #2 in The Tampa Bay Best Workplaces Survey for the last three years. We also just had our 23rd record-setting quarter in a row! The Software Engineer (PHP) is responsible for developing new and exciting products for KnowBe4’s customers, alongside other engineers in a fast-paced and agile development environment.",
63
+ "desired_abilities": "",
64
+ "responsibilities": "Design and develop PHP web applications in an agile development environment. Evaluate and utilize cutting edge JavaScript frameworks. Design and develop PHP back end solutions. Rapidly prototype and refine applications based on user experience feedback. Collaborate with product managers, UX staff and fellow engineers to establish and refine requirements. Leverage cloud technologies within Amazon Web Services (S3, EC2 and more)",
65
+ "requirements": "Strong understanding of PHP MVC Frameworks such as Yii Framework. Strong with JavaScript frameworks such as jQuery. Experience designing responsive web applications with Bootstrap and AJAX. Experience with common SQL data layers such as MySQL. Experience with Linux command line basics. Experience building commercial web applications using PHP. Built applications with current and forward ­facing web standards like CSS3 and HTML5. Communication skills, verbal & written. Yii Framework. General understanding of compliance requirements (HIPAA, PCI DSS, ISO, NIST, etc). 5+ years of relevant experience. B.S. or B.A. in Computer Science or Software Engineering (or comparable work experience) required",
66
+ "additional_qualifications": ""
67
+ }
68
+ ]
@@ -0,0 +1,9 @@
1
+ module Knowbe4Hiring
2
+ # this class returns the jobs json
3
+ class Jobs
4
+ def self.all
5
+ file = File.read("#{__dir__}/jobs.json")
6
+ JSON.parse(file, symbolize_names: true).map { |j| Job.new(j) }
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,3 @@
1
+ module Knowbe4Hiring
2
+ VERSION = '0.1.0'.freeze
3
+ end
data/rails_template.rb ADDED
@@ -0,0 +1,20 @@
1
+ file'app/controllers/jobs_controller.rb',<<CODE
2
+ class JobsController < ApplicationController
3
+ def index
4
+ @jobs = Knowbe4Hiring::Jobs.all
5
+ render json: @jobs
6
+ end
7
+ end
8
+ CODE
9
+
10
+ gem 'knowbe4_hiring'
11
+ gsub_file "Gemfile", /^gem 'sqlite3'$/, 'gem "sqlite3", "~> 1.3.6"'
12
+ run "bundle install"
13
+
14
+ route "root to: 'jobs#index'"
15
+
16
+ inside "app" do
17
+ inside "controllers" do
18
+ copy_file "jobs_controller.rb"
19
+ end
20
+ end
metadata ADDED
@@ -0,0 +1,110 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: knowbe4_hiring
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Ben Jehl
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2019-03-01 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '2.0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '2.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: os
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '1.0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '1.0'
55
+ description: 'KnowBe4, Inc. is a high growth information security company. We are
56
+ the world’s largest provider of new-school security awareness training and simulated
57
+ phishing. KnowBe4 was created to help organizations manage the ongoing problem of
58
+ social engineering. Tens of thousands of organizations worldwide use KnowBe4’s platform
59
+ to mobilize their end users as a last line of defense and enable them to make better
60
+ security decisions, every day. We are ranked #1 best place to work in technology
61
+ nationwide by Fortune Magazine and have placed #1 or #2 in The Tampa Bay Best Workplaces
62
+ Survey for the last three years. We also just had our 23rd record-setting quarter
63
+ in a row!'
64
+ email:
65
+ - benj@knowbe4.com
66
+ executables: []
67
+ extensions: []
68
+ extra_rdoc_files: []
69
+ files:
70
+ - ".gitignore"
71
+ - ".rubocop.yml"
72
+ - ".rubocop_todo.yml"
73
+ - Gemfile
74
+ - Gemfile.lock
75
+ - LICENSE.txt
76
+ - README.md
77
+ - Rakefile
78
+ - bin/console
79
+ - bin/setup
80
+ - knowbe4_hiring.gemspec
81
+ - lib/knowbe4_hiring.rb
82
+ - lib/knowbe4_hiring/job.rb
83
+ - lib/knowbe4_hiring/jobs.json
84
+ - lib/knowbe4_hiring/jobs.rb
85
+ - lib/knowbe4_hiring/version.rb
86
+ - rails_template.rb
87
+ homepage: https://rubygems.org/gems/knowbe4_hiring
88
+ licenses:
89
+ - MIT
90
+ metadata: {}
91
+ post_install_message:
92
+ rdoc_options: []
93
+ require_paths:
94
+ - lib
95
+ required_ruby_version: !ruby/object:Gem::Requirement
96
+ requirements:
97
+ - - ">="
98
+ - !ruby/object:Gem::Version
99
+ version: '0'
100
+ required_rubygems_version: !ruby/object:Gem::Requirement
101
+ requirements:
102
+ - - ">="
103
+ - !ruby/object:Gem::Version
104
+ version: '0'
105
+ requirements: []
106
+ rubygems_version: 3.0.2
107
+ signing_key:
108
+ specification_version: 4
109
+ summary: Available Software Development jobs at Knowbe4
110
+ test_files: []