forked from t3hk0d3/rencoder
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Igor Yamolov
committed
Jan 12, 2015
1 parent
c59b033
commit ca1a1e7
Showing
4 changed files
with
55 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,5 @@ def initialize(options = {}) | |
|
||
include Rencoder::Encoder | ||
include Rencoder::Decoder | ||
|
||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,21 +4,20 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) | |
require 'rencoder/version' | ||
|
||
Gem::Specification.new do |spec| | ||
spec.name = "rencoder" | ||
spec.name = 'rencoder' | ||
spec.version = Rencoder::VERSION | ||
spec.authors = ["Igor Yamolov"] | ||
spec.email = ["[email protected]"] | ||
spec.summary = %q{TODO: Write a short summary. Required.} | ||
spec.description = %q{TODO: Write a longer description. Optional.} | ||
spec.homepage = "" | ||
spec.license = "MIT" | ||
spec.authors = ['Igor Yamolov'] | ||
spec.email = ['[email protected]'] | ||
spec.summary = %q{Rencoder is pure Ruby implementation of Rencoder serialization format encoding/decoding.} | ||
spec.description = %q{Rencoder is implementation of Rencoder encoding/decoding.} | ||
spec.homepage = 'https://github.com/t3hk0d3/rencoder' | ||
spec.license = 'MIT' | ||
|
||
spec.files = `git ls-files -z`.split("\x0") | ||
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } | ||
spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) | ||
spec.require_paths = ["lib"] | ||
|
||
spec.add_development_dependency "bundler", "~> 1.7" | ||
spec.add_development_dependency "rake", "~> 10.0" | ||
spec.add_development_dependency "rspec", "~> 3.1.0" | ||
spec.add_development_dependency 'bundler', '~> 1.7' | ||
spec.add_development_dependency 'rspec', '~> 3.1.0' | ||
end |