basic_betch 0.0.1 → 0.0.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e898aff84851fa0c381b079cc778c18ae28ebc43
4
- data.tar.gz: 80f220ba8480a8a3a10cc4b9231a9929d408ade2
3
+ metadata.gz: 978a1c0e433134d62e68c71c40864a9667ddfa88
4
+ data.tar.gz: abcf12574e71c9f991ff8831c61a3227963ba1db
5
5
  SHA512:
6
- metadata.gz: 89f4fd6c7d5fb889ae2ae366b32a24f02ee9e3fd8525c414837e36ff39e282866bfc3e2d3430fd2cac3d19e121fb029e6f0c7b5b0bed42019712ef65a5dcb159
7
- data.tar.gz: 5d738a4be531d190394932a69fedf1f5cc173e16d678b666c2ca7dd0d5b8d3e5d295020684b8743f154d8022a7dbdcda39601ac963b515fc26e8375d4e8211c1
6
+ metadata.gz: eefeb4c2135548cdfb5b068cd6b86430dfac283eec8d0564e20f71657f9a4a64e98f8f155914c0f25059ec800c8a65d0cf082481e786be286325a46cab4bda5e
7
+ data.tar.gz: 11e4ff3b1128131eb8e75284625e4b2ed578db79ab3a14f52dd1f248f18d0835c59dfb0d012501ca0530466cf44c4c1b8a8e3bdc035268b111ace5b419aa4fd1
data/Gemfile CHANGED
@@ -1,4 +1,4 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
- # Specify your gem's dependencies in basic.gemspec
3
+ # Specify your gem's dependencies in basic_betch.gemspec
4
4
  gemspec
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Basic
1
+ # BasicBetch
2
2
 
3
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
4
 
@@ -22,7 +22,7 @@ Or install it yourself as:
22
22
 
23
23
  ## Usage
24
24
 
25
- TODO: Write usage instructions here
25
+ Call basic_betch to start the test!
26
26
 
27
27
  ## Development
28
28
 
@@ -32,7 +32,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
32
32
 
33
33
  ## Contributing
34
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.
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/basic_betch. 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
36
 
37
37
 
38
38
  ## License
data/basic_betch.gemspec CHANGED
@@ -5,21 +5,15 @@ require 'basic_betch/version'
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "basic_betch"
8
- spec.version = BasicBetch::VERSION
8
+ spec.version = "0.0.2"
9
9
  spec.authors = ["Julie Graceffa"]
10
10
  spec.email = ["julie.graceffa@gmail.com"]
11
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 = ""
12
+ spec.summary = %q{Check if you're basic}
13
+ spec.description = %q{Take a quick test to see what level of basic you are.}
15
14
  spec.license = "MIT"
16
15
 
17
16
  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"
17
+ spec.executables << "basic_betch"
18
+ spec.require_paths = "lib/basic_betch.rb"
25
19
  end
data/bin/basic_betch ADDED
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'basic_betch'
4
+
5
+ Basicbetch.new
data/bin/console CHANGED
@@ -3,12 +3,4 @@
3
3
  require "bundler/setup"
4
4
  require "basic_betch"
5
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
6
+ puts Basicbetch.new
@@ -1,3 +1,3 @@
1
- module BasicBetch
2
- VERSION = "0.0.1"
3
- end
1
+ # module Basicbetch
2
+ # VERSION = "0.0.1"
3
+ # end
data/lib/basic_betch.rb CHANGED
@@ -1,6 +1,6 @@
1
- require "basic_betch/version"
1
+ # require "basic_betch/version"
2
2
 
3
- class BasicBetch
3
+ class Basicbetch
4
4
  attr_reader :name, :starbucks_order, :uggs, :instafood, :north_face, :yoga_pants, :role_model, :tv_show
5
5
  attr_accessor :basic_items
6
6
 
@@ -104,4 +104,4 @@ class BasicBetch
104
104
  end
105
105
  end
106
106
 
107
- BasicBetch.new
107
+ # Basicbetch.new
metadata CHANGED
@@ -1,61 +1,20 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: basic_betch
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Julie Graceffa
8
8
  autorequire:
9
- bindir: exe
9
+ bindir: bin
10
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.
11
+ date: 2016-09-06 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Take a quick test to see what level of basic you are.
56
14
  email:
57
15
  - julie.graceffa@gmail.com
58
- executables: []
16
+ executables:
17
+ - basic_betch
59
18
  extensions: []
60
19
  extra_rdoc_files: []
61
20
  files:
@@ -67,18 +26,19 @@ files:
67
26
  - README.md
68
27
  - Rakefile
69
28
  - basic_betch.gemspec
29
+ - bin/basic_betch
70
30
  - bin/console
71
31
  - bin/setup
72
32
  - lib/basic_betch.rb
73
33
  - lib/basic_betch/version.rb
74
- homepage: ''
34
+ homepage:
75
35
  licenses:
76
36
  - MIT
77
37
  metadata: {}
78
38
  post_install_message:
79
39
  rdoc_options: []
80
40
  require_paths:
81
- - lib
41
+ - lib/basic_betch.rb
82
42
  required_ruby_version: !ruby/object:Gem::Requirement
83
43
  requirements:
84
44
  - - ">="
@@ -94,5 +54,5 @@ rubyforge_project:
94
54
  rubygems_version: 2.6.6
95
55
  signing_key:
96
56
  specification_version: 4
97
- summary: Check if you're a basic person.
57
+ summary: Check if you're basic
98
58
  test_files: []