/[packages]/cauldron/ruby/pristine/SPECS/ruby.spec
ViewVC logotype

Diff of /cauldron/ruby/pristine/SPECS/ruby.spec

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 291561 by fwang, Mon Sep 10 02:57:26 2012 UTC revision 291562 by fwang, Mon Sep 10 03:28:48 2012 UTC
# Line 104  Group:         Development/Ruby Line 104  Group:         Development/Ruby
104  Requires:       ruby(abi) = %{subver}  Requires:       ruby(abi) = %{subver}
105  BuildArch:      noarch  BuildArch:      noarch
106    
107    %package        minitest
108    Summary:        Minitest provides a complete suite of testing facilities.
109    Group:          Development/Ruby
110    License:        MIT
111    Requires:       ruby(abi) = %{ruby_abi}
112    Requires:       ruby(rubygems) >= %{version}
113    Provides:       rubygem(minitest) = %{version}-%{release}
114    BuildArch:      noarch
115    
116    %package        json
117    Summary:        This is a JSON implementation as a Ruby extension in C
118    Group:          Development/Ruby
119    License:        Ruby or GPLv2
120    Requires:       ruby(abi) = %{ruby_abi}
121    Requires:       ruby(rubygems) >= %{version}
122    Provides:       rubygem(json) = %{version}-%{release}
123    
124    %package        rdoc
125    Summary:        A tool to generate HTML and command-line documentation for Ruby projects
126    Group:          Development/Ruby
127    License:        GPLv2 and Ruby and MIT
128    Requires:       ruby(abi) = %{ruby_abi}
129    Requires:       ruby(rubygems) >= %{version}
130    Provides:       rdoc = %{version}-%{release}
131    Provides:       ri = %{version}-%{release}
132    BuildArch:      noarch
133    
134  %description  %description
135  Ruby is the interpreted scripting language for quick and  Ruby is the interpreted scripting language for quick and
136  easy object-oriented programming.  It has many features to  easy object-oriented programming.  It has many features to
# Line 142  libraries. Line 169  libraries.
169  Rake is a Make-like program implemented in Ruby. Tasks and dependencies are  Rake is a Make-like program implemented in Ruby. Tasks and dependencies are
170  specified in standard Ruby syntax.  specified in standard Ruby syntax.
171    
172    %description    rdoc
173    RDoc produces HTML and command-line documentation for Ruby projects.  RDoc
174    includes the 'rdoc' and 'ri' tools for generating and displaying online
175    documentation.
176    
177    %description    json
178    This is a implementation of the JSON specification according to RFC 4627.
179    You can think of it as a low fat alternative to XML, if you want to store
180    data to disk or transmit it over a network rather than use a verbose
181    markup language.
182    
183    %description    minitest
184    minitest/unit is a small and incredibly fast unit testing framework.
185    
186    minitest/spec is a functionally complete spec engine.
187    
188    minitest/benchmark is an awesome way to assert the performance of your
189    algorithms in a repeatable manner.
190    
191    minitest/mock by Steven Baker, is a beautifully tiny mock object
192    framework.
193    
194    minitest/pride shows pride in testing and adds coloring to your test
195    output.
196    
197  %prep  %prep
198  %setup -q -n ruby-%{rubyver}-%{patchversion}  %setup -q -n ruby-%{rubyver}-%{patchversion}
199  %apply_patches  %apply_patches
# Line 237  make test Line 289  make test
289  %{ruby_libdir}/xmlrpc  %{ruby_libdir}/xmlrpc
290  %{ruby_libdir}/yaml  %{ruby_libdir}/yaml
291  %dir %{ruby_libarchdir}  %dir %{ruby_libarchdir}
292    %{ruby_libarchdir}/bigdecimal.so
293  %{ruby_libarchdir}/continuation.so  %{ruby_libarchdir}/continuation.so
294  %{ruby_libarchdir}/coverage.so  %{ruby_libarchdir}/coverage.so
295  %{ruby_libarchdir}/curses.so  %{ruby_libarchdir}/curses.so
# Line 250  make test Line 303  make test
303  %{ruby_libarchdir}/dl/*.so  %{ruby_libarchdir}/dl/*.so
304  %dir %{ruby_libarchdir}/enc  %dir %{ruby_libarchdir}/enc
305  %{ruby_libarchdir}/enc/*.so  %{ruby_libarchdir}/enc/*.so
306    %dir %{ruby_libarchdir}/enc/trans
307    %{ruby_libarchdir}/enc/trans/*.so
308  %{ruby_libarchdir}/etc.so  %{ruby_libarchdir}/etc.so
309  %{ruby_libarchdir}/fcntl.so  %{ruby_libarchdir}/fcntl.so
310  %{ruby_libarchdir}/fiber.so  %{ruby_libarchdir}/fiber.so
# Line 260  make test Line 315  make test
315  %{ruby_libarchdir}/io/nonblock.so  %{ruby_libarchdir}/io/nonblock.so
316  %{ruby_libarchdir}/io/wait.so  %{ruby_libarchdir}/io/wait.so
317  %dir %{ruby_libarchdir}/mathn  %dir %{ruby_libarchdir}/mathn
318  %{ruby_libarchdir}/mathn/complex.so  %{ruby_libarchdir}/mathn/*.so
 %{ruby_libarchdir}/mathn/rational.so  
319  %{ruby_libarchdir}/nkf.so  %{ruby_libarchdir}/nkf.so
320  %{ruby_libarchdir}/objspace.so  %{ruby_libarchdir}/objspace.so
321  %{ruby_libarchdir}/openssl.so  %{ruby_libarchdir}/openssl.so
# Line 280  make test Line 334  make test
334  %{ruby_libarchdir}/syck.so  %{ruby_libarchdir}/syck.so
335  %{ruby_libarchdir}/syslog.so  %{ruby_libarchdir}/syslog.so
336  %{ruby_libarchdir}/zlib.so  %{ruby_libarchdir}/zlib.so
 %dir %{_datadir}/ruby  
337  %{_mandir}/man1/erb.1.*  %{_mandir}/man1/erb.1.*
338  %{_mandir}/man1/irb.1.*  %{_mandir}/man1/irb.1.*
339  %{_mandir}/man1/ri.1.*  %{_mandir}/man1/ri.1.*
# Line 336  make test Line 389  make test
389  %{rubygems_dir}/rubygems.rb  %{rubygems_dir}/rubygems.rb
390  %{rubygems_dir}/ubygems.rb  %{rubygems_dir}/ubygems.rb
391    
392    %files minitest
393    %{ruby_libdir}/minitest
394    %{rubygems_dir}/%{ruby_api}/specifications/minitest-*.gemspec
395    
396  %files rake  %files rake
397  %{_bindir}/rake  %{_bindir}/rake
398  %{_mandir}/man1/rake.1.*  %{_mandir}/man1/rake.1.*
399    %{ruby_libdir}/rake
400    %{rubygems_dir}/%{ruby_api}/gems/rake-*
401    %{rubygems_dir}/%{ruby_api}/specifications/rdoc-*.gemspec
402    
403    %files rdoc
404    %{_bindir}/rdoc
405    %{_bindir}/ri
406    %{ruby_libdir}/rdoc
407    %{rubygems_dir}/%{ruby_api}/gems/rdoc-*
408    %{rubygems_dir}/%{ruby_api}/specifications/rdoc-*.gemspec
409    %{_mandir}/man1/ri.1.*
410    
411    %files json
412    %dir %{ruby_libarchdir}/json
413    %dir %{ruby_libarchdir}/json/ext
414    %{ruby_libarchdir}/json/ext/*.so
415    %{ruby_libdir}/json
416    %{rubygems_dir}/%{ruby_api}/specifications/json-*.gemspec

Legend:
Removed from v.291561  
changed lines
  Added in v.291562

  ViewVC Help
Powered by ViewVC 1.1.30