diff --git a/python/README.markdown b/python/README.markdown new file mode 120000 index 0000000..1691050 --- /dev/null +++ b/python/README.markdown @@ -0,0 +1 @@ +../README.markdown \ No newline at end of file diff --git a/python/setup.py b/python/setup.py index 85ba7f0..38d7e26 100644 --- a/python/setup.py +++ b/python/setup.py @@ -22,7 +22,7 @@ def read(fname): # If any package contains *.txt or *.rst files, include them: '': ['*.txt', '*.rst'], }, - long_description=read('../README.markdown'), + long_description=read('README.markdown'), classifiers=[ "Development Status :: 3 - Alpha", ], diff --git a/ruby/README.markdown b/ruby/README.markdown new file mode 120000 index 0000000..1691050 --- /dev/null +++ b/ruby/README.markdown @@ -0,0 +1 @@ +../README.markdown \ No newline at end of file diff --git a/ruby/bayes_on_redis.gemspec b/ruby/bayes_on_redis.gemspec index c14d51b..2d71fd9 100644 --- a/ruby/bayes_on_redis.gemspec +++ b/ruby/bayes_on_redis.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |gem| gem.name = 'bayes_on_redis' - gem.version = "0.2.0" + gem.version = "0.2.1" gem.date = Date.today.to_s gem.summary = "Bayesian filter on top of Redis" @@ -14,7 +14,7 @@ Gem::Specification.new do |gem| gem.has_rdoc = false gem.files = [ - File.join("..", "README.markdown"), + "README.markdown", File.join("lib", "bayes_on_redis.rb"), File.join("datasets", "stopwords.txt") ]