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 +1 -1
- data/fixed_fields.gemspec +2 -2
- data/lib/fixed_fields.rb +1 -1
- metadata +4 -3
- data/Manifest +0 -5
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.
|
|
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.
|
|
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", "
|
|
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
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.
|
|
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
|
-
-
|
|
32
|
+
- Manifest
|
|
32
33
|
has_rdoc: true
|
|
33
34
|
homepage: http://www.github.com/danmunk/fixed_fields
|
|
34
35
|
post_install_message:
|