Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Creating a Gem with Bundler
Search
Sponsored
·
Your Podcast. Everywhere. Effortlessly.
Share. Educate. Inspire. Entertain. You do you. We'll handle the rest.
→
Ben Morris
April 15, 2014
Technology
1
5.7k
Creating a Gem with Bundler
Ben Morris
April 15, 2014
Tweet
Share
More Decks by Ben Morris
See All by Ben Morris
Code Retreat
bnmrrs
1
62
Method Jam
bnmrrs
2
130
Other Decks in Technology
See All in Technology
StrandsとNeptuneを使ってナレッジグラフを構築する
yakumo
1
120
制約が導く迷わない設計 〜 信頼性と運用性を両立するマイナンバー管理システムの実践 〜
bwkw
3
960
SREのプラクティスを用いた3領域同時 マネジメントへの挑戦 〜SRE・情シス・セキュリティを統合した チーム運営術〜
coconala_engineer
2
670
クレジットカード決済基盤を支えるSRE - 厳格な監査とSRE運用の両立 (SRE Kaigi 2026)
capytan
6
2.8k
量子クラウドサービスの裏側 〜Deep Dive into OQTOPUS〜
oqtopus
0
130
仕様書駆動AI開発の実践: Issue→Skill→PRテンプレで 再現性を作る
knishioka
2
670
Codex 5.3 と Opus 4.6 にコーポレートサイトを作らせてみた / Codex 5.3 vs Opus 4.6
ama_ch
0
170
SRE Enabling戦記 - 急成長する組織にSREを浸透させる戦いの歴史
markie1009
0
130
OpenShiftでllm-dを動かそう!
jpishikawa
0
120
ファインディの横断SREがTakumi byGMOと取り組む、セキュリティと開発スピードの両立
rvirus0817
1
1.4k
SREチームをどう作り、どう育てるか ― Findy横断SREのマネジメント
rvirus0817
0
300
22nd ACRi Webinar - NTT Kawahara-san's slide
nao_sumikawa
0
100
Featured
See All Featured
How to Build an AI Search Optimization Roadmap - Criteria and Steps to Take #SEOIRL
aleyda
1
1.9k
The innovator’s Mindset - Leading Through an Era of Exponential Change - McGill University 2025
jdejongh
PRO
1
93
Game over? The fight for quality and originality in the time of robots
wayneb77
1
120
Believing is Seeing
oripsolob
1
56
My Coaching Mixtape
mlcsv
0
48
エンジニアに許された特別な時間の終わり
watany
106
230k
HDC tutorial
michielstock
1
380
Between Models and Reality
mayunak
1
190
Save Time (by Creating Custom Rails Generators)
garrettdimon
PRO
32
2.1k
JavaScript: Past, Present, and Future - NDC Porto 2020
reverentgeek
52
5.8k
Tips & Tricks on How to Get Your First Job In Tech
honzajavorek
0
440
Dealing with People You Can't Stand - Big Design 2015
cassininazir
367
27k
Transcript
LET'S MAKE A GEM
WHAT IS A GEM?
LET'S MAKE A GEM 1. Creating a Gem with Bundler
LET'S MAKE A GEM 1. Creating a Gem with Bundler
2. Testing it with rspec
LET'S MAKE A GEM 1. Creating a Gem with Bundler
2. Testing it with rspec 3. Setting up continuous integration
LET'S MAKE A GEM 1. Creating a Gem with Bundler
2. Testing it with rspec 3. Setting up continuous integration 4. Publishing to Rubygems
LET'S MAKE A GEM 1. Creating a Gem with Bundler
2. Testing it with rspec 3. Setting up continuous integration 4. Publishing to Rubygems 5. Publishing to a private gem server
1. Creating a Gem
RVM BUNDLER RUBYGEMS
INITIALIZING OUR GEM $ rvm use 2.1.0 $ gem install
bundler $ bundle gem eleventh $ cd eleventh $ rvm --rvmrc --create 2.1.0@eleventh $ cd ..; cd -
GENERATED STRUCTURE $ ls eleventh |--- README.md |--- eleventh.gemspec |---
Rakefile |--- Gemfile |--- lib |--- eleventh.rb |--- eleventh |--- version.rb
EXPLORING THE GENERATED STRUCTURE $ vim eleventh.gemspec $ vim Gemfile
$ vim lib/eleventh.rb $ vim lib/eleventh/version.rb $ rake -T
MAKE IT DO SOMETHING $ vim lib/eleventh/array_access.rb $ vim lib/eleventh.rb
$ git add . $ git commit -m "Version 1"
MAKE IT DO SOMETHING # ./lib/eleventh/array_access.rb class Array def eleventh
self[10] end end # ./lib/eleventh.rb require "eleventh/version" require "eleventh/array_access" module Eleventh end
2. Testing our gem with rspec
TESTING OUR GEM $ mkdir spec $ vim spec/spec_helper.rb $
vim spec/array_access_spec.rb $ rspec spec/array_access.rb
TESTING OUR GEM # ./spec/spec_helper.rb require 'rubygems' require 'bundler/setup' Bundler.setup
require 'eleventh' RSpec.configure do |config| end
TESTING OUR GEM # ./spec/array_access.rb require 'spec_helper' describe Array do
describe '#eleventh' do it 'should return the eleventh element' do arr = (1..15).to_a arr.eleventh.should eq(11) end it 'should return nil if the eleventh element not not exist' do arr = (1..9).to_a arr.eleventh.should eq(nil) end end end
TESTING OUR GEM $ rspec spec/array_access.rb .. Finished in 0.00135
seconds 2 examples, 0 failures
TESTING OUR GEM $ vim Rakefile # ./Rakefile require "bundler/gem_tasks"
require 'rspec/core/rake_task' RSpec::Core::RakeTask.new('spec') task :default => :spec
TESTING OUR GEM $ rake /Users/bmorris/.rvm/rubies/ruby-2.1.0-p247/bin/ruby -S rspec ./spec/array_access_spec.rb ..
Finished in 0.00066 seconds 2 examples, 0 failures
3. Setting up continuous integration
JENKINS
CIRCLE CI
TRAVIS CI
SETTING UP CONTINUOUS INTEGRATION $ vim travis.yml $ vim eleventh.gemspec
$ vim README.md $ vim git commit -m "Setting up Travis CI" $ git push
SETTING UP CONTINUOUS INTEGRATION # ./travis.yml language: ruby rvm: -
2.1.0
4. Publishing to Rubygems
PUBLISHING TO RUBYGEMS $ rake -T $ rake release $
gem build eleventh.gemspec $ gem push eleventh-0.0.1.gem $ open rubygems.org
TA-DA!
REMOVING THE GEM $ gem yank eleventh -v 0.0.1
5. Publishing to a private gem server
WHY PRIVATE?
GITHUB
GEMINABOX
GEMFURY
PUBLISHING TO GEMFURY $ gem install gemfury $ gem build
eleventh.gemspec $ fury push eleventh-0.0.1.gem $ git remote add fury https://
[email protected]
/bnmrrs/eleventh.git $ git push fury master
PUBLISHING TO GEMFURY $ cd ../other-project $ vim Gemfile #
../other-project/Gemfile source 'https://
[email protected]
/bnmrrs/' $ bundle install
PUBLISHING A NEW VERSION $ vim lib/eleventh/version.rb $ gem build
eleventh.gemspec $ git add . $ git commit -m "Version 2" $ fury push eleventh-0.0.2.gem $ fury list
QUESTIONS? @bnmrrs www.boltmade.com https://github.com/bnmrrs/talks