nifty-report 0.0.3 → 0.0.4

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.
@@ -1,3 +1,5 @@
1
+ require 'nifty-report/model'
2
+
1
3
  module Nifty
2
4
  class Report
3
5
  def initialize(sql, name, connection_string = nil)
@@ -0,0 +1 @@
1
+ require 'nifty-report/report'
data/nifty-report.gemspec CHANGED
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = "nifty-report"
7
- spec.version = "0.0.3"
7
+ spec.version = "0.0.4"
8
8
  spec.authors = ["Scott Albertson"]
9
9
  spec.email = ["scott@thoughtbot.com"]
10
10
  spec.summary = %q{Create reports the easy way.}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nifty-report
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -55,8 +55,9 @@ files:
55
55
  - LICENSE.txt
56
56
  - README.md
57
57
  - Rakefile
58
- - lib/model.rb
59
- - lib/report.rb
58
+ - lib/nifty-report.rb
59
+ - lib/nifty-report/model.rb
60
+ - lib/nifty-report/report.rb
60
61
  - nifty-report.gemspec
61
62
  homepage: ''
62
63
  licenses:
File without changes