浅谈ruby
在我的印象中,我应该是简单学习过ruby的,但是相关的总结在哪里我已经忘记了。应该是一个图书馆里面,类似于一本红宝书,我想我可能有点记忆。但众所周知,学ruby并不是为了学ruby,而是为了学ruby on rails。
https://try.ruby-lang.org/
https://www.ruby-lang.org/en/
https://rubyonrails.org/
RubyMine
基本介绍:
Ruby in Twenty Minutes
https://www.ruby-lang.org/en/documentation/quickstart/
Interactive Ruby
irb
puts “hello world”
puts和print有什么区别?不清楚,作用差不多
Modules Group Code by Topic
方法的定义和调用
定义
def hi
puts “hello world”
end
调用
hi()
方法的参数
定义一个类
关键字class, @name代表着
通过类创建对象
greeter = Greeter.new(“Pat”)
我的疑惑,这里create_action编辑器无法跳转跟踪了。
gemfile是什么东西?
A Gemfile describes the gem dependencies required to execute associated
Ruby code.
ruby gem是什么?
ruby bundle是什么?
$ gem install bundler
You don’t have write permissions for the /Library/Ruby/Gems/2.3.0 directory.
bundle命令
bundle show
bundle check
bundle install