ºÝºÝߣ

ºÝºÝߣShare a Scribd company logo
Yura Tolstik
Ruby/Rails developer at Altoros Development

            t witter: @yltsrc
         email: yltsrc@gmail.com
Extracting ruby gem

          Why?

      Reusable code
      Easy to install
      Easy to share
Lets start

 Find code duplications
Write tests if not exists

        Ready?
How to create

  creating a gem
specification file
(mygem.gemspec)      bundle gem mygem
 and do all things
     by hand...
By hand?
mygem.gemspec
Gem::Specification.new do |s|
  s.name        = "mygem"
  s.version     = Mygem::VERSION
  s.authors     = ["Yura Tolstik"]
  s.email       = ["yltsrc@gmail.com"]
  s.homepage    = "http://github.com/yltsrc/mygem"
  s.summary     = %q{My first gem}
  s.description = %q{Create ruby gem step by step with bundler}
  s.license     = "MIT"

  s.files         = `git ls-files`.split("n")
  s.test_files    = `git ls-files -- spec/*`.split("n")
  s.require_paths = ["lib"]
  s.add_development_dependency "rake"
  s.add_development_dependency "rspec"
end
spec_helper.rb

$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
$LOAD_PATH.unshift(File.dirname(__FILE__))
require 'rspec'
require 'newgem'

RSpec.configure do |config|
  # if needed
end
Extract tests

describe "Mygem" do
  describe "#hello" do
    it "should return 'Hello world!'" do
      @base = ""
      @base.extend(Mygem::Base)
      @base.hello.should eql("Hello world!")
    end
  end
end
Extract methods

module Mygem
  module Base
    def hello
      "Hello #{self.empty? ? 'world' : self}!"
    end
  end
end
Rakefile

require "bundler/gem_tasks"

require 'rspec/core'
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) do |spec|
  spec.pattern = FileList['spec/**/*_spec.rb']
end
task :default => :spec
Test


rake spec
Build
       rake build

          or

gem build mygem.gemspec
Publish
      rake release

           or

gem push mygem-0.0.1.gem
My own gem server

   gem help generate_index

       gem help server
Questions




  http://gembundler.com/rubygems.html
http://docs.rubygems.org/read/chapter/20

More Related Content

What's hot (20)

