ruby-lzma 0.4.1 → 0.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (5) hide show
  1. data/README.markdown +18 -1
  2. data/Rakefile +0 -1
  3. data/VERSION +1 -1
  4. data/ruby-lzma.gemspec +1 -2
  5. metadata +3 -3
data/README.markdown CHANGED
@@ -1,6 +1,23 @@
1
1
  # LZMA Ruby bindings
2
2
 
3
- ## Java and MRI
3
+ Simple LZMA compression and decompression routines. No features to speak of presently. Works in Ruby 1.8.6+ and JRuby, with compatibility between the two and
4
+ with other LZMA implementations.
5
+
6
+ Send questions to <mailto:ian@ianlevesque.org>
7
+
8
+ ### Installation (MRI)
9
+
10
+ gem install ruby-lzma
11
+
12
+ OR
13
+
14
+ git clone http://github.com/ianlevesque/ruby-lzma.git
15
+ cd ruby-lzma
16
+ rake install
17
+
18
+ ### Installation (JRuby)
19
+
20
+ jruby -S gem install ruby-lzma
4
21
 
5
22
  ## Examples
6
23
 
data/Rakefile CHANGED
@@ -43,7 +43,6 @@ begin
43
43
  Jeweler::Tasks.new do |gemspec|
44
44
  gemspec.name = "ruby-lzma"
45
45
  gemspec.summary = "Simple ruby and jruby wrappers for LZMA compression and decompression."
46
- gemspec.description = "A different and possibly longer explanation of"
47
46
  gemspec.email = "ian@ianlevesque.org"
48
47
  gemspec.homepage = "http://github.com/ianlevesque/ruby-lzma"
49
48
  gemspec.authors = ["Ian Levesque"]
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.4.1
1
+ 0.4.2
data/ruby-lzma.gemspec CHANGED
@@ -5,12 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{ruby-lzma}
8
- s.version = "0.4.1"
8
+ s.version = "0.4.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Ian Levesque"]
12
12
  s.date = %q{2010-03-24}
13
- s.description = %q{A different and possibly longer explanation of}
14
13
  s.email = %q{ian@ianlevesque.org}
15
14
  s.extensions = ["ext/extconf.rb"]
16
15
  s.extra_rdoc_files = [
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 4
8
- - 1
9
- version: 0.4.1
8
+ - 2
9
+ version: 0.4.2
10
10
  platform: ruby
11
11
  authors:
12
12
  - Ian Levesque
@@ -18,7 +18,7 @@ date: 2010-03-24 00:00:00 -04:00
18
18
  default_executable:
19
19
  dependencies: []
20
20
 
21
- description: A different and possibly longer explanation of
21
+ description:
22
22
  email: ian@ianlevesque.org
23
23
  executables: []
24
24