Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Master #2

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
3 changes: 3 additions & 0 deletions .byebug_history
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
exit
puts l
puts f
5 changes: 5 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
source "https://rubygems.org"

gem "activesupport"
gem "awesome_print"
gem "pry-byebug"
45 changes: 45 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
GEM
remote: https://rubygems.org/
specs:
activesupport (7.1.3.2)
base64
bigdecimal
concurrent-ruby (~> 1.0, >= 1.0.2)
connection_pool (>= 2.2.5)
drb
i18n (>= 1.6, < 2)
minitest (>= 5.1)
mutex_m
tzinfo (~> 2.0)
awesome_print (1.9.2)
base64 (0.2.0)
bigdecimal (3.1.7)
byebug (11.1.3)
coderay (1.1.3)
concurrent-ruby (1.2.3)
connection_pool (2.4.1)
drb (2.2.1)
i18n (1.14.4)
concurrent-ruby (~> 1.0)
method_source (1.0.0)
minitest (5.22.3)
mutex_m (0.2.0)
pry (0.14.2)
coderay (~> 1.1)
method_source (~> 1.0)
pry-byebug (3.10.1)
byebug (~> 11.0)
pry (>= 0.13, < 0.15)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)

PLATFORMS
x86_64-linux

DEPENDENCIES
activesupport
awesome_print
pry-byebug

BUNDLED WITH
2.4.6
9 changes: 9 additions & 0 deletions debugger.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
require "pry-byebug"

f = "Your lucky number is "

l = rand(100)

byebug

pp f + l
1 change: 1 addition & 0 deletions goodbye.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pp "See ya later!"
16 changes: 16 additions & 0 deletions howdy.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
require "active_support/all"

=begin
10.times do |count|
position = "Position"

puts "#{position.pluralize}: #{count.ordinalize} "
end

require "./goodbye.rb"
=end
puts "Hello there, what's your name?"

name = gets

puts "Good to meet you #{name}"
Empty file added thinkfast.rb
Empty file.