YAPC::Asia 2010 Twitter½âÎö¥µ©`¥Ó¥¹
YAPC::Asia 2010 Twitter½âÎö¥µ©`¥Ó¥¹YAPC::Asia 2010 Twitter½âÎö¥µ©`¥Ó¥¹
YAPC::Asia 2010 Twitter½âÎö¥µ©`¥Ó¥¹
Yusuke Wada
?
Mojolicious
MojoliciousMojolicious
Mojolicious
Marcos Rebelo
?
Inside Bokete: Web Application with Mojolicious and others
Inside Bokete:  Web Application with Mojolicious and othersInside Bokete:  Web Application with Mojolicious and others
Inside Bokete: Web Application with Mojolicious and others
Yusuke Wada
?
¥¨¥í¥µ¥¤¥È¹ÜÀíÕߤΑnôd3 - Hokkaiodo.pm#4 -
¥¨¥í¥µ¥¤¥È¹ÜÀíÕߤΑnôd3 - Hokkaiodo.pm#4 -¥¨¥í¥µ¥¤¥È¹ÜÀíÕߤΑnôd3 - Hokkaiodo.pm#4 -
¥¨¥í¥µ¥¤¥È¹ÜÀíÕߤΑnôd3 - Hokkaiodo.pm#4 -
Yusuke Wada
?
Mojo as a_client
Mojo as a_clientMojo as a_client
Mojo as a_client
Marcus Ramberg
?
Asynchronous programming patterns in Perl
Asynchronous programming patterns in PerlAsynchronous programming patterns in Perl
Asynchronous programming patterns in Perl
deepfountainconsulting
?
Twib in Yokoahma.pm 2010/3/5
Twib in Yokoahma.pm 2010/3/5Twib in Yokoahma.pm 2010/3/5
Twib in Yokoahma.pm 2010/3/5
Yusuke Wada
?
Mojolicious - Perl Framework for the Real-Time Web (Lightning Talk)
Mojolicious - Perl Framework for the Real-Time Web (Lightning Talk)Mojolicious - Perl Framework for the Real-Time Web (Lightning Talk)
Mojolicious - Perl Framework for the Real-Time Web (Lightning Talk)
Dotan Dimet
?
A piece of sugar in your client-side development
A piece of sugar in your client-side developmentA piece of sugar in your client-side development
A piece of sugar in your client-side development
Nicolas Blanco
?
Absolute Beginners Guide to Puppet Through Types - PuppetConf 2014
Absolute Beginners Guide to Puppet Through Types - PuppetConf 2014Absolute Beginners Guide to Puppet Through Types - PuppetConf 2014
Absolute Beginners Guide to Puppet Through Types - PuppetConf 2014
Puppet
?
RESTful web services
RESTful web servicesRESTful web services
RESTful web services
Tudor Constantin
?
Intro to Rails
Intro to Rails Intro to Rails
Intro to Rails
epiineg1
?
D¨¦couplez votre appli en micro-APIs
D¨¦couplez votre appli en micro-APIsD¨¦couplez votre appli en micro-APIs
D¨¦couplez votre appli en micro-APIs
Nicolas Blanco
?
Keeping it small: Getting to know the Slim micro framework
Keeping it small: Getting to know the Slim micro frameworkKeeping it small: Getting to know the Slim micro framework
Keeping it small: Getting to know the Slim micro framework
Jeremy Kendall
?
Mojolicious, real-time web framework
Mojolicious, real-time web frameworkMojolicious, real-time web framework
Mojolicious, real-time web framework
taggg
?
JavaScript OOP Pattern
JavaScript OOP PatternJavaScript OOP Pattern
JavaScript OOP Pattern
?? ?
?
Sinatra slideshare
Sinatra slideshareSinatra slideshare
Sinatra slideshare
Nemoto Yusuke
?
Advanced fun with Objective-C runtime.
Advanced fun with Objective-C runtime.Advanced fun with Objective-C runtime.
Advanced fun with Objective-C runtime.
Sash Zats
?
A Gentle Introduction to Event Loops
A Gentle Introduction to Event LoopsA Gentle Introduction to Event Loops
A Gentle Introduction to Event Loops
deepfountainconsulting
?
Redis
RedisRedis
Redis
Puneet Kumar
?
YAPC::Asia 2010 Twitter½âÎö¥µ©`¥Ó¥¹
YAPC::Asia 2010 Twitter½âÎö¥µ©`¥Ó¥¹YAPC::Asia 2010 Twitter½âÎö¥µ©`¥Ó¥¹
YAPC::Asia 2010 Twitter½âÎö¥µ©`¥Ó¥¹
Yusuke Wada
?
Inside Bokete: Web Application with Mojolicious and others
Inside Bokete:  Web Application with Mojolicious and othersInside Bokete:  Web Application with Mojolicious and others
Inside Bokete: Web Application with Mojolicious and others
Yusuke Wada
?
¥¨¥í¥µ¥¤¥È¹ÜÀíÕߤΑnôd3 - Hokkaiodo.pm#4 -
¥¨¥í¥µ¥¤¥È¹ÜÀíÕߤΑnôd3 - Hokkaiodo.pm#4 -¥¨¥í¥µ¥¤¥È¹ÜÀíÕߤΑnôd3 - Hokkaiodo.pm#4 -
¥¨¥í¥µ¥¤¥È¹ÜÀíÕߤΑnôd3 - Hokkaiodo.pm#4 -
Yusuke Wada
?
Asynchronous programming patterns in Perl
Asynchronous programming patterns in PerlAsynchronous programming patterns in Perl
Asynchronous programming patterns in Perl
deepfountainconsulting
?
Twib in Yokoahma.pm 2010/3/5
Twib in Yokoahma.pm 2010/3/5Twib in Yokoahma.pm 2010/3/5
Twib in Yokoahma.pm 2010/3/5
Yusuke Wada
?
Mojolicious - Perl Framework for the Real-Time Web (Lightning Talk)
Mojolicious - Perl Framework for the Real-Time Web (Lightning Talk)Mojolicious - Perl Framework for the Real-Time Web (Lightning Talk)
Mojolicious - Perl Framework for the Real-Time Web (Lightning Talk)
Dotan Dimet
?
A piece of sugar in your client-side development
A piece of sugar in your client-side developmentA piece of sugar in your client-side development
A piece of sugar in your client-side development
Nicolas Blanco
?
Absolute Beginners Guide to Puppet Through Types - PuppetConf 2014
Absolute Beginners Guide to Puppet Through Types - PuppetConf 2014Absolute Beginners Guide to Puppet Through Types - PuppetConf 2014
Absolute Beginners Guide to Puppet Through Types - PuppetConf 2014
Puppet
?
Intro to Rails
Intro to Rails Intro to Rails
Intro to Rails
epiineg1
?
D¨¦couplez votre appli en micro-APIs
D¨¦couplez votre appli en micro-APIsD¨¦couplez votre appli en micro-APIs
D¨¦couplez votre appli en micro-APIs
Nicolas Blanco
?
Keeping it small: Getting to know the Slim micro framework
Keeping it small: Getting to know the Slim micro frameworkKeeping it small: Getting to know the Slim micro framework
Keeping it small: Getting to know the Slim micro framework
Jeremy Kendall
?
Mojolicious, real-time web framework
Mojolicious, real-time web frameworkMojolicious, real-time web framework
Mojolicious, real-time web framework
taggg
?
JavaScript OOP Pattern
JavaScript OOP PatternJavaScript OOP Pattern
JavaScript OOP Pattern
?? ?
?
Advanced fun with Objective-C runtime.
Advanced fun with Objective-C runtime.Advanced fun with Objective-C runtime.
Advanced fun with Objective-C runtime.
Sash Zats
?

