Skip to content

Commit 71f1388

Browse files
committed
Fix loading paths
1 parent e0aa5d5 commit 71f1388

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

lib/rapid_transit.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class RapidTransit
1+
module RapidTransit
22
class ConfigError < StandardError; end
33
class NoFileError < StandardError; end
44
class ColumnMismatchError < StandardError; end
@@ -8,5 +8,6 @@ class NotFoundError < StandardError; end
88
end
99

1010
require 'rapid_transit/action'
11+
require 'rapid_transit/action_list'
1112
require 'rapid_transit/row'
1213
require 'rapid_transit/base'

rapid_transit.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Gem::Specification.new do |s|
1313
s.summary = "A simple DSL for importing text files in Rails"
1414
s.description = "RapidTransit allows you to create text file parsers for use in a Ruby on Rails application."
1515

16-
s.files = Dir["{app,config,db,lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.rdoc"]
16+
s.files = Dir["{app,config,db,lib}/**/**/*"] + ["MIT-LICENSE", "Rakefile"]
1717
s.test_files = Dir["test/**/*"]
1818

1919
s.add_dependency "rails", ">= 2.3.8"

0 commit comments

Comments
 (0)