urban_pass 0.0.1

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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 42c7a611c837ad2f9cd68a6b7d9edc438e3b8bd2
4
+ data.tar.gz: 43669b215087942793b9a1efc9e0daa7c0f7b350
5
+ SHA512:
6
+ metadata.gz: 94bc18c6c18fe36754a17d24eb9e2a881f402109ad1d4427e51aa045db8198cecd5839bc290899225de092f01bb5751f33ea03079746140fc5f0821c65d599ee
7
+ data.tar.gz: cf2f24a36d52563fdaedee7238f6a511b8c89bddf0f4ffc1c1a58550117bf66a3bf2db99206690f7f2ff068b35e9dae3dd1e1a629374d1729a5be01bfd033540
data/.gitignore ADDED
@@ -0,0 +1,14 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ *.bundle
11
+ *.so
12
+ *.o
13
+ *.a
14
+ mkmf.log
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in urban_pass.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Erik Nilsen Marco Lindsey
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,48 @@
1
+ # UrbanPass
2
+
3
+ After dealing with multiple password generators. We decided to create a password generator thats a little different.
4
+
5
+ ![CorrectHorseBatteryStaple](http://i.imgur.com/T9PApGP.png)
6
+
7
+
8
+ ## Installation
9
+
10
+ Add this line to your application's Gemfile:
11
+
12
+ ```ruby
13
+ gem 'urban_pass'
14
+ ```
15
+
16
+ And then execute:
17
+
18
+ $ bundle
19
+
20
+ Or install it yourself as:
21
+
22
+ $ gem install urban_pass
23
+
24
+ ## Usage
25
+
26
+ Coming soon
27
+
28
+ ## Contribution Guidelines
29
+
30
+ ###Git Commit Messages
31
+ - Use the present tense ("Add feature" not "Added feature")
32
+ - Use the imperative mood ("Move cursor to..." not "Moves cursor to...")
33
+ - Limit the first line to 72 characters or less
34
+ - Reference issues and pull requests liberally
35
+ - When contributing please consider starting the commit message with an applicable emoji:
36
+
37
+ - :lipstick: `:lipstick:` when improving the format/structure of the code
38
+ - :racehorse: `:racehorse:` when improving performance
39
+ - :memo: `:memo:` when writing docs
40
+ - :penguin: `:penguin:` when fixing something on Linux
41
+ - :apple: `:apple:` when fixing something on Mac OS
42
+ - :checkered_flag: `:checkered_flag:` when fixing something on Windows
43
+ - :bug: `:bug:` when fixing a bug
44
+ - :fire: `:fire:` when removing code or files
45
+ - :green_heart: `:green_heart:` when fixing the CI build
46
+ - :white_check_mark: `:white_check_mark:` when adding tests
47
+ - :lock: `:lock:` when dealing with security
48
+ - :arrow_up: `:arrow_up:` when upgrading dependencies
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
@@ -0,0 +1,3 @@
1
+ module UrbanPass
2
+ VERSION = "0.0.1"
3
+ end
data/lib/urban_pass.rb ADDED
@@ -0,0 +1,5 @@
1
+ require "urban_pass/version"
2
+
3
+ module UrbanPass
4
+ # Your code goes here...
5
+ end
@@ -0,0 +1,5 @@
1
+ require "test_helper"
2
+
3
+ describe "Generate" do
4
+
5
+ end
@@ -0,0 +1,2 @@
1
+ require "minitest/autorun"
2
+ require "eefgilm"
@@ -0,0 +1,23 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'urban_pass/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "urban_pass"
8
+ spec.version = UrbanPass::VERSION
9
+ spec.authors = ["Erik Nilsen"]
10
+ spec.email = ["enilsen16@live.com"]
11
+ spec.summary = %q{A password generator that uses the Urban Dictonary API.}
12
+ spec.description = %q{A password generator that creates random passwords based on the Urban Dictonary API.}
13
+ spec.homepage = ""
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.7"
22
+ spec.add_development_dependency "rake", "~> 10.0"
23
+ end
metadata ADDED
@@ -0,0 +1,85 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: urban_pass
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Erik Nilsen
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-12-08 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: '1.7'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.7'
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
+ description: A password generator that creates random passwords based on the Urban
42
+ Dictonary API.
43
+ email:
44
+ - enilsen16@live.com
45
+ executables: []
46
+ extensions: []
47
+ extra_rdoc_files: []
48
+ files:
49
+ - ".gitignore"
50
+ - Gemfile
51
+ - LICENSE.txt
52
+ - README.md
53
+ - Rakefile
54
+ - lib/urban_pass.rb
55
+ - lib/urban_pass/version.rb
56
+ - test/features/generate_test.rb
57
+ - test/test_helper.rb
58
+ - urban_pass.gemspec
59
+ homepage: ''
60
+ licenses:
61
+ - MIT
62
+ metadata: {}
63
+ post_install_message:
64
+ rdoc_options: []
65
+ require_paths:
66
+ - lib
67
+ required_ruby_version: !ruby/object:Gem::Requirement
68
+ requirements:
69
+ - - ">="
70
+ - !ruby/object:Gem::Version
71
+ version: '0'
72
+ required_rubygems_version: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - ">="
75
+ - !ruby/object:Gem::Version
76
+ version: '0'
77
+ requirements: []
78
+ rubyforge_project:
79
+ rubygems_version: 2.2.2
80
+ signing_key:
81
+ specification_version: 4
82
+ summary: A password generator that uses the Urban Dictonary API.
83
+ test_files:
84
+ - test/features/generate_test.rb
85
+ - test/test_helper.rb