[DRE-commits] [ruby-org] 138/303: Updated gem version

Jérémy Bobbio lunar at alioth.debian.org
Fri Aug 9 17:33:44 UTC 2013


This is an automated email from the git hooks/post-receive script.

lunar pushed a commit to branch master
in repository ruby-org.

commit e2d330cacc7d8e98c854007a864263c27d23ff07
Author: Waldemar Quevedo <waldemar.quevedo at gmail.com>
Date:   Sat Apr 14 10:35:12 2012 +0900

    Updated gem version
---
 History.txt      |    4 +++-
 lib/org-ruby.rb  |    2 +-
 org-ruby.gemspec |   42 +++++++++++++++++++-----------------------
 3 files changed, 23 insertions(+), 25 deletions(-)

diff --git a/History.txt b/History.txt
index f6f62e0..7927045 100644
--- a/History.txt
+++ b/History.txt
@@ -1,9 +1,11 @@
-== 0.6.1 / 2012-02-25
+== 0.6.1 / 2012-04-14
 
 * Added encoding directive to support Ruby 1.9.2
 * Headlines with the COMMENT keyword, and the PROPERTIES drawer are not exported
 * Angle links in org-mode are embedded in anchor tags on html output
 * #+BEGIN/END_SRC lang code blocks are embedded in code tags with class that specifies the coding language
+* Fixed bug in code blocks when a colon was at the beginning
+* More than five dashes create an horizontal rule in html output
 
 == 0.6.0 / 2011-09-03
 
diff --git a/lib/org-ruby.rb b/lib/org-ruby.rb
index 251038a..a5b0f49 100644
--- a/lib/org-ruby.rb
+++ b/lib/org-ruby.rb
@@ -3,7 +3,7 @@ unless defined? ::OrgRuby
 module OrgRuby
 
   # :stopdoc:
-  VERSION = '0.6.0'
+  VERSION = '0.6.1'
   LIBPATH = ::File.expand_path(::File.dirname(__FILE__)) + ::File::SEPARATOR
   PATH = ::File.dirname(LIBPATH) + ::File::SEPARATOR
   # :startdoc:
diff --git a/org-ruby.gemspec b/org-ruby.gemspec
index 29d9ef4..4d3e050 100644
--- a/org-ruby.gemspec
+++ b/org-ruby.gemspec
@@ -1,41 +1,37 @@
 # -*- encoding: utf-8 -*-
 
 Gem::Specification.new do |s|
-  s.name = %q{org-ruby}
-  s.version = "0.6.0"
+  s.name = "org-ruby"
+  s.version = "0.6.1"
 
   s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
-  s.authors = [%q{Brian Dewey}]
-  s.date = %q{2011-09-03}
-  s.description = %q{This gem contains Ruby routines for parsing org-mode files.The most
-significant thing this library does today is convert org-mode files to
-HTML or textile. Currently, you cannot do much to customize the
-conversion. The supplied textile conversion is optimized for
-extracting "content" from the orgfile as opposed to "metadata." }
-  s.email = %q{bdewey at gmail.com}
-  s.executables = [%q{org-ruby}]
-  s.extra_rdoc_files = [%q{History.txt}, %q{README.rdoc}, %q{bin/org-ruby}]
-  s.files = [%q{.bnsignore}, %q{History.txt}, %q{README.rdoc}, %q{Rakefile}, %q{TAGS}, %q{bin/org-ruby}, %q{lib/org-ruby.rb}, %q{lib/org-ruby/headline.rb}, %q{lib/org-ruby/html_output_buffer.rb}, %q{lib/org-ruby/html_symbol_replace.rb}, %q{lib/org-ruby/line.rb}, %q{lib/org-ruby/output_buffer.rb}, %q{lib/org-ruby/parser.rb}, %q{lib/org-ruby/regexp_helper.rb}, %q{lib/org-ruby/textile_output_buffer.rb}, %q{lib/org-ruby/textile_symbol_replace.rb}, %q{spec/data/freeform-example.org}, %q{spec/ [...]
-  s.homepage = %q{http://github.com/bdewey/org-ruby}
-  s.rdoc_options = [%q{--main}, %q{README.rdoc}]
-  s.require_paths = [%q{lib}]
-  s.rubyforge_project = %q{org-ruby}
-  s.rubygems_version = %q{1.8.5}
-  s.summary = %q{This gem contains Ruby routines for parsing org-mode files.}
-  s.test_files = [%q{test/test_orgmode_parser.rb}]
+  s.authors = ["Brian Dewey"]
+  s.date = "2012-04-14"
+  s.description = "This gem contains Ruby routines for parsing org-mode files.The most\nsignificant thing this library does today is convert org-mode files to\nHTML or textile. Currently, you cannot do much to customize the\nconversion. The supplied textile conversion is optimized for\nextracting \"content\" from the orgfile as opposed to \"metadata.\" "
+  s.email = "bdewey at gmail.com"
+  s.executables = ["org-ruby"]
+  s.extra_rdoc_files = ["History.txt", "README.rdoc", "announcement.txt", "bin/org-ruby"]
+  s.files = [".bnsignore", "Gemfile", "Gemfile.lock", "History.txt", "README.rdoc", "Rakefile", "TAGS", "announcement.txt", "bin/org-ruby", "lib/org-ruby.rb", "lib/org-ruby/headline.rb", "lib/org-ruby/html_output_buffer.rb", "lib/org-ruby/html_symbol_replace.rb", "lib/org-ruby/line.rb", "lib/org-ruby/output_buffer.rb", "lib/org-ruby/parser.rb", "lib/org-ruby/regexp_helper.rb", "lib/org-ruby/textile_output_buffer.rb", "lib/org-ruby/textile_symbol_replace.rb", "lib/org-ruby/tilt.rb", "org- [...]
+  s.homepage = "http://github.com/bdewey/org-ruby"
+  s.rdoc_options = ["--main", "README.rdoc"]
+  s.require_paths = ["lib"]
+  s.rubyforge_project = "org-ruby"
+  s.rubygems_version = "1.8.10"
+  s.summary = "This gem contains Ruby routines for parsing org-mode files."
+  s.test_files = ["test/test_orgmode_parser.rb"]
 
   if s.respond_to? :specification_version then
     s.specification_version = 3
 
     if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
       s.add_runtime_dependency(%q<rubypants>, [">= 0.2.0"])
-      s.add_development_dependency(%q<bones>, [">= 3.7.1"])
+      s.add_development_dependency(%q<bones>, [">= 3.8.0"])
     else
       s.add_dependency(%q<rubypants>, [">= 0.2.0"])
-      s.add_dependency(%q<bones>, [">= 3.7.1"])
+      s.add_dependency(%q<bones>, [">= 3.8.0"])
     end
   else
     s.add_dependency(%q<rubypants>, [">= 0.2.0"])
-    s.add_dependency(%q<bones>, [">= 3.7.1"])
+    s.add_dependency(%q<bones>, [">= 3.8.0"])
   end
 end

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/ruby-org.git



More information about the Pkg-ruby-extras-commits mailing list