dfp_helper 0.0.3 → 0.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. data/README.rdoc +1 -1
  2. data/lib/dfp_helper/version.rb +1 -1
  3. metadata +61 -61
data/README.rdoc CHANGED
@@ -28,7 +28,7 @@ Supports targeting options:
28
28
 
29
29
  === Slots in layout
30
30
 
31
- If you have ad slots in your layout, you will need to make the calls to 'dfp_helper_slot' before 'dfp_helper_head', capture the output and then display it in the layout after.
31
+ If you have ad slots in your layout, you will need to make the calls to 'dfp_helper_slot' before 'dfp_helper_head', capture the output and then display it in the layout after.
32
32
 
33
33
 
34
34
  == Licence
@@ -1,3 +1,3 @@
1
1
  module DfpHelper
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dfp_helper
3
3
  version: !ruby/object:Gem::Version
4
- hash: 25
4
+ hash: 23
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 3
10
- version: 0.0.3
9
+ - 4
10
+ version: 0.0.4
11
11
  platform: ruby
12
12
  authors:
13
13
  - Jason Ling
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-12-21 00:00:00 Z
18
+ date: 2012-02-27 00:00:00 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  prerelease: false
@@ -26,12 +26,12 @@ dependencies:
26
26
  requirements:
27
27
  - - ~>
28
28
  - !ruby/object:Gem::Version
29
- hash: 5
29
+ hash: 15
30
30
  segments:
31
31
  - 3
32
- - 1
33
- - 3
34
- version: 3.1.3
32
+ - 2
33
+ - 0
34
+ version: 3.2.0
35
35
  requirement: *id001
36
36
  - !ruby/object:Gem::Dependency
37
37
  prerelease: false
@@ -57,50 +57,50 @@ extensions: []
57
57
  extra_rdoc_files: []
58
58
 
59
59
  files:
60
- - lib/dfp_helper/version.rb
61
60
  - lib/dfp_helper.rb
62
61
  - lib/tasks/dfp_helper_tasks.rake
62
+ - lib/dfp_helper/version.rb
63
63
  - MIT-LICENSE
64
64
  - Rakefile
65
65
  - README.rdoc
66
66
  - test/test_helper.rb
67
67
  - test/dfp_helper_test.rb
68
- - test/dummy/config/environment.rb
68
+ - test/dummy/app/controllers/application_controller.rb
69
+ - test/dummy/app/controllers/info_controller.rb
70
+ - test/dummy/app/helpers/info_helper.rb
71
+ - test/dummy/app/helpers/application_helper.rb
72
+ - test/dummy/app/assets/stylesheets/application.css
73
+ - test/dummy/app/assets/stylesheets/info.css
74
+ - test/dummy/app/assets/javascripts/info.js
75
+ - test/dummy/app/assets/javascripts/application.js
76
+ - test/dummy/app/views/info/about.html.erb
77
+ - test/dummy/app/views/info/about_blank.html.erb
78
+ - test/dummy/app/views/layouts/application.html.erb
79
+ - test/dummy/Rakefile
80
+ - test/dummy/config.ru
81
+ - test/dummy/script/rails
69
82
  - test/dummy/config/application.rb
70
83
  - test/dummy/config/locales/en.yml
71
- - test/dummy/config/database.yml
72
- - test/dummy/config/routes.rb
73
84
  - test/dummy/config/initializers/wrap_parameters.rb
74
- - test/dummy/config/initializers/session_store.rb
75
- - test/dummy/config/initializers/inflections.rb
76
85
  - test/dummy/config/initializers/secret_token.rb
86
+ - test/dummy/config/initializers/inflections.rb
77
87
  - test/dummy/config/initializers/backtrace_silencers.rb
88
+ - test/dummy/config/initializers/session_store.rb
78
89
  - test/dummy/config/initializers/mime_types.rb
79
- - test/dummy/config/boot.rb
80
90
  - test/dummy/config/environments/development.rb
81
- - test/dummy/config/environments/test.rb
82
91
  - test/dummy/config/environments/production.rb
83
- - test/dummy/script/rails
84
- - test/dummy/Rakefile
85
- - test/dummy/db/test.sqlite3
86
- - test/dummy/config.ru
87
- - test/dummy/public/404.html
88
- - test/dummy/public/422.html
89
- - test/dummy/public/favicon.ico
90
- - test/dummy/public/500.html
92
+ - test/dummy/config/environments/test.rb
93
+ - test/dummy/config/routes.rb
94
+ - test/dummy/config/database.yml
95
+ - test/dummy/config/environment.rb
96
+ - test/dummy/config/boot.rb
91
97
  - test/dummy/test/unit/helpers/info_helper_test.rb
92
98
  - test/dummy/test/functional/info_controller_test.rb
