jzimmek-reportme 0.0.6 → 0.0.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/README.rdoc +4 -3
  2. data/Rakefile +2 -2
  3. data/VERSION +1 -1
  4. metadata +3 -3
@@ -1,11 +1,12 @@
1
- = report_me
1
+ = Reportme
2
2
 
3
- ReportMe is a thin ruby wrapper around your reporting sql queries which empowers you to automate, historicize, graph and mail them in an easy manner.
3
+ Reportme is a thin ruby wrapper around your reporting sql queries which empowers you to automate, historicize, graph and mail them in an easy manner.
4
4
 
5
5
  == Usage
6
6
 
7
- ReportFactory.create do
7
+ Reportme::ReportFactory.create do
8
8
  report :visits do
9
+ periods :day, :week, :month
9
10
  source do |von, bis|
10
11
  <<-SQL
11
12
  select
data/Rakefile CHANGED
@@ -6,9 +6,9 @@ begin
6
6
  Jeweler::Tasks.new do |gem|
7
7
  gem.name = "reportme"
8
8
  gem.summary = "Ruby wrapper to automate sql reports"
9
- gem.description = "ReportMe is a thin ruby wrapper around your reporting sql queries which empowers you to automate, historicize, graph and mail them in an easy manner."
9
+ gem.description = "Reportme is a thin ruby wrapper around your reporting sql queries which empowers you to automate, historicize, graph and mail them in an easy manner."
10
10
  gem.email = "jan.zimmek@web.de"
11
- gem.homepage = "http://github.com/jzimmek/report_me"
11
+ gem.homepage = "http://github.com/jzimmek/reportme/tree/master"
12
12
  gem.authors = ["Jan Zimmek"]
13
13
  gem.files = FileList['lib/**/*.rb', 'bin/*', '[A-Z]*', 'test/**/*'].to_a
14
14
  # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.6
1
+ 0.0.8
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jzimmek-reportme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Zimmek
@@ -13,7 +13,7 @@ date: 2009-06-23 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies: []
15
15
 
16
- description: ReportMe is a thin ruby wrapper around your reporting sql queries which empowers you to automate, historicize, graph and mail them in an easy manner.
16
+ description: Reportme is a thin ruby wrapper around your reporting sql queries which empowers you to automate, historicize, graph and mail them in an easy manner.
17
17
  email: jan.zimmek@web.de
18
18
  executables: []
19
19
 
@@ -33,7 +33,7 @@ files:
33
33
  - test/report_me_test.rb
34
34
  - test/test_helper.rb
35
35
  has_rdoc: false
36
- homepage: http://github.com/jzimmek/report_me
36
+ homepage: http://github.com/jzimmek/reportme/tree/master
37
37
  post_install_message:
38
38
  rdoc_options:
39
39
  - --charset=UTF-8