analytical 3.0.8 → 3.0.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (82) hide show
  1. data/lib/analytical/api.rb +2 -2
  2. metadata +6 -86
  3. data/.document +0 -5
  4. data/.rspec +0 -2
  5. data/.rvmrc +0 -8
  6. data/Gemfile +0 -18
  7. data/Gemfile.lock +0 -118
  8. data/Guardfile +0 -8
  9. data/Rakefile +0 -34
  10. data/VERSION +0 -1
  11. data/analytical.gemspec +0 -187
  12. data/example/.gitignore +0 -4
  13. data/example/Gemfile +0 -27
  14. data/example/Gemfile.lock +0 -80
  15. data/example/README +0 -244
  16. data/example/Rakefile +0 -10
  17. data/example/app/controllers/application_controller.rb +0 -6
  18. data/example/app/controllers/page_controller.rb +0 -18
  19. data/example/app/helpers/application_helper.rb +0 -2
  20. data/example/app/helpers/page_helper.rb +0 -2
  21. data/example/app/views/layouts/application.html.erb +0 -17
  22. data/example/app/views/page/index.html.erb +0 -6
  23. data/example/app/views/page/test_a.html.erb +0 -11
  24. data/example/app/views/page/test_b.html.erb +0 -7
  25. data/example/config.ru +0 -4
  26. data/example/config/analytical.yml +0 -30
  27. data/example/config/application.rb +0 -46
  28. data/example/config/boot.rb +0 -6
  29. data/example/config/database.yml +0 -22
  30. data/example/config/environment.rb +0 -7
  31. data/example/config/environments/development.rb +0 -21
  32. data/example/config/environments/production.rb +0 -42
  33. data/example/config/environments/test.rb +0 -32
  34. data/example/config/initializers/backtrace_silencers.rb +0 -7
  35. data/example/config/initializers/inflections.rb +0 -10
  36. data/example/config/initializers/mime_types.rb +0 -5
  37. data/example/config/initializers/secret_token.rb +0 -7
  38. data/example/config/initializers/session_store.rb +0 -8
  39. data/example/config/locales/en.yml +0 -5
  40. data/example/config/routes.rb +0 -63
  41. data/example/db/seeds.rb +0 -7
  42. data/example/doc/README_FOR_APP +0 -2
  43. data/example/lib/tasks/.gitkeep +0 -0
  44. data/example/public/404.html +0 -26
  45. data/example/public/422.html +0 -26
  46. data/example/public/500.html +0 -26
  47. data/example/public/favicon.ico +0 -0
  48. data/example/public/images/rails.png +0 -0
  49. data/example/public/javascripts/application.js +0 -2
  50. data/example/public/javascripts/controls.js +0 -965
  51. data/example/public/javascripts/dragdrop.js +0 -974
  52. data/example/public/javascripts/effects.js +0 -1123
  53. data/example/public/javascripts/prototype.js +0 -4874
  54. data/example/public/javascripts/rails.js +0 -118
  55. data/example/public/robots.txt +0 -5
  56. data/example/public/stylesheets/.gitkeep +0 -0
  57. data/example/script/rails +0 -9
  58. data/example/test/functional/page_controller_test.rb +0 -19
  59. data/example/test/performance/browsing_test.rb +0 -9
  60. data/example/test/test_helper.rb +0 -13
  61. data/example/test/unit/helpers/page_helper_test.rb +0 -4
  62. data/example/vendor/plugins/.gitkeep +0 -0
  63. data/spec/analytical/api_spec.rb +0 -167
  64. data/spec/analytical/bot_detector_spec.rb +0 -24
  65. data/spec/analytical/command_store_spec.rb +0 -36
  66. data/spec/analytical/modules/adroll_spec.rb +0 -27
  67. data/spec/analytical/modules/adwords_spec.rb +0 -76
  68. data/spec/analytical/modules/base_spec.rb +0 -138
  69. data/spec/analytical/modules/chartbeat_spec.rb +0 -26
  70. data/spec/analytical/modules/clicky_spec.rb +0 -44
  71. data/spec/analytical/modules/comscore_spec.rb +0 -27
  72. data/spec/analytical/modules/google_spec.rb +0 -54
  73. data/spec/analytical/modules/kiss_metrics_spec.rb +0 -51
  74. data/spec/analytical/modules/mixpanel_spec.rb +0 -49
  75. data/spec/analytical/modules/optimizely_spec.rb +0 -26
  76. data/spec/analytical/modules/quantcast.rb +0 -26
  77. data/spec/analytical/modules/reinvigorate_spec.rb +0 -35
  78. data/spec/analytical/session_command_store_spec.rb +0 -50
  79. data/spec/analytical_spec.rb +0 -118
  80. data/spec/config/analytical.yml +0 -19
  81. data/spec/spec.opts +0 -5
  82. data/spec/spec_helper.rb +0 -22
