glennr-seer 0.9.3

Sign up to get free protection for your applications and to get access to all the features.
data/spec/spec.opts ADDED
@@ -0,0 +1 @@
1
+ --color
@@ -0,0 +1,13 @@
1
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
2
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
3
+ require 'rubygems'
4
+ require 'action_pack'
5
+ require 'active_support'
6
+ require 'spec'
7
+ require 'spec/autorun'
8
+ require 'seer'
9
+ require File.dirname(__FILE__) + "/custom_matchers"
10
+ require File.dirname(__FILE__) + '/helpers'
11
+ Spec::Runner.configure do |config|
12
+ config.include(CustomMatcher)
13
+ end
metadata ADDED
@@ -0,0 +1,121 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: glennr-seer
3
+ version: !ruby/object:Gem::Version
4
+ hash: 61
5
+ prerelease: false
6
+ segments:
7
+ - 0
8
+ - 9
9
+ - 3
10
+ version: 0.9.3
11
+ platform: ruby
12
+ authors:
13
+ - Corey Ehmke / SEO Logic
14
+ - Glenn Roberts / Siyelo
15
+ autorequire:
16
+ bindir: bin
17
+ cert_chain: []
18
+
19
+ date: 2010-12-13 00:00:00 +02:00
20
+ default_executable:
21
+ dependencies:
22
+ - !ruby/object:Gem::Dependency
23
+ name: rspec
24
+ prerelease: false
25
+ requirement: &id001 !ruby/object:Gem::Requirement
26
+ none: false
27
+ requirements:
28
+ - - ">="
29
+ - !ruby/object:Gem::Version
30
+ hash: 13
31
+ segments:
32
+ - 1
33
+ - 2
34
+ - 9
35
+ version: 1.2.9
36
+ type: :development
37
+ version_requirements: *id001
38
+ description: " Seer is a lightweight, semantically rich wrapper for the Google Visualization API. It allows you to easily create a visualization of data in a variety of formats, including area charts, bar charts, column charts, gauges, line charts, and pie charts."
39
+ email: glenn.roberts@siyelo.com
40
+ executables: []
41
+
42
+ extensions: []
43
+
44
+ extra_rdoc_files:
45
+ - LICENSE
46
+ - README.rdoc
47
+ files:
48
+ - CONTRIBUTORS
49
+ - LICENSE
50
+ - README.rdoc
51
+ - Rakefile
52
+ - init.rb
53
+ - lib/seer.rb
54
+ - lib/seer/area_chart.rb
55
+ - lib/seer/bar_chart.rb
56
+ - lib/seer/chart.rb
57
+ - lib/seer/column_chart.rb
58
+ - lib/seer/gauge.rb
59
+ - lib/seer/geomap.rb
60
+ - lib/seer/line_chart.rb
61
+ - lib/seer/pie_chart.rb
62
+ - spec/seer_spec.rb
63
+ - spec/spec.opts
64
+ - spec/spec_helper.rb
65
+ - spec/area_chart_spec.rb
66
+ - spec/bar_chart_spec.rb
67
+ - spec/chart_spec.rb
68
+ - spec/column_chart_spec.rb
69
+ - spec/custom_matchers.rb
70
+ - spec/gauge_spec.rb
71
+ - spec/geomap_spec.rb
72
+ - spec/helpers.rb
73
+ - spec/line_chart_spec.rb
74
+ - spec/pie_chart_spec.rb
75
+ has_rdoc: true
76
+ homepage: http://github.com/glennr/seer
77
+ licenses: []
78
+
79
+ post_install_message:
80
+ rdoc_options:
81
+ - --charset=UTF-8
82
+ require_paths:
83
+ - lib
84
+ required_ruby_version: !ruby/object:Gem::Requirement
85
+ none: false
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ hash: 3
90
+ segments:
91
+ - 0
92
+ version: "0"
93
+ required_rubygems_version: !ruby/object:Gem::Requirement
94
+ none: false
95
+ requirements:
96
+ - - ">="
97
+ - !ruby/object:Gem::Version
98
+ hash: 3
99
+ segments:
100
+ - 0
101
+ version: "0"
102
+ requirements: []
103
+
104
+ rubyforge_project:
105
+ rubygems_version: 1.3.7
106
+ signing_key:
107
+ specification_version: 3
108
+ summary: Seer is a lightweight, semantically rich wrapper for the Google Visualization API.
109
+ test_files:
110
+ - spec/area_chart_spec.rb
111
+ - spec/bar_chart_spec.rb
112
+ - spec/chart_spec.rb
113
+ - spec/column_chart_spec.rb
114
+ - spec/custom_matchers.rb
115
+ - spec/gauge_spec.rb
116
+ - spec/geomap_spec.rb
117
+ - spec/helpers.rb
118
+ - spec/line_chart_spec.rb
119
+ - spec/pie_chart_spec.rb
120
+ - spec/seer_spec.rb
121
+ - spec/spec_helper.rb