Week6

R
Ruby
Week 6
Mid-Term


• Due Now!
• Git Access Revoked
• Grades by Next Week
Project

• Make a Gem!
• Source on Github
• Gem Released on RubyGems.org
• Full Documentation and Tests
• Tested on Travis CI
Topics
• Whatever you want! (It has to do something!)
• Suggestions:
  • Calculations (unit conversions,
    physics helper, etc...)
  • Games (game of life, battleship, tic-
    tac-toe, sudoku solver etc..)
  • DSL, Programing helper, etc...
Project


• Due the Last Day of Class
• Demo the gem in-class
Ruby Gems


• Packaged Ruby Code
• Available for Everyone!
• DRY
Gem Structure


- test_gem.gemspec
- lib
 - test_gem.rb


                     https://github.com/hakanensari/structure
GemSpec

  Gem::Specification.new do |s|
  s.name        = 'test_gem'
  s.version     = '0.0.0'
  s.date        = '2012-11-13'
  s.summary     = "Making a Test Gem"
  s.description = "A gem to explain how to make gems"
  s.authors     = ["Renée De Voursney"]
  s.email       = 'renee@nird.us'
  s.homepage    = 'http://rubygems.org/gems/test_gem'
  s.files       = ["lib/test_gem.rb"]
end
Building Your Gem

$ gem build test_gem.gemspec
       Successfully built RubyGem
       Name: test_gem
       Version: 0.0.0
       File: test_gem-0.0.0.gem
Installing Your Gem
$ gem install test_gem-0.0.0.gem
  Successfully installed test_gem-0.0.0
  1 gem installed
  Installing ri documentation for
test_gem-0.0.0...
  Installing RDoc documentation for
test_gem-0.0.0...
RubyGems.org

• Setup an Account:
   • https://rubygems.org/users/new
• Setup Credentials:
 • API Access:
   • https://rubygems.org/profile/edit
Releasing Your Gem

$ gem push test_gem-0.0.0.gem
  Pushing gem to RubyGems.org...

  Successfully registered gem: test_gem (0.0.0)
Viewing Remote Gems

$ gem list -r test_gem


*** REMOTE GEMS ***
test_gem (0.0.0)
Installing a Gem
$ gem install test_gem
Fetching: test_gem-0.0.0.gem (100%)
Successfully installed test_gem-0.0.0
1 gem installed
Installing ri documentation for
test_gem-0.0.0...
Installing RDoc documentation for
test_gem-0.1.0...
Adding CLI
• Command Line Interface
• Structure
 - bin
   - test_gem
• SheBang     (Sharp Bang, Shell Bang)   : #!/usr/bin/env ruby
• Spec: s.executables << 'test_gem'
Arguments


• Constant Array:
 • ARGV
Testing!

- spec
 - test_gem_spec.rb
- RakeFile
- .rspec
Rakefile

• Testing Task:
  require 'rspec/core/rake_task'
  RSpec::Core::RakeTask.new('spec')
  task :default => :spec
.rspec


- --color
- --format documentation
Gem FrameWorks

• Jeweler
• Gem Release
• Hoe
• Rake
• Bundler
Continuous Integration


• Git Hook
• Manages Different Environments
• Testing Cycle
Travis CI

• Free CI for Open Source
• Easy
• Fast
• Fun!
Github Hook

• Admin
• Service Hooks
• Travis
 • Copy and Paste Token
.travis.yml
language: ruby
rvm:
 - 1.8.7
 - 1.9.2
 - 1.9.3
 - jruby-18mode
 - jruby-19mode
 - ruby-head
 - jruby-head
 - ree
ReadMe Graphic

