genecrmod 0.0.0 → 0.1.0

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.
data/lib/genecrmod.rb CHANGED
@@ -0,0 +1 @@
1
+ require 'genecrmod/gene'
@@ -0,0 +1,18 @@
1
+ require 'rubygems'
2
+ require 'bundler'
3
+ begin
4
+ Bundler.setup(:default, :development)
5
+ rescue Bundler::BundlerError => e
6
+ $stderr.puts e.message
7
+ $stderr.puts "Run `bundle install` to install missing gems"
8
+ exit e.status_code
9
+ end
10
+ require 'test/unit'
11
+ require 'shoulda'
12
+
13
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
14
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
15
+ require 'coderunner'
16
+
17
+ class Test::Unit::TestCase
18
+ end
@@ -0,0 +1,7 @@
1
+
2
+ #p 'eeee'
3
+ require 'helper'
4
+ CodeRunner.setup_run_class('gene')
5
+ #CodeRunner::Chease.get_input_help_from_source_code(ENV['GENE_SOURCE'])
6
+ #CodeRunner::Chease.update_defaults_from_source_code(ENV['GENE_SOURCE'])
7
+ CodeRunner::Gene.synchronise_variables(ENV['GENE_SOURCE'])
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: genecrmod
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.0
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Edmund Highcock
@@ -123,7 +123,12 @@ files:
123
123
  - README.rdoc
124
124
  - Rakefile
125
125
  - VERSION
126
+ - genecrmod.gemspec
126
127
  - lib/genecrmod.rb
128
+ - lib/genecrmod/gene.rb
129
+ - lib/genecrmod/namelists.rb
130
+ - sync_variables/helper.rb
131
+ - sync_variables/sync_variables.rb
127
132
  - test/helper.rb
128
133
  - test/test_genecrmod.rb
129
134
  homepage: http://github.com/edmundhighcock/genecrmod