danmunk-fixed_fields 0.1.0 → 0.1.1

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/Rakefile CHANGED
@@ -2,7 +2,7 @@ require 'rubygems'
2
2
  require 'rake'
3
3
  require 'echoe'
4
4
 
5
- Echoe.new('fixed_fields', '0.1.0') do |f|
5
+ Echoe.new('fixed_fields', '0.1.1') do |f|
6
6
  f.description = 'Helps map fields from fixed length record to an active record instance'
7
7
  f.url = 'http://www.github.com/danmunk/fixed_fields'
8
8
  f.author = 'Dan Munk'
data/fixed_fields.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{fixed_fields}
5
- s.version = "0.1.0"
5
+ s.version = "0.1.1"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Dan Munk"]
@@ -10,7 +10,7 @@ Gem::Specification.new do |s|
10
10
  s.description = %q{Helps map fields from fixed length record to an active record instance}
11
11
  s.email = %q{danmunk@gmail.com}
12
12
  s.extra_rdoc_files = ["lib/fixed_fields.rb", "README.rdoc"]
13
- s.files = ["init.rb", "lib/fixed_fields.rb", "Manifest", "Rakefile", "README.rdoc", "fixed_fields.gemspec"]
13
+ s.files = ["fixed_fields.gemspec", "github_test.rb", "init.rb", "lib/fixed_fields.rb", "Rakefile", "README.rdoc", "Manifest"]
14
14
  s.has_rdoc = true
15
15
  s.homepage = %q{http://www.github.com/danmunk/fixed_fields}
16
16
  s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Fixed_fields", "--main", "README.rdoc"]
data/lib/fixed_fields.rb CHANGED
@@ -1,4 +1,4 @@
1
- module Fixedfields
1
+ module FixedFields
2
2
 
3
3
  def self.included(base)
4
4
  base.extend FieldMethods
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: danmunk-fixed_fields
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dan Munk
@@ -23,12 +23,13 @@ extra_rdoc_files:
23
23
  - lib/fixed_fields.rb
24
24
  - README.rdoc
25
25
  files:
26
+ - fixed_fields.gemspec
27
+ - github_test.rb
26
28
  - init.rb
27
29
  - lib/fixed_fields.rb
28
- - Manifest
29
30
  - Rakefile
30
31
  - README.rdoc
31
- - fixed_fields.gemspec
32
+ - Manifest
32
33
  has_rdoc: true
33
34
  homepage: http://www.github.com/danmunk/fixed_fields
34
35
  post_install_message:
data/Manifest DELETED
@@ -1,5 +0,0 @@
1
- init.rb
2
- lib/fixed_fields.rb
3
- Manifest
4
- Rakefile
5
- README.rdoc