Viewers also liked (17)

Edu 290 ppt 1
Edu 290 ppt 1Edu 290 ppt 1
Edu 290 ppt 1
marti13a
?
Mpeg Advisor Presentation Power Point[1]
Mpeg Advisor Presentation Power Point[1]Mpeg Advisor Presentation Power Point[1]
Mpeg Advisor Presentation Power Point[1]
maryannstaff
?
KulturA Benedenwinds
KulturA BenedenwindsKulturA Benedenwinds
KulturA Benedenwinds
ejbezemer
?
DTC Lab Kickoff Intro
DTC Lab Kickoff IntroDTC Lab Kickoff Intro
DTC Lab Kickoff Intro
DTC Lab
?
LaunchPad Framework Module
LaunchPad Framework ModuleLaunchPad Framework Module
LaunchPad Framework Module
acastle08
?
1 examen et corrige his geo 2012 1-am t1
1 examen et corrige his geo 2012 1-am t11 examen et corrige his geo 2012 1-am t1
1 examen et corrige his geo 2012 1-am t1
Ahmed Mesellem
?
Pptppom 111011111708-phpapp01
Pptppom 111011111708-phpapp01Pptppom 111011111708-phpapp01
Pptppom 111011111708-phpapp01
Sky Blue
?
Integral
IntegralIntegral
Integral
Alv Awg
?
3 examen et corrige arabe 2014 1 am t1
3 examen et corrige arabe 2014 1 am t13 examen et corrige arabe 2014 1 am t1
3 examen et corrige arabe 2014 1 am t1
Ahmed Mesellem
?
Ko'galo After Party
Ko'galo After PartyKo'galo After Party
Ko'galo After Party
Supremacy enterprises
?
DOC3 - Soft Drinks and Beer 4 MI
DOC3 - Soft Drinks and Beer 4 MIDOC3 - Soft Drinks and Beer 4 MI
DOC3 - Soft Drinks and Beer 4 MI
ToxiColaOrg
?
Internet product-of-foss
Internet product-of-fossInternet product-of-foss
Internet product-of-foss
nghia le trung
?
Positive thinking
Positive thinkingPositive thinking
Positive thinking
Anang Rizki
?
Session 6 - Poll
Session 6 - PollSession 6 - Poll
Session 6 - Poll
The Digital Insurer
?
trabajo 23/09/11trabajo 23/09/11
trabajo 23/09/11
David Garc¨ªa
?
Edu 290 ppt 1
Edu 290 ppt 1Edu 290 ppt 1
Edu 290 ppt 1
marti13a
?
Mpeg Advisor Presentation Power Point[1]
Mpeg Advisor Presentation Power Point[1]Mpeg Advisor Presentation Power Point[1]
Mpeg Advisor Presentation Power Point[1]
maryannstaff
?
KulturA Benedenwinds
KulturA BenedenwindsKulturA Benedenwinds
KulturA Benedenwinds
ejbezemer
?
DTC Lab Kickoff Intro
DTC Lab Kickoff IntroDTC Lab Kickoff Intro
DTC Lab Kickoff Intro
DTC Lab
?
LaunchPad Framework Module
LaunchPad Framework ModuleLaunchPad Framework Module
LaunchPad Framework Module
acastle08
?
1 examen et corrige his geo 2012 1-am t1
1 examen et corrige his geo 2012 1-am t11 examen et corrige his geo 2012 1-am t1
1 examen et corrige his geo 2012 1-am t1
Ahmed Mesellem
?
Pptppom 111011111708-phpapp01
Pptppom 111011111708-phpapp01Pptppom 111011111708-phpapp01
Pptppom 111011111708-phpapp01
Sky Blue
?
3 examen et corrige arabe 2014 1 am t1
3 examen et corrige arabe 2014 1 am t13 examen et corrige arabe 2014 1 am t1
3 examen et corrige arabe 2014 1 am t1
Ahmed Mesellem
?
DOC3 - Soft Drinks and Beer 4 MI
DOC3 - Soft Drinks and Beer 4 MIDOC3 - Soft Drinks and Beer 4 MI
DOC3 - Soft Drinks and Beer 4 MI
ToxiColaOrg
?
trabajo 23/09/11trabajo 23/09/11
trabajo 23/09/11
David Garc¨ªa
?

