basic_betch 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: e898aff84851fa0c381b079cc778c18ae28ebc43
4
+ data.tar.gz: 80f220ba8480a8a3a10cc4b9231a9929d408ade2
5
+ SHA512:
6
+ metadata.gz: 89f4fd6c7d5fb889ae2ae366b32a24f02ee9e3fd8525c414837e36ff39e282866bfc3e2d3430fd2cac3d19e121fb029e6f0c7b5b0bed42019712ef65a5dcb159
7
+ data.tar.gz: 5d738a4be531d190394932a69fedf1f5cc173e16d678b666c2ca7dd0d5b8d3e5d295020684b8743f154d8022a7dbdcda39601ac963b515fc26e8375d4e8211c1
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.travis.yml ADDED
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.2.5
5
+ before_install: gem install bundler -v 1.12.5
@@ -0,0 +1,49 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, and in the interest of
4
+ fostering an open and welcoming community, we pledge to respect all people who
5
+ contribute through reporting issues, posting feature requests, updating
6
+ documentation, submitting pull requests or patches, and other activities.
7
+
8
+ We are committed to making participation in this project a harassment-free
9
+ experience for everyone, regardless of level of experience, gender, gender
10
+ identity and expression, sexual orientation, disability, personal appearance,
11
+ body size, race, ethnicity, age, religion, or nationality.
12
+
13
+ Examples of unacceptable behavior by participants include:
14
+
15
+ * The use of sexualized language or imagery
16
+ * Personal attacks
17
+ * Trolling or insulting/derogatory comments
18
+ * Public or private harassment
19
+ * Publishing other's private information, such as physical or electronic
20
+ addresses, without explicit permission
21
+ * Other unethical or unprofessional conduct
22
+
23
+ Project maintainers have the right and responsibility to remove, edit, or
24
+ reject comments, commits, code, wiki edits, issues, and other contributions
25
+ that are not aligned to this Code of Conduct, or to ban temporarily or
26
+ permanently any contributor for other behaviors that they deem inappropriate,
27
+ threatening, offensive, or harmful.
28
+
29
+ By adopting this Code of Conduct, project maintainers commit themselves to
30
+ fairly and consistently applying these principles to every aspect of managing
31
+ this project. Project maintainers who do not follow or enforce the Code of
32
+ Conduct may be permanently removed from the project team.
33
+
34
+ This code of conduct applies both within project spaces and in public spaces
35
+ when an individual is representing the project or its community.
36
+
37
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
38
+ reported by contacting a project maintainer at julie.graceffa@gmail.com. All
39
+ complaints will be reviewed and investigated and will result in a response that
40
+ is deemed necessary and appropriate to the circumstances. Maintainers are
41
+ obligated to maintain confidentiality with regard to the reporter of an
42
+ incident.
43
+
44
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage],
45
+ version 1.3.0, available at
46
+ [http://contributor-covenant.org/version/1/3/0/][version]
47
+
48
+ [homepage]: http://contributor-covenant.org
49
+ [version]: http://contributor-covenant.org/version/1/3/0/
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in basic.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 Julie Graceffa
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,40 @@
1
+ # Basic
2
+
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/basic_betch`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'basic_betch'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install basic_betch
22
+
23
+ ## Usage
24
+
25
+ TODO: Write usage instructions here
26
+
27
+ ## Development
28
+
29
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. 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]/basic. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
36
+
37
+
38
+ ## License
39
+
40
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,10 @@
1
+ require "bundler/gem_tasks"
2
+ require "rake/testtask"
3
+
4
+ Rake::TestTask.new(:test) do |t|
5
+ t.libs << "test"
6
+ t.libs << "lib"
7
+ t.test_files = FileList['test/**/*_test.rb']
8
+ end
9
+
10
+ task :default => :test
@@ -0,0 +1,25 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'basic_betch/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "basic_betch"
8
+ spec.version = BasicBetch::VERSION
9
+ spec.authors = ["Julie Graceffa"]
10
+ spec.email = ["julie.graceffa@gmail.com"]
11
+
12
+ spec.summary = %q{Check if you're a basic person.}
13
+ spec.description = %q{Questions that will test whether you are a basic betch or not.}
14
+ spec.homepage = ""
15
+ spec.license = "MIT"
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
+ spec.bindir = "exe"
19
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
+ spec.require_paths = ["lib"]
21
+
22
+ spec.add_development_dependency "bundler", "~> 1.12"
23
+ spec.add_development_dependency "rake", "~> 10.0"
24
+ spec.add_development_dependency "minitest", "~> 5.0"
25
+ end
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "basic_betch"
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
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,107 @@
1
+ require "basic_betch/version"
2
+
3
+ class BasicBetch
4
+ attr_reader :name, :starbucks_order, :uggs, :instafood, :north_face, :yoga_pants, :role_model, :tv_show
5
+ attr_accessor :basic_items
6
+
7
+ def initialize
8
+ @basic_items = []
9
+ basic_name
10
+ basic_drink
11
+ basic_uggs
12
+ basic_north_face
13
+ basic_instagram
14
+ basic_yoga_pants
15
+ basic_role_model
16
+ basic_tv_show
17
+ is_basic?
18
+ end
19
+
20
+ def basic_name
21
+ print "What's your name?: "
22
+ @name = gets.chomp.downcase
23
+ basic_name = /(jessica|lauren|ashley|samantha)/
24
+ if !basic_name.match(name).nil?
25
+ @basic_items.push(name)
26
+ end
27
+ end
28
+
29
+ def basic_drink
30
+ print "What is your Starbucks order?: "
31
+ @starbucks_order = gets.chomp.downcase
32
+ basic_starbucks = /pumpkin|spice|soy|triple|foam|extra|skinny|venti/
33
+ if !basic_starbucks.match(starbucks_order).nil?
34
+ @basic_items.push(starbucks_order)
35
+ end
36
+ end
37
+
38
+ def basic_uggs
39
+ print "Do you own a pair of Uggs?: "
40
+ @uggs = gets.chomp.downcase
41
+ basic_uggs = /yes|duh|lots|loads|course|yeah/
42
+ if !basic_uggs.match(uggs).nil?
43
+ @basic_items.push("owns uggs")
44
+ end
45
+ end
46
+
47
+ def basic_instagram
48
+ print "Do you LOVE instagramming pictures of food?: "
49
+ @instafood = gets.chomp.downcase
50
+ basic_insta = /yes|maybe|duh|everyday|yeah|sometimes/
51
+ if !basic_insta.match(instafood).nil?
52
+ @basic_items.push("instragrams food")
53
+ end
54
+ end
55
+
56
+ def basic_north_face
57
+ print "Do you LOVE the North Face?: "
58
+ @north_face = gets.chomp.downcase
59
+ basic_north_face = /yes|maybe|duh|yeah|kinda/
60
+ if !basic_north_face.match(north_face).nil?
61
+ @basic_items.push("north face")
62
+ end
63
+ end
64
+
65
+ def basic_yoga_pants
66
+ print "Do you wear yoga pants when not doing yoga?: "
67
+ @yoga_pants = gets.chomp.downcase
68
+ basic_yoga = /yes|maybe|duh|yeah|sometimes|kind*/
69
+ if !basic_yoga.match(yoga_pants).nil?
70
+ @basic_items.push("yoga pants")
71
+ end
72
+ end
73
+
74
+ def basic_role_model
75
+ print "Who is your role model?: "
76
+ @role_model = gets.chomp.downcase
77
+ basic_role_model = /oprah|victoria|middelton|kardashian|god|model|selena|swift|lively|gosling/
78
+ if !basic_role_model.match(role_model).nil?
79
+ @basic_items.push(role_model)
80
+ end
81
+ end
82
+
83
+ def basic_tv_show
84
+ print "What is your favorite TV show?: "
85
+ @tv_show = gets.chomp.downcase
86
+ basic_tv = /jersey|housewives|view|kardashians|e!|friends|liars|anatomy/
87
+ if !basic_tv.match(tv_show).nil?
88
+ @basic_items.push(tv_show)
89
+ end
90
+ end
91
+
92
+ def is_basic?
93
+ if @basic_items.size <= 1
94
+ print "\nCongrats, you're not a basic betch!\n"
95
+ elsif @basic_items.size > 1 && basic_items.size <= 2
96
+ print "\nWhomp whomp, you're kinda basic\n"
97
+ elsif @basic_items.size > 2 && basic_items.size <= 3
98
+ print "\nSorry, you're pretty basic\n"
99
+ elsif @basic_items.size > 3 && basic_items.size <= 4
100
+ print "\nYou're a super basic betch\n"
101
+ else
102
+ print "\nYou couldn't be more of a basic betch...\n"
103
+ end
104
+ end
105
+ end
106
+
107
+ BasicBetch.new
@@ -0,0 +1,3 @@
1
+ module BasicBetch
2
+ VERSION = "0.0.1"
3
+ end
metadata ADDED
@@ -0,0 +1,98 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: basic_betch
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Julie Graceffa
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2016-09-04 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.12'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.12'
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: minitest
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '5.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '5.0'
55
+ description: Questions that will test whether you are a basic betch or not.
56
+ email:
57
+ - julie.graceffa@gmail.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - ".gitignore"
63
+ - ".travis.yml"
64
+ - CODE_OF_CONDUCT.md
65
+ - Gemfile
66
+ - LICENSE.txt
67
+ - README.md
68
+ - Rakefile
69
+ - basic_betch.gemspec
70
+ - bin/console
71
+ - bin/setup
72
+ - lib/basic_betch.rb
73
+ - lib/basic_betch/version.rb
74
+ homepage: ''
75
+ licenses:
76
+ - MIT
77
+ metadata: {}
78
+ post_install_message:
79
+ rdoc_options: []
80
+ require_paths:
81
+ - lib
82
+ required_ruby_version: !ruby/object:Gem::Requirement
83
+ requirements:
84
+ - - ">="
85
+ - !ruby/object:Gem::Version
86
+ version: '0'
87
+ required_rubygems_version: !ruby/object:Gem::Requirement
88
+ requirements:
89
+ - - ">="
90
+ - !ruby/object:Gem::Version
91
+ version: '0'
92
+ requirements: []
93
+ rubyforge_project:
94
+ rubygems_version: 2.6.6
95
+ signing_key:
96
+ specification_version: 4
97
+ summary: Check if you're a basic person.
98
+ test_files: []