scaffolder-annotation-locator 0.1.2 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
data/.travis.yml ADDED
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+ rvm:
3
+ - 1.8.7
4
+ - 1.9.3
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.1.4
@@ -51,7 +51,7 @@ class Scaffolder::AnnotationLocator < DelegateClass(Array)
51
51
  end
52
52
 
53
53
  def scaffold
54
- YAML::ENGINE.yamler = 'syck'
54
+ YAML::ENGINE.yamler = 'syck' if defined? YAML::ENGINE
55
55
  Scaffolder.new(YAML.load(File.read(@scaffold_file)),@sequence_file)
56
56
  end
57
57
 
@@ -1,11 +1,9 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
  $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), 'lib'))
3
3
 
4
- require "scaffolder/annotation_locator/version"
5
-
6
4
  Gem::Specification.new do |s|
7
5
  s.name = "scaffolder-annotation-locator"
8
- s.version = Scaffolder::AnnotationLocator::VERSION
6
+ s.version = File.read 'VERSION'
9
7
  s.platform = Gem::Platform::RUBY
10
8
  s.authors = ["Michael Barton"]
11
9
  s.email = "mail@next.gs"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: scaffolder-annotation-locator
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.4
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-04-25 00:00:00.000000000 Z
12
+ date: 2012-05-31 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: scaffolder
@@ -167,11 +167,13 @@ extra_rdoc_files:
167
167
  files:
168
168
  - .document
169
169
  - .gitignore
170
+ - .travis.yml
170
171
  - CHANGELOG.txt
171
172
  - Gemfile
172
173
  - LICENSE.txt
173
174
  - README.rdoc
174
175
  - Rakefile
176
+ - VERSION
175
177
  - features/inserts.feature
176
178
  - features/multiple-contigs.feature
177
179
  - features/single-contig.feature
@@ -179,7 +181,6 @@ files:
179
181
  - features/support/env.rb
180
182
  - features/unresolved.feature
181
183
  - lib/scaffolder/annotation_locator.rb
182
- - lib/scaffolder/annotation_locator/version.rb
183
184
  - lib/scaffolder/extensions.rb
184
185
  - lib/scaffolder/gff_record_helper.rb
185
186
  - scaffolder-annotation-locator.gemspec
@@ -202,7 +203,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
202
203
  version: '0'
203
204
  segments:
204
205
  - 0
205
- hash: -762467383921930214
206
+ hash: 3264369434890404542
206
207
  required_rubygems_version: !ruby/object:Gem::Requirement
207
208
  none: false
208
209
  requirements:
@@ -1,5 +0,0 @@
1
- require 'scaffolder/annotation_locator'
2
-
3
- class Scaffolder::AnnotationLocator
4
- VERSION = '0.1.2'
5
- end