Similar to Extracting ruby gem (20)

All I Need to Know I Learned by Writing My Own Web Framework
All I Need to Know I Learned by Writing My Own Web FrameworkAll I Need to Know I Learned by Writing My Own Web Framework
All I Need to Know I Learned by Writing My Own Web Framework
Ben Scofield
?
A tour on ruby and friends
A tour on ruby and friendsA tour on ruby and friends
A tour on ruby and friends
•Fçù ÅË
?
Building web framework with Rack
Building web framework with RackBuilding web framework with Rack
Building web framework with Rack
sickill
?
Great Developers Steal
Great Developers StealGreat Developers Steal
Great Developers Steal
Ben Scofield
?
Ruby Isn't Just About Rails
Ruby Isn't Just About RailsRuby Isn't Just About Rails
Ruby Isn't Just About Rails
Adam Wiggins
?
Hacking with ruby2ruby
Hacking with ruby2rubyHacking with ruby2ruby
Hacking with ruby2ruby
Marc Chung
?
JRuby + Rails = Awesome Java Web Framework at Jfokus 2011
JRuby + Rails = Awesome Java Web Framework at Jfokus 2011JRuby + Rails = Awesome Java Web Framework at Jfokus 2011
JRuby + Rails = Awesome Java Web Framework at Jfokus 2011
Nick Sieger
?
Play vs Rails
Play vs RailsPlay vs Rails
Play vs Rails
Daniel Cukier
?
Migrating Legacy Rails Apps to Rails 3
Migrating Legacy Rails Apps to Rails 3Migrating Legacy Rails Apps to Rails 3
Migrating Legacy Rails Apps to Rails 3
Clinton Dreisbach
?
TDC 2012 - Patterns e Anti-Patterns em Ruby
TDC 2012 - Patterns e Anti-Patterns em RubyTDC 2012 - Patterns e Anti-Patterns em Ruby
TDC 2012 - Patterns e Anti-Patterns em Ruby
Fabio Akita
?
Metaprogramovanie #1
Metaprogramovanie #1Metaprogramovanie #1
Metaprogramovanie #1
Jano Suchal
?
Adventurous Merb
Adventurous MerbAdventurous Merb
Adventurous Merb
Matt Todd
?
Ruby on Rails - Introduction
Ruby on Rails - IntroductionRuby on Rails - Introduction
Ruby on Rails - Introduction
Vagmi Mudumbai
?
Gem That (2009)
Gem That (2009)Gem That (2009)
Gem That (2009)
lazyatom
?
Ruby ÈëéT µÚÒ»´Î¾ÍÉÏÊÖ
Ruby ÈëéT µÚÒ»´Î¾ÍÉÏÊÖRuby ÈëéT µÚÒ»´Î¾ÍÉÏÊÖ
Ruby ÈëéT µÚÒ»´Î¾ÍÉÏÊÖ
Wen-Tien Chang
?
Practical Testing of Ruby Core
Practical Testing of Ruby CorePractical Testing of Ruby Core
Practical Testing of Ruby Core
Hiroshi SHIBATA
?
Rails Engine | Modular application
Rails Engine | Modular applicationRails Engine | Modular application
Rails Engine | Modular application
mirrec
?
Introduction to Rails - presented by Arman Ortega
Introduction to Rails - presented by Arman OrtegaIntroduction to Rails - presented by Arman Ortega
Introduction to Rails - presented by Arman Ortega
arman o
?
Buildr In Action @devoxx france 2012
Buildr In Action @devoxx france 2012Buildr In Action @devoxx france 2012
Buildr In Action @devoxx france 2012
alexismidon
?
ES6 is Nigh
ES6 is NighES6 is Nigh
ES6 is Nigh
Domenic Denicola
?
All I Need to Know I Learned by Writing My Own Web Framework
All I Need to Know I Learned by Writing My Own Web FrameworkAll I Need to Know I Learned by Writing My Own Web Framework
All I Need to Know I Learned by Writing My Own Web Framework
Ben Scofield
?
A tour on ruby and friends
A tour on ruby and friendsA tour on ruby and friends
A tour on ruby and friends
•Fçù ÅË
?
Building web framework with Rack
Building web framework with RackBuilding web framework with Rack
Building web framework with Rack
sickill
?
Great Developers Steal
Great Developers StealGreat Developers Steal
Great Developers Steal
Ben Scofield
?
Ruby Isn't Just About Rails
Ruby Isn't Just About RailsRuby Isn't Just About Rails
Ruby Isn't Just About Rails
Adam Wiggins
?
Hacking with ruby2ruby
Hacking with ruby2rubyHacking with ruby2ruby
Hacking with ruby2ruby
Marc Chung
?
JRuby + Rails = Awesome Java Web Framework at Jfokus 2011
JRuby + Rails = Awesome Java Web Framework at Jfokus 2011JRuby + Rails = Awesome Java Web Framework at Jfokus 2011
JRuby + Rails = Awesome Java Web Framework at Jfokus 2011
Nick Sieger
?
Migrating Legacy Rails Apps to Rails 3
Migrating Legacy Rails Apps to Rails 3Migrating Legacy Rails Apps to Rails 3
Migrating Legacy Rails Apps to Rails 3
Clinton Dreisbach
?
TDC 2012 - Patterns e Anti-Patterns em Ruby
TDC 2012 - Patterns e Anti-Patterns em RubyTDC 2012 - Patterns e Anti-Patterns em Ruby
TDC 2012 - Patterns e Anti-Patterns em Ruby
Fabio Akita
?
Metaprogramovanie #1
Metaprogramovanie #1Metaprogramovanie #1
Metaprogramovanie #1
Jano Suchal
?
Adventurous Merb
Adventurous MerbAdventurous Merb
Adventurous Merb
Matt Todd
?
Ruby on Rails - Introduction
Ruby on Rails - IntroductionRuby on Rails - Introduction
Ruby on Rails - Introduction
Vagmi Mudumbai
?
Gem That (2009)
Gem That (2009)Gem That (2009)
Gem That (2009)
lazyatom
?
Ruby ÈëéT µÚÒ»´Î¾ÍÉÏÊÖ
Ruby ÈëéT µÚÒ»´Î¾ÍÉÏÊÖRuby ÈëéT µÚÒ»´Î¾ÍÉÏÊÖ
Ruby ÈëéT µÚÒ»´Î¾ÍÉÏÊÖ
Wen-Tien Chang
?
Practical Testing of Ruby Core
Practical Testing of Ruby CorePractical Testing of Ruby Core
Practical Testing of Ruby Core
Hiroshi SHIBATA
?
Rails Engine | Modular application
Rails Engine | Modular applicationRails Engine | Modular application
Rails Engine | Modular application
mirrec
?
Introduction to Rails - presented by Arman Ortega
Introduction to Rails - presented by Arman OrtegaIntroduction to Rails - presented by Arman Ortega
Introduction to Rails - presented by Arman Ortega
arman o
?
Buildr In Action @devoxx france 2012
Buildr In Action @devoxx france 2012Buildr In Action @devoxx france 2012
Buildr In Action @devoxx france 2012
alexismidon
?

