obo_parser.gemspec in obo_parser-0.3.7 vs obo_parser.gemspec in obo_parser-0.4.0
- old
+ new
@@ -1,57 +1,28 @@
-# Generated by jeweler
-# DO NOT EDIT THIS FILE DIRECTLY
-# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
-# -*- encoding: utf-8 -*-
+# coding: utf-8
+lib = File.expand_path('../lib', __FILE__)
+$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
+require 'obo_parser/version'
-Gem::Specification.new do |s|
- s.name = %q{obo_parser}
- s.version = "0.3.7"
+Gem::Specification.new do |spec|
+ spec.name = 'obo_parser'
+ spec.version = OboParser::VERSION # "0.3.8"
- s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
- s.authors = ["mjy"]
- s.date = %q{2011-08-25}
- s.description = %q{Provides all-in-one object containing the contents of an OBO formatted file. OBO version 1.2 is targeted, though this should work for 1.0. }
- s.email = %q{diapriid@gmail.com}
- s.extra_rdoc_files = [
- "LICENSE",
- "README.rdoc"
- ]
- s.files = [
- ".document",
- "LICENSE",
- "README.rdoc",
- "Rakefile",
- "VERSION",
- "init.rb",
- "install.rb",
- "lib/lexer.rb",
- "lib/obo_parser.rb",
- "lib/parser.rb",
- "lib/tokens.rb",
- "lib/utilities.rb",
- "obo_parser.gemspec",
- "tasks/obo_parser_tasks.rake",
- "test/cell.obo",
- "test/go.obo",
- "test/hao.obo",
- "test/obo_1.0_test.txt",
- "test/obo_1.0_test_wo_typedefs.txt",
- "test/test_obo_parser.rb",
- "test/tgma.obo",
- "uninstall.rb"
- ]
- s.homepage = %q{http://github.com/mjy/obo_parser}
- s.require_paths = ["lib"]
- s.rubygems_version = %q{1.7.2}
- s.summary = %q{A simple OBO file handler.}
+ spec.authors = ["Matt Yoder"]
+ spec.email = ["diapriid@gmail.com"]
+ spec.date = %q{2011-08-25}
+ spec.description = %q{Provides all-in-one object containing the contents of an OBO formatted file. OBO version 1.2 is targeted, though this should work for 1.0. }
+ spec.summary = 'Ruby parsering for OBO files.'
+ spec.license = 'MIT'
+ spec.homepage = 'http://github.com/mjy/obo_parser'
+ spec.files = `git ls-files -z`.split("\x0")
+ spec.require_paths = ["lib"]
- if s.respond_to? :specification_version then
- s.specification_version = 3
+ spec.add_dependency 'rake', '~> 11.1.2'
+ spec.add_development_dependency 'rspec', '~> 3.4'
+ spec.add_development_dependency 'bundler', '~> 1.5'
+ spec.add_development_dependency 'guard-rspec'
+ spec.add_development_dependency 'byebug'
+ spec.add_development_dependency 'awesome_print', '~> 1.6'
- if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
- else
- end
- else
- end
end