93
- - test/dummy/app/helpers/info_helper.rb
94
- - test/dummy/app/helpers/application_helper.rb
95
- - test/dummy/app/views/info/about_blank.html.erb
96
- - test/dummy/app/views/info/about.html.erb
97
- - test/dummy/app/views/layouts/application.html.erb
98
- - test/dummy/app/assets/stylesheets/info.css
99
- - test/dummy/app/assets/stylesheets/application.css
100
- - test/dummy/app/assets/javascripts/info.js
101
- - test/dummy/app/assets/javascripts/application.js
102
- - test/dummy/app/controllers/application_controller.rb
103
- - test/dummy/app/controllers/info_controller.rb
99
+ - test/dummy/public/404.html
100
+ - test/dummy/public/500.html
101
+ - test/dummy/public/favicon.ico
102
+ - test/dummy/public/422.html
103
+ - test/dummy/db/test.sqlite3
104
104
  - test/dummy/log/development.log
105
105
  - test/dummy/log/test.log
106
106
  homepage: https://github.com/jlxw/dfp_helper
@@ -139,41 +139,41 @@ summary: Rails plugin to add DFP tags to your site.
139
139
  test_files:
140
140
  - test/test_helper.rb
141
141
  - test/dfp_helper_test.rb
142
- - test/dummy/config/environment.rb
142
+ - test/dummy/app/controllers/application_controller.rb
143
+ - test/dummy/app/controllers/info_controller.rb
144
+ - test/dummy/app/helpers/info_helper.rb
145
+ - test/dummy/app/helpers/application_helper.rb
146
+ - test/dummy/app/assets/stylesheets/application.css
147
+ - test/dummy/app/assets/stylesheets/info.css
148
+ - test/dummy/app/assets/javascripts/info.js
149
+ - test/dummy/app/assets/javascripts/application.js
150
+ - test/dummy/app/views/info/about.html.erb
151
+ - test/dummy/app/views/info/about_blank.html.erb
152
+ - test/dummy/app/views/layouts/application.html.erb
153
+ - test/dummy/Rakefile
154
+ - test/dummy/config.ru
155
+ - test/dummy/script/rails
143
156
  - test/dummy/config/application.rb
144
157
  - test/dummy/config/locales/en.yml
145
- - test/dummy/config/database.yml
146
- - test/dummy/config/routes.rb
147
158
  - test/dummy/config/initializers/wrap_parameters.rb
148
- - test/dummy/config/initializers/session_store.rb
149
- - test/dummy/config/initializers/inflections.rb
150
159
  - test/dummy/config/initializers/secret_token.rb
160
+ - test/dummy/config/initializers/inflections.rb
151
161
  - test/dummy/config/initializers/backtrace_silencers.rb
162
+ - test/dummy/config/initializers/session_store.rb
152
163
  - test/dummy/config/initializers/mime_types.rb
153
- - test/dummy/config/boot.rb
154
164
  - test/dummy/config/environments/development.rb
155
- - test/dummy/config/environments/test.rb
156
165
  - test/dummy/config/environments/production.rb
157
- - test/dummy/script/rails
158
- - test/dummy/Rakefile
159
- - test/dummy/db/test.sqlite3
160
- - test/dummy/config.ru
161
- - test/dummy/public/404.html
162
- - test/dummy/public/422.html
163
- - test/dummy/public/favicon.ico
164
- - test/dummy/public/500.html
166
+ - test/dummy/config/environments/test.rb
167
+ - test/dummy/config/routes.rb
168
+ - test/dummy/config/database.yml
169
+ - test/dummy/config/environment.rb
170
+ - test/dummy/config/boot.rb
165
171
  - test/dummy/test/unit/helpers/info_helper_test.rb
166
172
  - test/dummy/test/functional/info_controller_test.rb
167
- - test/dummy/app/helpers/info_helper.rb
168
- - test/dummy/app/helpers/application_helper.rb
169
- - test/dummy/app/views/info/about_blank.html.erb
170
- - test/dummy/app/views/info/about.html.erb
171
- - test/dummy/app/views/layouts/application.html.erb
172
- - test/dummy/app/assets/stylesheets/info.css
173
- - test/dummy/app/assets/stylesheets/application.css
174
- - test/dummy/app/assets/javascripts/info.js
175
- - test/dummy/app/assets/javascripts/application.js
176
- - test/dummy/app/controllers/application_controller.rb
177
- - test/dummy/app/controllers/info_controller.rb
173
+ - test/dummy/public/404.html
174
+ - test/dummy/public/500.html
175
+ - test/dummy/public/favicon.ico
176
+ - test/dummy/public/422.html
177
+ - test/dummy/db/test.sqlite3
178
178
  - test/dummy/log/development.log
179
179
  - test/dummy/log/test.log