Recently uploaded (11)

cognitive-restructuring-for-self-growth.pptx
cognitive-restructuring-for-self-growth.pptxcognitive-restructuring-for-self-growth.pptx
cognitive-restructuring-for-self-growth.pptx
StrengthsTheatre
?
Advance Microprocessor application and its uses
Advance Microprocessor application and its usesAdvance Microprocessor application and its uses
Advance Microprocessor application and its uses
nikhilksp512
?
Self_Development_Presentation.pptxdsfvndjsfvnjkdsfvnjdksfnvkjdsvndfsv
Self_Development_Presentation.pptxdsfvndjsfvnjkdsfvnjdksfnvkjdsvndfsvSelf_Development_Presentation.pptxdsfvndjsfvnjkdsfvnjdksfnvkjdsvndfsv
Self_Development_Presentation.pptxdsfvndjsfvnjkdsfvnjdksfnvkjdsvndfsv
RakshitAwasthi1
?
DEVELOPING AN AUTHENTIC PERFORMANCE TASK.pptx
DEVELOPING AN AUTHENTIC PERFORMANCE TASK.pptxDEVELOPING AN AUTHENTIC PERFORMANCE TASK.pptx
DEVELOPING AN AUTHENTIC PERFORMANCE TASK.pptx
waqasulbari560
?
Suicide Risk Inventory.pptx Counselling Unimas
Suicide Risk Inventory.pptx Counselling UnimasSuicide Risk Inventory.pptx Counselling Unimas
Suicide Risk Inventory.pptx Counselling Unimas
neymar3740
?
CHALLENGES-OF-MIDDLE-AND-LATE-ADOLESCENTS.-PERDEV-NAVB.pptx
CHALLENGES-OF-MIDDLE-AND-LATE-ADOLESCENTS.-PERDEV-NAVB.pptxCHALLENGES-OF-MIDDLE-AND-LATE-ADOLESCENTS.-PERDEV-NAVB.pptx
CHALLENGES-OF-MIDDLE-AND-LATE-ADOLESCENTS.-PERDEV-NAVB.pptx
waqasulbari560
?
From the Head to the Heart 2 - Coaching proposal
From the Head to the Heart 2 - Coaching proposalFrom the Head to the Heart 2 - Coaching proposal
From the Head to the Heart 2 - Coaching proposal
mutraart
?
Developing-a-Positive-Mindset-for-Success
Developing-a-Positive-Mindset-for-SuccessDeveloping-a-Positive-Mindset-for-Success
Developing-a-Positive-Mindset-for-Success
oziasrondonc
?
Making CV - The Art of Promoting Yourself.pptx
Making CV - The Art of Promoting Yourself.pptxMaking CV - The Art of Promoting Yourself.pptx
Making CV - The Art of Promoting Yourself.pptx
leksanandafaiz
?
Best Woodworking Classes Near Me Today..
Best Woodworking Classes Near Me Today..Best Woodworking Classes Near Me Today..
Best Woodworking Classes Near Me Today..
John A. Elewa
?
Deductive-and-Inductive-Argument.. logic
Deductive-and-Inductive-Argument.. logicDeductive-and-Inductive-Argument.. logic
Deductive-and-Inductive-Argument.. logic
JcTuang
?
cognitive-restructuring-for-self-growth.pptx
cognitive-restructuring-for-self-growth.pptxcognitive-restructuring-for-self-growth.pptx
cognitive-restructuring-for-self-growth.pptx
StrengthsTheatre
?
Advance Microprocessor application and its uses
Advance Microprocessor application and its usesAdvance Microprocessor application and its uses
Advance Microprocessor application and its uses
nikhilksp512
?
Self_Development_Presentation.pptxdsfvndjsfvnjkdsfvnjdksfnvkjdsvndfsv
Self_Development_Presentation.pptxdsfvndjsfvnjkdsfvnjdksfnvkjdsvndfsvSelf_Development_Presentation.pptxdsfvndjsfvnjkdsfvnjdksfnvkjdsvndfsv
Self_Development_Presentation.pptxdsfvndjsfvnjkdsfvnjdksfnvkjdsvndfsv
RakshitAwasthi1
?
DEVELOPING AN AUTHENTIC PERFORMANCE TASK.pptx
DEVELOPING AN AUTHENTIC PERFORMANCE TASK.pptxDEVELOPING AN AUTHENTIC PERFORMANCE TASK.pptx
DEVELOPING AN AUTHENTIC PERFORMANCE TASK.pptx
waqasulbari560
?
Suicide Risk Inventory.pptx Counselling Unimas
Suicide Risk Inventory.pptx Counselling UnimasSuicide Risk Inventory.pptx Counselling Unimas
Suicide Risk Inventory.pptx Counselling Unimas
neymar3740
?
CHALLENGES-OF-MIDDLE-AND-LATE-ADOLESCENTS.-PERDEV-NAVB.pptx
CHALLENGES-OF-MIDDLE-AND-LATE-ADOLESCENTS.-PERDEV-NAVB.pptxCHALLENGES-OF-MIDDLE-AND-LATE-ADOLESCENTS.-PERDEV-NAVB.pptx
CHALLENGES-OF-MIDDLE-AND-LATE-ADOLESCENTS.-PERDEV-NAVB.pptx
waqasulbari560
?
From the Head to the Heart 2 - Coaching proposal
From the Head to the Heart 2 - Coaching proposalFrom the Head to the Heart 2 - Coaching proposal
From the Head to the Heart 2 - Coaching proposal
mutraart
?
Developing-a-Positive-Mindset-for-Success
Developing-a-Positive-Mindset-for-SuccessDeveloping-a-Positive-Mindset-for-Success
Developing-a-Positive-Mindset-for-Success
oziasrondonc
?
Making CV - The Art of Promoting Yourself.pptx
Making CV - The Art of Promoting Yourself.pptxMaking CV - The Art of Promoting Yourself.pptx
Making CV - The Art of Promoting Yourself.pptx
leksanandafaiz
?
Best Woodworking Classes Near Me Today..
Best Woodworking Classes Near Me Today..Best Woodworking Classes Near Me Today..
Best Woodworking Classes Near Me Today..
John A. Elewa
?
Deductive-and-Inductive-Argument.. logic
Deductive-and-Inductive-Argument.. logicDeductive-and-Inductive-Argument.. logic
Deductive-and-Inductive-Argument.. logic
JcTuang
?

Extracting ruby gem