@@ -73,11 +73,11 @@ module Analytical
73
73
  ]
74
74
 
75
75
  if options[:javascript_helpers]
76
- if ::Rails::VERSION::MAJOR >= 3 && ::Rails::VERSION::MINOR >= 1 # Rails 3.1 lets us override views in engines
76
+ if ::Rails::VERSION =~ /^3\.1/ # Rails 3.1 lets us override views in engines
77
77
  js << options[:controller].send(:render_to_string, :partial=>'analytical_javascript') if options[:controller]
78
78
  else # All other rails
79
79
  _partial_path = Pathname.new(__FILE__).dirname.join('..', '..', 'app/views/application', '_analytical_javascript.html.erb').to_s
80
- js << options[:controller].send(:render_to_string, :partial=>_partial_path) if options[:controller]
80
+ js << options[:controller].send(:render_to_string, :file=>_partial_path, :layout=>false) if options[:controller]
81
81
  end
82
82
  end
83
83
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: analytical
3
3
  version: !ruby/object:Gem::Version
4
- hash: 23
4
+ hash: 21
5
5
  prerelease:
6
6
  segments:
7
7
  - 3
8
8
  - 0
9
- - 8
10
- version: 3.0.8
9
+ - 9
10
+ version: 3.0.9
11
11
  platform: ruby
12
12
  authors:
13
13
  - Joshua Krall
@@ -22,7 +22,7 @@ autorequire:
22
22
  bindir: bin
23
23
  cert_chain: []
24
24
 
25
- date: 2011-09-27 00:00:00 -05:00
25
+ date: 2011-10-01 00:00:00 -05:00
26
26
  default_executable:
27
27
  dependencies:
28
28
  - !ruby/object:Gem::Dependency
@@ -243,69 +243,7 @@ extra_rdoc_files:
243
243
  - LICENSE
244
244
  - README.rdoc
245
245
  files:
246
- - .document
247
- - .rspec
248
- - .rvmrc
249
- - Gemfile
250
- - Gemfile.lock
251
- - Guardfile
252
- - LICENSE
253
- - README.rdoc
254
- - Rakefile
255
- - VERSION
256
- - analytical.gemspec
257
246
  - app/views/application/_analytical_javascript.html.erb
258
- - example/.gitignore
259
- - example/Gemfile
260
- - example/Gemfile.lock
261
- - example/README
262
- - example/Rakefile
263
- - example/app/controllers/application_controller.rb
264
- - example/app/controllers/page_controller.rb
265
- - example/app/helpers/application_helper.rb
266
- - example/app/helpers/page_helper.rb
267
- - example/app/views/layouts/application.html.erb
268
- - example/app/views/page/index.html.erb
269
- - example/app/views/page/test_a.html.erb
270
- - example/app/views/page/test_b.html.erb
271
- - example/config.ru
272
- - example/config/analytical.yml
273
- - example/config/application.rb
274
- - example/config/boot.rb
275
- - example/config/database.yml
276
- - example/config/environment.rb
277
- - example/config/environments/development.rb
278
- - example/config/environments/production.rb
279
- - example/config/environments/test.rb
280
- - example/config/initializers/backtrace_silencers.rb
281
- - example/config/initializers/inflections.rb
282
- - example/config/initializers/mime_types.rb
283
- - example/config/initializers/secret_token.rb
284
- - example/config/initializers/session_store.rb
285
- - example/config/locales/en.yml
286
- - example/config/routes.rb
287
- - example/db/seeds.rb
288
- - example/doc/README_FOR_APP
289
- - example/lib/tasks/.gitkeep
290
- - example/public/404.html
291
- - example/public/422.html
292
- - example/public/500.html
293
- - example/public/favicon.ico
294
- - example/public/images/rails.png
295
- - example/public/javascripts/application.js
296
- - example/public/javascripts/controls.js
297
- - example/public/javascripts/dragdrop.js
298
- - example/public/javascripts/effects.js
299
- - example/public/javascripts/prototype.js
300
- - example/public/javascripts/rails.js
301
- - example/public/robots.txt
302
- - example/public/stylesheets/.gitkeep
303
- - example/script/rails
304
- - example/test/functional/page_controller_test.rb
305
- - example/test/performance/browsing_test.rb
306
- - example/test/test_helper.rb
307
- - example/test/unit/helpers/page_helper_test.rb
308
- - example/vendor/plugins/.gitkeep
309
247
  - lib/analytical.rb