• Build Status:
  {<img src="https://secure.travis-ci.org/
  reneedv/elucidate.png" />}
  [http://travis-ci.org/reneedv/elucidate]
HomeWork


• Release a test gem to RubyGems.org
• E-mail me your project idea
1 von 26

Recomendados

11 Ruby Gems von
11 Ruby Gems11 Ruby Gems
11 Ruby GemsDeepak Hagadur Bheemaraju
126 views12 Folien
Hunting down memory leaks in Ruby von
Hunting down memory leaks in RubyHunting down memory leaks in Ruby
Hunting down memory leaks in RubySergey Alekseev
1K views20 Folien
Node js quick tour v2 von
Node js quick tour v2Node js quick tour v2
Node js quick tour v2Wyatt Fang
1.1K views42 Folien
Server side scripting smack down - Node.js vs PHP von
Server side scripting smack down - Node.js vs PHPServer side scripting smack down - Node.js vs PHP
Server side scripting smack down - Node.js vs PHPMarc Gear
15.7K views88 Folien
Introduction to NodeJS with LOLCats von
Introduction to NodeJS with LOLCatsIntroduction to NodeJS with LOLCats
Introduction to NodeJS with LOLCatsDerek Anderson
1.2K views31 Folien
JavaScript is the new black - Why Node.js is going to rock your world - Web 2... von
JavaScript is the new black - Why Node.js is going to rock your world - Web 2...JavaScript is the new black - Why Node.js is going to rock your world - Web 2...
JavaScript is the new black - Why Node.js is going to rock your world - Web 2...Tom Croucher
1.2K views67 Folien

Más contenido relacionado

Was ist angesagt?

Middleware as Code with mruby von
Middleware as Code with mrubyMiddleware as Code with mruby
Middleware as Code with mrubyHiroshi SHIBATA
5.2K views57 Folien
Middleware as Code with mruby von
Middleware as Code with mrubyMiddleware as Code with mruby
Middleware as Code with mrubyHiroshi SHIBATA
4.8K views67 Folien
Java script at backend nodejs von
Java script at backend   nodejsJava script at backend   nodejs
Java script at backend nodejsAmit Thakkar
1.8K views34 Folien
Create Rest API in Nodejs von
Create Rest API in Nodejs Create Rest API in Nodejs
Create Rest API in Nodejs Irfan Maulana
1.7K views24 Folien
hacking with node.JS von
hacking with node.JShacking with node.JS
hacking with node.JSHarsha Vashisht
9.5K views28 Folien
Node.js - A Quick Tour von
Node.js - A Quick TourNode.js - A Quick Tour
Node.js - A Quick TourFelix Geisendörfer
9.3K views37 Folien

Was ist angesagt?(19)

Java script at backend nodejs von Amit Thakkar
Java script at backend   nodejsJava script at backend   nodejs
Java script at backend nodejs
Amit Thakkar1.8K views
Create Rest API in Nodejs von Irfan Maulana
Create Rest API in Nodejs Create Rest API in Nodejs
Create Rest API in Nodejs
Irfan Maulana1.7K views
Node.js - The New, New Hotness von Daniel Shaw
Node.js - The New, New HotnessNode.js - The New, New Hotness
Node.js - The New, New Hotness
Daniel Shaw984 views
NodeJS Concurrency von pgriess
NodeJS ConcurrencyNodeJS Concurrency
NodeJS Concurrency
pgriess6.4K views
Introduction to REST API with Node.js von Yoann Gotthilf
Introduction to REST API with Node.jsIntroduction to REST API with Node.js
Introduction to REST API with Node.js
Yoann Gotthilf3.5K views
Getting Started with PureScript von John De Goes
Getting Started with PureScriptGetting Started with PureScript
Getting Started with PureScript
John De Goes2.3K views
Woo: Writing a fast web server @ ELS2015 von fukamachi
Woo: Writing a fast web server @ ELS2015Woo: Writing a fast web server @ ELS2015
Woo: Writing a fast web server @ ELS2015
fukamachi9.7K views
Clack: glue for web apps von fukamachi
Clack: glue for web appsClack: glue for web apps
Clack: glue for web apps
fukamachi2.5K views
GeekCampSG - Nodejs , Websockets and Realtime Web von Bhagaban Behera
GeekCampSG - Nodejs , Websockets and Realtime WebGeekCampSG - Nodejs , Websockets and Realtime Web
GeekCampSG - Nodejs , Websockets and Realtime Web
Bhagaban Behera1.2K views
Woo: Writing a fast web server von fukamachi
Woo: Writing a fast web serverWoo: Writing a fast web server
Woo: Writing a fast web server
fukamachi3K views
Node.js Patterns for Discerning Developers von cacois
Node.js Patterns for Discerning DevelopersNode.js Patterns for Discerning Developers
Node.js Patterns for Discerning Developers
cacois34.8K views
A slightly advanced introduction to node.js von Sudar Muthu
A slightly advanced introduction to node.jsA slightly advanced introduction to node.js
A slightly advanced introduction to node.js
Sudar Muthu10K views

Destacado

Week3 von
Week3Week3
Week3reneedv
190 views15 Folien
Week10 von
Week10Week10
Week10reneedv
227 views10 Folien
Week4 von
Week4Week4
Week4reneedv
197 views13 Folien
Week9 von
Week9Week9
Week9reneedv
323 views13 Folien
Nginx caching von
Nginx cachingNginx caching
Nginx cachingreneedv
438 views18 Folien
Week7 von
Week7Week7
Week7reneedv
335 views16 Folien

Destacado(7)

Week3 von reneedv
Week3Week3
Week3
reneedv190 views
Week10 von reneedv
Week10Week10
Week10
reneedv227 views
Week4 von reneedv
Week4Week4
Week4
reneedv197 views
Week9 von reneedv
Week9Week9
Week9
reneedv323 views
Nginx caching von reneedv
Nginx cachingNginx caching
Nginx caching
reneedv438 views
Week7 von reneedv
Week7Week7
Week7
reneedv335 views
Week5 von reneedv
Week5Week5
Week5
reneedv193 views

Similar a Week6

Gemification for Ruby 2.5/3.0 von
Gemification for Ruby 2.5/3.0Gemification for Ruby 2.5/3.0
Gemification for Ruby 2.5/3.0Hiroshi SHIBATA
1.3K views50 Folien
Gems on Ruby von
Gems on RubyGems on Ruby
Gems on RubyHiroshi SHIBATA
999 views42 Folien
Gemification for Ruby 2.5/3.0 von
Gemification for Ruby 2.5/3.0Gemification for Ruby 2.5/3.0
Gemification for Ruby 2.5/3.0Hiroshi SHIBATA
9K views62 Folien
The Architecture of PicCollage Server von
The Architecture of PicCollage ServerThe Architecture of PicCollage Server
The Architecture of PicCollage ServerLin Jen-Shin
602 views126 Folien
RubyGems 3 & 4 von
RubyGems 3 & 4RubyGems 3 & 4
RubyGems 3 & 4Hiroshi SHIBATA
1.3K views36 Folien
Практики применения JRuby von
Практики применения JRubyПрактики применения JRuby
Практики применения JRuby.toster
967 views128 Folien

Similar a Week6(20)

The Architecture of PicCollage Server von Lin Jen-Shin
The Architecture of PicCollage ServerThe Architecture of PicCollage Server
The Architecture of PicCollage Server
Lin Jen-Shin602 views
Практики применения JRuby von .toster
Практики применения JRubyПрактики применения JRuby
Практики применения JRuby
.toster967 views
The details of CI/CD environment for Ruby von Hiroshi SHIBATA
The details of CI/CD environment for RubyThe details of CI/CD environment for Ruby
The details of CI/CD environment for Ruby
Hiroshi SHIBATA1.1K views
The Future of Dependency Management for Ruby von Hiroshi SHIBATA
The Future of Dependency Management for RubyThe Future of Dependency Management for Ruby
The Future of Dependency Management for Ruby
Hiroshi SHIBATA7.4K views
Rack von shaokun
RackRack
Rack
shaokun1.1K views
Open Source Saturday - How can I contribute to Ruby on Rails? von Pravin Mishra
Open Source Saturday - How can I contribute to Ruby on Rails?Open Source Saturday - How can I contribute to Ruby on Rails?
Open Source Saturday - How can I contribute to Ruby on Rails?
Pravin Mishra1.8K views
Exploring Ruby on Rails and PostgreSQL von Barry Jones
Exploring Ruby on Rails and PostgreSQLExploring Ruby on Rails and PostgreSQL
Exploring Ruby on Rails and PostgreSQL
Barry Jones3.2K views
JRuby - Enterprise 2.0 von Jan Sifra
JRuby - Enterprise 2.0JRuby - Enterprise 2.0
JRuby - Enterprise 2.0
Jan Sifra2.9K views
Everything-as-code - A polyglot adventure von QAware GmbH
Everything-as-code - A polyglot adventureEverything-as-code - A polyglot adventure
Everything-as-code - A polyglot adventure
QAware GmbH922 views
Introduction to JRuby von ajuckel
Introduction to JRubyIntroduction to JRuby
Introduction to JRuby
ajuckel1.2K views
Create your-own-gem-with-github-jeweler-rubygems von Nico Hagenburger
Create your-own-gem-with-github-jeweler-rubygemsCreate your-own-gem-with-github-jeweler-rubygems
Create your-own-gem-with-github-jeweler-rubygems
Nico Hagenburger5.6K views
Node js quick-tour_v2 von http403
Node js quick-tour_v2Node js quick-tour_v2
Node js quick-tour_v2
http403565 views

Más de reneedv

Week2 von
Week2Week2
Week2reneedv
278 views22 Folien
Week1 von
Week1Week1
Week1reneedv
415 views26 Folien
Fill Up your Bookshelves! von
Fill Up your Bookshelves! Fill Up your Bookshelves!
Fill Up your Bookshelves! reneedv
288 views23 Folien
Dealing with Legacy &lt;del>Code&lt;/del> People von
Dealing with Legacy &lt;del>Code&lt;/del> PeopleDealing with Legacy &lt;del>Code&lt;/del> People
Dealing with Legacy &lt;del>Code&lt;/del> Peoplereneedv
534 views21 Folien
Whose Wife Are You? von
Whose Wife Are You?Whose Wife Are You?
Whose Wife Are You?reneedv
823 views47 Folien
How I Learned to Smell Code von
How I Learned to Smell CodeHow I Learned to Smell Code
How I Learned to Smell Codereneedv
715 views20 Folien

Más de reneedv(7)

Week2 von reneedv
Week2Week2
Week2
reneedv278 views
Week1 von reneedv
Week1Week1
Week1
reneedv415 views
Fill Up your Bookshelves! von reneedv
Fill Up your Bookshelves! Fill Up your Bookshelves!
Fill Up your Bookshelves!
reneedv288 views
Dealing with Legacy &lt;del>Code&lt;/del> People von reneedv
Dealing with Legacy &lt;del>Code&lt;/del> PeopleDealing with Legacy &lt;del>Code&lt;/del> People
Dealing with Legacy &lt;del>Code&lt;/del> People
reneedv534 views
Whose Wife Are You? von reneedv
Whose Wife Are You?Whose Wife Are You?
Whose Wife Are You?
reneedv823 views
How I Learned to Smell Code von reneedv
How I Learned to Smell CodeHow I Learned to Smell Code
How I Learned to Smell Code
reneedv715 views
RailsBrdige Seattle Workshop Intro von reneedv
RailsBrdige Seattle Workshop IntroRailsBrdige Seattle Workshop Intro
RailsBrdige Seattle Workshop Intro
reneedv297 views

Último

When Sex Gets Complicated: Porn, Affairs, & Cybersex von
When Sex Gets Complicated: Porn, Affairs, & CybersexWhen Sex Gets Complicated: Porn, Affairs, & Cybersex
When Sex Gets Complicated: Porn, Affairs, & CybersexMarlene Maheu
73 views73 Folien
11.28.23 Social Capital and Social Exclusion.pptx von
11.28.23 Social Capital and Social Exclusion.pptx11.28.23 Social Capital and Social Exclusion.pptx
11.28.23 Social Capital and Social Exclusion.pptxmary850239
304 views25 Folien
UNIDAD 3 6º C.MEDIO.pptx von
UNIDAD 3 6º C.MEDIO.pptxUNIDAD 3 6º C.MEDIO.pptx
UNIDAD 3 6º C.MEDIO.pptxMarcosRodriguezUcedo
124 views32 Folien
Ch. 7 Political Participation and Elections.pptx von
Ch. 7 Political Participation and Elections.pptxCh. 7 Political Participation and Elections.pptx
Ch. 7 Political Participation and Elections.pptxRommel Regala
105 views11 Folien
Pharmaceutical Inorganic chemistry UNIT-V Radiopharmaceutical.pptx von
Pharmaceutical Inorganic chemistry UNIT-V Radiopharmaceutical.pptxPharmaceutical Inorganic chemistry UNIT-V Radiopharmaceutical.pptx
Pharmaceutical Inorganic chemistry UNIT-V Radiopharmaceutical.pptxMs. Pooja Bhandare
93 views51 Folien
MercerJesse2.1Doc.pdf von
MercerJesse2.1Doc.pdfMercerJesse2.1Doc.pdf
MercerJesse2.1Doc.pdfjessemercerail
237 views5 Folien

Último(20)

When Sex Gets Complicated: Porn, Affairs, & Cybersex von Marlene Maheu
When Sex Gets Complicated: Porn, Affairs, & CybersexWhen Sex Gets Complicated: Porn, Affairs, & Cybersex
When Sex Gets Complicated: Porn, Affairs, & Cybersex
Marlene Maheu73 views
11.28.23 Social Capital and Social Exclusion.pptx von mary850239
11.28.23 Social Capital and Social Exclusion.pptx11.28.23 Social Capital and Social Exclusion.pptx
11.28.23 Social Capital and Social Exclusion.pptx
mary850239304 views
Ch. 7 Political Participation and Elections.pptx von Rommel Regala
Ch. 7 Political Participation and Elections.pptxCh. 7 Political Participation and Elections.pptx
Ch. 7 Political Participation and Elections.pptx
Rommel Regala105 views
Pharmaceutical Inorganic chemistry UNIT-V Radiopharmaceutical.pptx von Ms. Pooja Bhandare
Pharmaceutical Inorganic chemistry UNIT-V Radiopharmaceutical.pptxPharmaceutical Inorganic chemistry UNIT-V Radiopharmaceutical.pptx
Pharmaceutical Inorganic chemistry UNIT-V Radiopharmaceutical.pptx
ISO/IEC 27001 and ISO/IEC 27005: Managing AI Risks Effectively von PECB
ISO/IEC 27001 and ISO/IEC 27005: Managing AI Risks EffectivelyISO/IEC 27001 and ISO/IEC 27005: Managing AI Risks Effectively
ISO/IEC 27001 and ISO/IEC 27005: Managing AI Risks Effectively
PECB 598 views
Education and Diversity.pptx von DrHafizKosar
Education and Diversity.pptxEducation and Diversity.pptx
Education and Diversity.pptx
DrHafizKosar177 views
Use of Probiotics in Aquaculture.pptx von AKSHAY MANDAL
Use of Probiotics in Aquaculture.pptxUse of Probiotics in Aquaculture.pptx
Use of Probiotics in Aquaculture.pptx
AKSHAY MANDAL104 views
Psychology KS4 von WestHatch
Psychology KS4Psychology KS4
Psychology KS4
WestHatch90 views
Drama KS5 Breakdown von WestHatch
Drama KS5 BreakdownDrama KS5 Breakdown
Drama KS5 Breakdown
WestHatch87 views
How to empty an One2many field in Odoo von Celine George
How to empty an One2many field in OdooHow to empty an One2many field in Odoo
How to empty an One2many field in Odoo
Celine George72 views
Classification of crude drugs.pptx von GayatriPatra14
Classification of crude drugs.pptxClassification of crude drugs.pptx
Classification of crude drugs.pptx
GayatriPatra1492 views
Dance KS5 Breakdown von WestHatch
Dance KS5 BreakdownDance KS5 Breakdown
Dance KS5 Breakdown
WestHatch86 views
Create a Structure in VBNet.pptx von Breach_P
Create a Structure in VBNet.pptxCreate a Structure in VBNet.pptx
Create a Structure in VBNet.pptx
Breach_P75 views

Week6

Hinweis der Redaktion

  1. \n
  2. \n
  3. \n
  4. \n
  5. \n
  6. \n
  7. \n
  8. \n
  9. \n
  10. \n
  11. \n
  12. \n
  13. \n
  14. \n
  15. \n
  16. \n
  17. \n
  18. \n
  19. \n
  20. \n
  21. \n
  22. \n
  23. \n
  24. \n
  25. \n
  26. \n