tommeier-dynamic_reports 0.0.4 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/dynamic_reports.gemspec +25 -0
  2. metadata +2 -2
  3. data/gemspec.rb +0 -25
@@ -0,0 +1,25 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ library="dynamic_reports"
4
+ version="0.0.6"
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = library
8
+ s.version = version
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Wayne E.Seguin", "Joshua Lippiner"]
12
+ s.date = %q{2009-06-28}
13
+ s.description = "Dynamic Ruby Reporting Engine with support for Charts"
14
+ s.email = %q{wayneeseguin@gmail.com}
15
+ s.files = ["HISTORY", "README", "dynamic_reports.gemspec", Dir::glob("lib/**/**")].flatten
16
+ s.has_rdoc = true
17
+ s.homepage = "http://github.com/wayneeseguin/direct_reports"
18
+ s.rdoc_options = ["--inline-source", "--charset=UTF-8"]
19
+ s.require_paths = ["lib"]
20
+ s.rubyforge_project = library
21
+ s.rubygems_version = %q{1.3.0}
22
+ s.summary = "Dynamic Ruby Reporting Engine with support for Charts"
23
+ end
24
+
25
+
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tommeier-dynamic_reports
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Wayne E.Seguin
@@ -25,7 +25,7 @@ extra_rdoc_files: []
25
25
  files:
26
26
  - HISTORY
27
27
  - README
28
- - gemspec.rb
28
+ - dynamic_reports.gemspec
29
29
  has_rdoc: true
30
30
  homepage: http://github.com/wayneeseguin/direct_reports
31
31
  post_install_message:
data/gemspec.rb DELETED
@@ -1,25 +0,0 @@
1
- require "rubygems"
2
-
3
- library="dynamic_reports"
4
- version="0.0.2"
5
-
6
- Gem::Specification::new do |spec|
7
- $VERBOSE = nil
8
- spec.name = library
9
- spec.summary = library
10
- spec.version = version
11
- spec.description = "Dynamic Ruby Reporting Engine with support for Charts"
12
- spec.platform = Gem::Platform::RUBY
13
- spec.files = ["HISTORY", "README", "gemspec.rb", Dir::glob("lib/**/**")].flatten
14
- spec.executables = Dir::glob("bin/*").map{ |script| File::basename script }
15
- spec.require_path = "lib"
16
- spec.has_rdoc = File::exist?("doc")
17
- spec.author = "Wayne E. Seguin & Joshua Lippiner"
18
- spec.email = "wayneeseguin@gmail.com, jlippiner@gmail.com"
19
- spec.homepage = "http://github.com/wayneeseguin/direct_reports"
20
- # spec.test_suite_file = "test/#{library}.rb" if File::directory?("test")
21
- #spec.add_dependency "", ">= 0.0"
22
- spec.extensions << "extconf.rb" if File::exists?("extconf.rb")
23
- spec.rubyforge_project = library
24
- end
25
-