310
248
  - lib/analytical/api.rb
311
249
  - lib/analytical/bot_detector.rb
@@ -333,26 +271,8 @@ files:
333
271
  - lib/analytical/rails/engine.rb
334
272
  - lib/analytical/session_command_store.rb
335
273
  - rails/init.rb
336
- - spec/analytical/api_spec.rb
337
- - spec/analytical/bot_detector_spec.rb
338
- - spec/analytical/command_store_spec.rb
339
- - spec/analytical/modules/adroll_spec.rb
340
- - spec/analytical/modules/adwords_spec.rb
341
- - spec/analytical/modules/base_spec.rb
342
- - spec/analytical/modules/chartbeat_spec.rb
343
- - spec/analytical/modules/clicky_spec.rb
344
- - spec/analytical/modules/comscore_spec.rb
345
- - spec/analytical/modules/google_spec.rb
346
- - spec/analytical/modules/kiss_metrics_spec.rb
347
- - spec/analytical/modules/mixpanel_spec.rb
348
- - spec/analytical/modules/optimizely_spec.rb
349
- - spec/analytical/modules/quantcast.rb
350
- - spec/analytical/modules/reinvigorate_spec.rb
351
- - spec/analytical/session_command_store_spec.rb
352
- - spec/analytical_spec.rb
353
- - spec/config/analytical.yml
354
- - spec/spec.opts
355
- - spec/spec_helper.rb
274
+ - LICENSE
275
+ - README.rdoc
356
276
  has_rdoc: true
357
277
  homepage: http://github.com/jkrall/analytical
358
278
  licenses: []
