最近需求要做一个和fckeditor差不多的文本编辑器,但是不需要那么多功能,只要和redmine差不多就行,自己动手写了一个text_tool,用到RedCloth插件,但是自从我把rails 更新到3.0后怎么也安装不上总是抱如下错误:
D:\work_space\bs>bundle install
Fetching source index for http://rubygems.org/
Using rake (0.8.7)
Installing RedCloth (4.2.3) with native extensions C:/Ruby/lib/ruby/site_ruby/1.8/rubygems/installer.
onBuildError)
C:/Ruby/bin/ruby.exe extconf.rb
creating Makefile
make
'make' 不是内部或外部命令,也不是可运行的程序
或批处理文件。
Gem files will remain installed in C:/Ruby/lib/ruby/gems/1.8/gems/RedCloth-4.2.3 for inspection.
Results logged to C:/Ruby/lib/ruby/gems/1.8/gems/RedCloth-4.2.3/ext/redcloth_scan/gem_make.out
from C:/Ruby/lib/ruby/site_ruby/1.8/rubygems/installer.rb:446:in `each'
from C:/Ruby/lib/ruby/site_ruby/1.8/rubygems/installer.rb:446:in `build_extensions'
from C:/Ruby/lib/ruby/site_ruby/1.8/rubygems/installer.rb:198:in `install'
from C:/Ruby/lib/ruby/gems/1.8/gems/bundler-1.0.0/lib/bundler/source.rb:100:in `install'
from C:/Ruby/lib/ruby/gems/1.8/gems/bundler-1.0.0/lib/bundler/installer.rb:55:in `run'
from C:/Ruby/lib/ruby/gems/1.8/gems/bundler-1.0.0/lib/bundler/spec_set.rb:12:in `each'
from C:/Ruby/lib/ruby/gems/1.8/gems/bundler-1.0.0/lib/bundler/spec_set.rb:12:in `each'
from C:/Ruby/lib/ruby/gems/1.8/gems/bundler-1.0.0/lib/bundler/installer.rb:44:in `run'
from C:/Ruby/lib/ruby/gems/1.8/gems/bundler-1.0.0/lib/bundler/installer.rb:8:in `install'
from C:/Ruby/lib/ruby/gems/1.8/gems/bundler-1.0.0/lib/bundler/cli.rb:217:in `install'
from C:/Ruby/lib/ruby/gems/1.8/gems/bundler-1.0.0/lib/bundler/vendor/thor/task.rb:22:in `send
from C:/Ruby/lib/ruby/gems/1.8/gems/bundler-1.0.0/lib/bundler/vendor/thor/task.rb:22:in `run'
from C:/Ruby/lib/ruby/gems/1.8/gems/bundler-1.0.0/lib/bundler/vendor/thor/invocation.rb:118:i
from C:/Ruby/lib/ruby/gems/1.8/gems/bundler-1.0.0/lib/bundler/vendor/thor.rb:246:in `dispatch
from C:/Ruby/lib/ruby/gems/1.8/gems/bundler-1.0.0/lib/bundler/vendor/thor/base.rb:389:in `sta
from C:/Ruby/lib/ruby/gems/1.8/gems/bundler-1.0.0/bin/bundle:13
from C:/Ruby/bin/bundle:19:in `load'
from C:/Ruby/bin/bundle:19
很是郁闷,网上页没搜到解决的办法。最后我在rubyforge上搜到gem 包居然安装成功
你可以下载: RedCloth-4.2.2-x86-mswin32-60.gem 到本地通过执行命令:
gem install -l RedCloth-4.2.2-x86-mswin32-60.gem
安装完成之后,在environment.rb 中写入以下代码:
require "redcloth"
分享到:
相关推荐
redcloth使用,其包括了redcloth.rb以及页面显示用到的js,css,image.以及语法帮助。 博文链接:https://hooney.iteye.com/blog/208838
首先,你需要通过RubyGems安装RedCloth库: ```bash gem install redcloth ``` 然后在你的代码中引入RedCloth并处理Textile文本: ```ruby require 'redcloth' text = "h1. 我的标题\n\n这是我的文本。" ...
redcloth, RedCloth是一个用于将 Textile 转换为HTML的ruby 库 RedCloth - ruby的Textile 解析器主页redcloth.org维护者Joshua Siler github.com/joshuasiler作者Garber版权
RedCloth :: Formatters :: Plain 与RedCloth中包含的HTML和Latex格式化程序类似,此格式允许您将Textile转换为纯文本,而无需使用Textile语法。依存关系这个插件只需要 。例子RedCloth.new("p. this is *simple* _...
在Redmine的安装过程中,RubyGems用于获取和安装Redmine本身及其依赖的gem,比如数据库连接器(如pg或mysql2)、文本处理库(如RedCloth或Kramdown)、邮件处理库(如ActionMailer)等。这些gem确保了Redmine能够...
git-wiki 是使用 Git 做为数据存储的 wiki 引擎,使用 Ruby 开发。要求环境支持: rubygems sinatra grit redcloth rubypants 标签:gitwiki
在描述中提到的`ruby -v`命令是用来检查当前系统中安装的Ruby版本,这里的版本是`ruby 2.1.4p265 (2014-10-27 revision 48166) [i386-mingw32]`,这表明系统中运行的是32位的Ruby解释器。 接下来我们详细分析压缩包...
您需要安装 ,所需的库以及扩展包 , 和 : $ gem install webgen $ gem install archive-tar-minitar builder coderay erubis haml $ gem install maruku rdiscount rdoc RedCloth sass $ gem install webgen-zurb...
Ruby降价促销处理器 Discount是...用法RDiscount实现了RedCloth流行并被BlueCloth采用的基本协议: require 'rdiscount'markdown = RDiscount.new("Hello World!")puts markdown.to_html创建RDiscount对象时,可以打
它的出现主要是为了解决Ruby开发者在处理YAML格式数据时的需求。这个库完全由Ruby编写,这意味着它可以在任何支持Ruby的平台上运行,无需依赖外部C扩展或其他特定平台的组件。这使得`YAML.rb`具有良好的可移植性,...
如果未安装ruby环境,请进行以下设置: apt-get install ruby2.0 ruby2.0-dev gem bundler zlib1g-dev nodejs 将/ usr / bin / ruby和/ usr / bin / gem可执行文件重新链接到2.0版本: gem install RedCloth...
JavaCloth是一个开源项目,它的出现是为了在Java环境中提供与RedCloth和Markdown类似的文本解析功能。RedCloth是Textile格式的一种实现,而Markdown则是一种轻量级的标记语言,两者都广泛用于将易读的文本格式转换为...