Today I consolidated the instructions in the http://bundler.io/v1.3/rationale.html, the "Get started-installing Bundler" directions and the "Simple work Flow" directions. They all repeated but with a few extra tidbits of info. Andre gave me the go ahead to do this on Friday. I also added the link to the sidebar and added a bit of css styling.
I worked on breaking apart the rationale page to create a FAQ page. I created a new get started page and I created a new bug report page. |
Still working on the finer details of the new Get Started Pages and the new FAQ page.
We switched our files from the bundler-site repo to the RGSoCBundler/bundler-site so all of our pull requests and commits don't alert the entire Bundler community. I had a hard time figuring out pushing to the new location. Finally I realized that I had to make sure to change the base fork to RGSoCBundler/bundler-site master which is reached by pressing the edit button on the right after pressing the pull request button.
I started working on my presentation of creating a gem. Andre went over my lorem ipsum generator gem to make sure everything was in order. He had a few changes so he sent me a pull request. I was cool looking a a pull request. Now I understand what Andre and Jessica have been looking at and why certain PRs are harder to read than others. Basically you want to make similar changes and send the requests more often so they are easy to read.
I went to Pivotal Labs' hack night so I could check out their projec
I read about Rspec and watched some of the Rspec Peepcode video but mostly I spent my day refining my code and slides for my presentation at the Monthly L.A. Eastside/Westside Ruby Meetup. Our group is a combination of General Assembly students, Rails Girls Summer of Code teams, CS students and their friends. Most of the people attended either a Railsbridge or a Rails Girls event as their launching point into Ruby. This evening's talks were about gems and gem structure.
Ross, from Pivitol, gave a talk about Pivotal Labs and how they work pair programming. The first gem talk by Anna Mendoza explained the structure of gems and how to find good ones to use.My hands-on workshop presentation was based on the gem Joyce and I created several weeks ago. I got all 25 people in the room to create the gem
$ git checkout master
$ git pull upstream master
$ git checkout faqpage
# the puts method prints the string that follows to the screen and returns the cursor to the next line. | |
puts "I will now count my chickens:" | |
# the puts method print the string that follows to the screen and returns the cursor to the next line. | |
# Using the operator presedence; first the division operator divides 30 by 6 then adds the integers and | |
# prints them to the screen | |
puts "Hens", 25 + 30 / 6 | |
# the puts method prints the string that follows to the screen and returns the cursor to the next line. | |
# Using the operator presedence; first the division operator divides 25 by 4 then subtracts and prints |
# defining the variable cars with the integer 100 | |
cars = 100 | |
# defining the variable space_in_car with the floating point 4.0 | |
space_in_car = 4.0 | |
# defining the variable drivers with the integer 30 | |
drivers = 30 | |
# defining the variable passengers with the integer 90 |