data/.document DELETED
@@ -1,5 +0,0 @@
1
- README.rdoc
2
- lib/**/*.rb
3
- bin/*
4
- features/**/*.feature
5
- LICENSE
data/.rspec DELETED
@@ -1,2 +0,0 @@
1
- --colour
2
-
data/.rvmrc DELETED
@@ -1,8 +0,0 @@
1
- export RUBYOPT="rubygems"
2
- export RUBYLIB="."
3
- rvm ruby-1.8.7-p174@analytical
4
-
5
- # Install bundler if it doesn't already exist
6
- # if ! command -v bundle > /dev/null ; then
7
- # gem install bundler
8
- # fi
data/Gemfile DELETED
@@ -1,18 +0,0 @@
1
- source :rubygems
2
-
3
- group :development, :test do
4
- gem 'rails', '3.0.9'
5
- gem 'activesupport'
6
- gem 'activemodel'
7
- gem 'rspec', '2.6.0'
8
- gem 'rspec-core', '2.6.4'
9
- gem 'rspec-expectations', '2.6.0'
10
- gem 'rspec-mocks', '2.6.0'
11
- gem 'rspec-rails', '2.6.0'
12
- gem 'jeweler'
13
- gem 'diff-lcs'
14
- gem 'guard'
15
- gem 'guard-rspec'
16
- gem 'rb-fsevent'
17
- gem 'growl'
18
- end
@@ -1,118 +0,0 @@
1
- GEM
2
- remote: http://rubygems.org/
3
- specs:
4
- abstract (1.0.0)
5
- actionmailer (3.0.9)
6
- actionpack (= 3.0.9)
7
- mail (~> 2.2.19)
8
- actionpack (3.0.9)
9
- activemodel (= 3.0.9)
10
- activesupport (= 3.0.9)
11
- builder (~> 2.1.2)
12
- erubis (~> 2.6.6)
13
- i18n (~> 0.5.0)
14
- rack (~> 1.2.1)
15
- rack-mount (~> 0.6.14)
16
- rack-test (~> 0.5.7)
17
- tzinfo (~> 0.3.23)
18
- activemodel (3.0.9)
19
- activesupport (= 3.0.9)
20
- builder (~> 2.1.2)
21
- i18n (~> 0.5.0)
22
- activerecord (3.0.9)
23
- activemodel (= 3.0.9)
24
- activesupport (= 3.0.9)
25
- arel (~> 2.0.10)
26
- tzinfo (~> 0.3.23)
27
- activeresource (3.0.9)
28
- activemodel (= 3.0.9)
29
- activesupport (= 3.0.9)
30
- activesupport (3.0.9)
31
- arel (2.0.10)
32
- builder (2.1.2)
33
- configuration (1.2.0)
34
- diff-lcs (1.1.2)
35
- erubis (2.6.6)
36
- abstract (>= 1.0.0)
37
- git (1.2.5)
38
- growl (1.0.3)
39
- guard (0.3.0)
40
- open_gem (~> 1.4.2)
41
- thor (~> 0.14.6)
42
- guard-rspec (0.2.0)
43
- guard (>= 0.2.2)
44
- i18n (0.5.0)
45
- jeweler (1.6.4)
46
- bundler (~> 1.0)
47
- git (>= 1.2.5)
48
- rake
49
- launchy (0.3.7)
50
- configuration (>= 0.0.5)
51
- rake (>= 0.8.1)
52
- mail (2.2.19)
53
- activesupport (>= 2.3.6)
54
- i18n (>= 0.4.0)
55
- mime-types (~> 1.16)
56
- treetop (~> 1.4.8)
57
- mime-types (1.16)
58
- open_gem (1.4.2)
59
- launchy (~> 0.3.5)
60
- polyglot (0.3.1)
61
- rack (1.2.3)
62
- rack-mount (0.6.14)
63
- rack (>= 1.0.0)
64
- rack-test (0.5.7)
65
- rack (>= 1.0)
66
- rails (3.0.9)
67
- actionmailer (= 3.0.9)
68
- actionpack (= 3.0.9)
69
- activerecord (= 3.0.9)
70
- activeresource (= 3.0.9)
71
- activesupport (= 3.0.9)
72
- bundler (~> 1.0)
73
- railties (= 3.0.9)
74
- railties (3.0.9)
75
- actionpack (= 3.0.9)
76
- activesupport (= 3.0.9)
77
- rake (>= 0.8.7)
78
- rdoc (~> 3.4)
79
- thor (~> 0.14.4)
80
- rake (0.9.2)
81
- rb-fsevent (0.4.0)
82
- rdoc (3.6.1)
83
- rspec (2.6.0)
84
- rspec-core (~> 2.6.0)
85
- rspec-expectations (~> 2.6.0)
86
- rspec-mocks (~> 2.6.0)
87
- rspec-core (2.6.4)
88
- rspec-expectations (2.6.0)
89
- diff-lcs (~> 1.1.2)
90
- rspec-mocks (2.6.0)
91
- rspec-rails (2.6.0)
92
- actionpack (~> 3.0)
93
- activesupport (~> 3.0)
94
- railties (~> 3.0)
95
- rspec (~> 2.6.0)
96
- thor (0.14.6)
97
- treetop (1.4.9)
98
- polyglot (>= 0.3.1)
99
- tzinfo (0.3.28)
100
-
101
- PLATFORMS
102
- ruby
103
-
104
- DEPENDENCIES
105
- activemodel
106
- activesupport
107
- diff-lcs
108
- growl
109
- guard
110
- guard-rspec
111
- jeweler
112
- rails (= 3.0.9)
113
- rb-fsevent
114
- rspec (= 2.6.0)
115
- rspec-core (= 2.6.4)
116
- rspec-expectations (= 2.6.0)
117
- rspec-mocks (= 2.6.0)
118
- rspec-rails (= 2.6.0)
data/Guardfile DELETED
@@ -1,8 +0,0 @@
1
- # A sample Guardfile
2
- # More info at http://github.com/guard/guard#readme
3
-
4
- guard 'rspec', :version => 1 do
5
- watch(/^spec\/(.*)_spec.rb/)
6
- watch(/^spec\/spec_helper.rb/) { "spec" }
7
- watch(/^lib\/(.*)\.rb/) { |m| "spec/lib/#{m[1]}_spec.rb" }
8
- end
data/Rakefile DELETED
@@ -1,34 +0,0 @@
1
- require 'rubygems'
2
- require 'rake'
3
-
4
- begin
5
- require 'jeweler'
6
- Jeweler::Tasks.new do |gem|
7
- gem.name = "analytical"
8
- gem.summary = %Q{Gem for managing multiple analytics services in your rails app.}
9
- gem.description = %Q{Gem for managing multiple analytics services in your rails app.}
10
- gem.email = "josh@feefighters.com"
11
- gem.homepage = "http://github.com/jkrall/analytical"
12
- gem.authors = ["Joshua Krall", "Nathan Phelps", "Adam Anderson", "Kevin Menard", "Ablyamitov Ablyamit", "Kurt Werle", "Olivier Lauzon", "Daniel Doubrovkine"]
13
- # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
14
- end
15
- Jeweler::GemcutterTasks.new
16
- rescue LoadError
17
- puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
18
- end
19
-
20
- require 'rspec/core/rake_task'
21
- RSpec::Core::RakeTask.new(:spec)
22
- RSpec::Core::RakeTask.new(:rcov)
23
-
24
- task :default => :spec
25
-
26
- require 'rake/rdoctask'
27
- Rake::RDocTask.new do |rdoc|
28
- version = File.exist?('VERSION') ? File.read('VERSION') : ""
29
-
30
- rdoc.rdoc_dir = 'rdoc'
31
- rdoc.title = "analytical #{version}"
32
- rdoc.rdoc_files.include('README*')
33
- rdoc.rdoc_files.include('lib/**/*.rb')
34
- end
data/VERSION DELETED
@@ -1 +0,0 @@
1
- 3.0.8
@@ -1,187 +0,0 @@
1
- # Generated by jeweler
2
- # DO NOT EDIT THIS FILE DIRECTLY
3
- # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
- # -*- encoding: utf-8 -*-
5
-
6
- Gem::Specification.new do |s|
7
- s.name = %q{analytical}
8
- s.version = "3.0.8"
9
-
10
- s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
- s.authors = ["Joshua Krall", "Nathan Phelps", "Adam Anderson", "Kevin Menard", "Ablyamitov Ablyamit", "Kurt Werle", "Olivier Lauzon", "Daniel Doubrovkine"]
12
- s.date = %q{2011-09-27}
13
- s.description = %q{Gem for managing multiple analytics services in your rails app.}
14
- s.email = %q{josh@feefighters.com}
15
- s.extra_rdoc_files = [
16
- "LICENSE",
17
- "README.rdoc"
18
- ]
19
- s.files = [
20
- ".document",
21
- ".rspec",
22
- ".rvmrc",
23
- "Gemfile",
24
- "Gemfile.lock",
25
- "Guardfile",
26
- "LICENSE",
27
- "README.rdoc",
28
- "Rakefile",
29
- "VERSION",
30
- "analytical.gemspec",
31
- "app/views/application/_analytical_javascript.html.erb",
32
- "example/.gitignore",
33
- "example/Gemfile",
34
- "example/Gemfile.lock",
35
- "example/README",
36
- "example/Rakefile",
37
- "example/app/controllers/application_controller.rb",
38
- "example/app/controllers/page_controller.rb",
39
- "example/app/helpers/application_helper.rb",
40
- "example/app/helpers/page_helper.rb",
41
- "example/app/views/layouts/application.html.erb",
42
- "example/app/views/page/index.html.erb",
43
- "example/app/views/page/test_a.html.erb",
44
- "example/app/views/page/test_b.html.erb",
45
- "example/config.ru",
46
- "example/config/analytical.yml",
47
- "example/config/application.rb",
48
- "example/config/boot.rb",
49
- "example/config/database.yml",
50
- "example/config/environment.rb",
51
- "example/config/environments/development.rb",
52
- "example/config/environments/production.rb",
53
- "example/config/environments/test.rb",
54
- "example/config/initializers/backtrace_silencers.rb",
55
- "example/config/initializers/inflections.rb",
56
- "example/config/initializers/mime_types.rb",
57
- "example/config/initializers/secret_token.rb",
58
- "example/config/initializers/session_store.rb",
59
- "example/config/locales/en.yml",
60
- "example/config/routes.rb",
61
- "example/db/seeds.rb",
62
- "example/doc/README_FOR_APP",
63
- "example/lib/tasks/.gitkeep",
64
- "example/public/404.html",
65
- "example/public/422.html",
66
- "example/public/500.html",
67
- "example/public/favicon.ico",
68
- "example/public/images/rails.png",
69
- "example/public/javascripts/application.js",
70
- "example/public/javascripts/controls.js",
71
- "example/public/javascripts/dragdrop.js",
72
- "example/public/javascripts/effects.js",
73
- "example/public/javascripts/prototype.js",
74
- "example/public/javascripts/rails.js",
75
- "example/public/robots.txt",
76
- "example/public/stylesheets/.gitkeep",
77
- "example/script/rails",
78
- "example/test/functional/page_controller_test.rb",
79
- "example/test/performance/browsing_test.rb",
80
- "example/test/test_helper.rb",
81
- "example/test/unit/helpers/page_helper_test.rb",
82
- "example/vendor/plugins/.gitkeep",
83
- "lib/analytical.rb",
84
- "lib/analytical/api.rb",
85
- "lib/analytical/bot_detector.rb",
86
- "lib/analytical/command_store.rb",
87
- "lib/analytical/modules/adroll.rb",
88
- "lib/analytical/modules/adwords.rb",
89
- "lib/analytical/modules/base.rb",
90
- "lib/analytical/modules/chartbeat.rb",
91
- "lib/analytical/modules/click_tale.rb",
92
- "lib/analytical/modules/clicky.rb",
93
- "lib/analytical/modules/comscore.rb",
94
- "lib/analytical/modules/console.rb",
95
- "lib/analytical/modules/crazy_egg.rb",
96
- "lib/analytical/modules/google.rb",
97
- "lib/analytical/modules/google_optimizer.rb",
98
- "lib/analytical/modules/hubspot.rb",
99
- "lib/analytical/modules/kiss_metrics.rb",
100
- "lib/analytical/modules/loopfuse.rb",
101
- "lib/analytical/modules/microsoft_ads.rb",
102
- "lib/analytical/modules/mixpanel.rb",
103
- "lib/analytical/modules/optimizely.rb",
104
- "lib/analytical/modules/performancing.rb",
105
- "lib/analytical/modules/quantcast.rb",
106
- "lib/analytical/modules/reinvigorate.rb",
107
- "lib/analytical/rails/engine.rb",
108
- "lib/analytical/session_command_store.rb",
109
- "rails/init.rb",
110
- "spec/analytical/api_spec.rb",
111
- "spec/analytical/bot_detector_spec.rb",
112
- "spec/analytical/command_store_spec.rb",
113
- "spec/analytical/modules/adroll_spec.rb",
114
- "spec/analytical/modules/adwords_spec.rb",
115
- "spec/analytical/modules/base_spec.rb",
116
- "spec/analytical/modules/chartbeat_spec.rb",
117
- "spec/analytical/modules/clicky_spec.rb",
118
- "spec/analytical/modules/comscore_spec.rb",
119
- "spec/analytical/modules/google_spec.rb",
120
- "spec/analytical/modules/kiss_metrics_spec.rb",
121
- "spec/analytical/modules/mixpanel_spec.rb",
122
- "spec/analytical/modules/optimizely_spec.rb",
123
- "spec/analytical/modules/quantcast.rb",
124
- "spec/analytical/modules/reinvigorate_spec.rb",
125
- "spec/analytical/session_command_store_spec.rb",
126
- "spec/analytical_spec.rb",
127
- "spec/config/analytical.yml",
128
- "spec/spec.opts",
129
- "spec/spec_helper.rb"
130
- ]
131
- s.homepage = %q{http://github.com/jkrall/analytical}
132
- s.require_paths = ["lib"]
133
- s.rubygems_version = %q{1.6.2}
134
- s.summary = %q{Gem for managing multiple analytics services in your rails app.}
135
-
136
- if s.respond_to? :specification_version then
137
- s.specification_version = 3
138
-
139
- if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
140
- s.add_development_dependency(%q<rails>, ["= 3.0.9"])
141
- s.add_development_dependency(%q<activesupport>, [">= 0"])
142
- s.add_development_dependency(%q<activemodel>, [">= 0"])
143
- s.add_development_dependency(%q<rspec>, ["= 2.6.0"])
144
- s.add_development_dependency(%q<rspec-core>, ["= 2.6.4"])
145
- s.add_development_dependency(%q<rspec-expectations>, ["= 2.6.0"])
146
- s.add_development_dependency(%q<rspec-mocks>, ["= 2.6.0"])
147
- s.add_development_dependency(%q<rspec-rails>, ["= 2.6.0"])
148
- s.add_development_dependency(%q<jeweler>, [">= 0"])
149
- s.add_development_dependency(%q<diff-lcs>, [">= 0"])
150
- s.add_development_dependency(%q<guard>, [">= 0"])
151
- s.add_development_dependency(%q<guard-rspec>, [">= 0"])
152
- s.add_development_dependency(%q<rb-fsevent>, [">= 0"])
153
- s.add_development_dependency(%q<growl>, [">= 0"])
154
- else
155
- s.add_dependency(%q<rails>, ["= 3.0.9"])
156
- s.add_dependency(%q<activesupport>, [">= 0"])
157
- s.add_dependency(%q<activemodel>, [">= 0"])
158
- s.add_dependency(%q<rspec>, ["= 2.6.0"])
159
- s.add_dependency(%q<rspec-core>, ["= 2.6.4"])
160
- s.add_dependency(%q<rspec-expectations>, ["= 2.6.0"])
161
- s.add_dependency(%q<rspec-mocks>, ["= 2.6.0"])
162
- s.add_dependency(%q<rspec-rails>, ["= 2.6.0"])
163
- s.add_dependency(%q<jeweler>, [">= 0"])
164
- s.add_dependency(%q<diff-lcs>, [">= 0"])
165
- s.add_dependency(%q<guard>, [">= 0"])
166
- s.add_dependency(%q<guard-rspec>, [">= 0"])
167
- s.add_dependency(%q<rb-fsevent>, [">= 0"])
168
- s.add_dependency(%q<growl>, [">= 0"])
169
- end
170
- else
171
- s.add_dependency(%q<rails>, ["= 3.0.9"])
172
- s.add_dependency(%q<activesupport>, [">= 0"])
173
- s.add_dependency(%q<activemodel>, [">= 0"])
174
- s.add_dependency(%q<rspec>, ["= 2.6.0"])
175
- s.add_dependency(%q<rspec-core>, ["= 2.6.4"])
176
- s.add_dependency(%q<rspec-expectations>, ["= 2.6.0"])
177
- s.add_dependency(%q<rspec-mocks>, ["= 2.6.0"])
178
- s.add_dependency(%q<rspec-rails>, ["= 2.6.0"])
179
- s.add_dependency(%q<jeweler>, [">= 0"])
180
- s.add_dependency(%q<diff-lcs>, [">= 0"])
181
- s.add_dependency(%q<guard>, [">= 0"])
182
- s.add_dependency(%q<guard-rspec>, [">= 0"])
183
- s.add_dependency(%q<rb-fsevent>, [">= 0"])
184
- s.add_dependency(%q<growl>, [">= 0"])
185
- end
186
- end
187
-