garails 0.1.3 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- garails (0.1.3)
4
+ garails (0.1.4)
5
5
  gabbara (~> 0.0.5)
6
6
 
7
7
  GEM
@@ -1,7 +1,7 @@
1
1
  module Garails::MobileHelper
2
2
 
3
3
  def utm_tag
4
- image_tag utm_path, :alt => "", :size => "1x1"
4
+ tag "img", :src => utm_path, :alt => "", :width => "1", :height => "1"
5
5
  end
6
6
 
7
7
  def utm_path
@@ -1,3 +1,4 @@
1
+
1
2
  module Garails
2
3
  class Engine < ::Rails::Engine
3
4
  initializer 'garails.view.helper' do |app|
@@ -1,3 +1,3 @@
1
1
  module Garails
2
- VERSION = '0.1.3'
2
+ VERSION = '0.1.4'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: garails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,12 +9,11 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2011-10-13 00:00:00.000000000 +09:00
13
- default_executable:
12
+ date: 2011-11-14 00:00:00.000000000 Z
14
13
  dependencies:
15
14
  - !ruby/object:Gem::Dependency
16
15
  name: gabbara
17
- requirement: &18279520 !ruby/object:Gem::Requirement
16
+ requirement: &2152552940 !ruby/object:Gem::Requirement
18
17
  none: false
19
18
  requirements:
20
19
  - - ~>
@@ -22,7 +21,7 @@ dependencies:
22
21
  version: 0.0.5
23
22
  type: :runtime
24
23
  prerelease: false
25
- version_requirements: *18279520
24
+ version_requirements: *2152552940
26
25
  description: Google Analytics for Rails
27
26
  email: michael@mobalean.com
28
27
  executables: []
@@ -71,7 +70,6 @@ files:
71
70
  - test/test_app/public/favicon.ico
72
71
  - test/test_app/script/rails
73
72
  - test/test_helper.rb
74
- has_rdoc: true
75
73
  homepage: http://github.com/mreinsch/garails
76
74
  licenses: []
77
75
  post_install_message:
@@ -92,8 +90,33 @@ required_rubygems_version: !ruby/object:Gem::Requirement
92
90
  version: '0'
93
91
  requirements: []
94
92
  rubyforge_project:
95
- rubygems_version: 1.6.2
93
+ rubygems_version: 1.8.10
96
94
  signing_key:
97
95
  specification_version: 3
98
96
  summary: Google Analytics for Rails
99
- test_files: []
97
+ test_files:
98
+ - test/controllers/google_analytics_controller_test.rb
99
+ - test/test_app/.gitignore
100
+ - test/test_app/app/controllers/application_controller.rb
101
+ - test/test_app/app/helpers/application_helper.rb
102
+ - test/test_app/app/views/layouts/application.html.erb
103
+ - test/test_app/config.ru
104
+ - test/test_app/config/application.rb
105
+ - test/test_app/config/boot.rb
106
+ - test/test_app/config/database.yml
107
+ - test/test_app/config/environment.rb
108
+ - test/test_app/config/environments/test.rb
109
+ - test/test_app/config/initializers/backtrace_silencers.rb
110
+ - test/test_app/config/initializers/garails.rb
111
+ - test/test_app/config/initializers/inflections.rb
112
+ - test/test_app/config/initializers/mime_types.rb
113
+ - test/test_app/config/initializers/secret_token.rb
114
+ - test/test_app/config/initializers/session_store.rb
115
+ - test/test_app/config/routes.rb
116
+ - test/test_app/db/seeds.rb
117
+ - test/test_app/public/404.html
118
+ - test/test_app/public/422.html
119
+ - test/test_app/public/500.html
120
+ - test/test_app/public/favicon.ico
121
+ - test/test_app/script/rails
122
+ - test/test_helper.rb