ymdp 0.0.12 → 0.0.13

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.
data/ymdp.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{ymdp}
8
- s.version = "0.0.12"
8
+ s.version = "0.0.13"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Jeff Coleman"]
@@ -44,9 +44,10 @@ Gem::Specification.new do |s|
44
44
  "lib/application_view/support/blank.rb",
45
45
  "lib/application_view/support/file.rb",
46
46
  "lib/application_view/support/form_post.rb",
47
- "lib/application_view/support/g.rb",
48
47
  "lib/application_view/support/w3c.rb",
49
48
  "lib/application_view/tag_helper.rb",
49
+ "lib/application_view/tasks/keys.rake",
50
+ "lib/application_view/tasks/ymdp.rake",
50
51
  "lib/application_view/translator/base.rb",
51
52
  "lib/new_application/.base",
52
53
  "lib/new_application/Gemfile",
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ymdp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.12
4
+ version: 0.0.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeff Coleman
@@ -147,9 +147,10 @@ files:
147
147
  - lib/application_view/support/blank.rb
148
148
  - lib/application_view/support/file.rb
149
149
  - lib/application_view/support/form_post.rb
150
- - lib/application_view/support/g.rb
151
150
  - lib/application_view/support/w3c.rb
152
151
  - lib/application_view/tag_helper.rb
152
+ - lib/application_view/tasks/keys.rake
153
+ - lib/application_view/tasks/ymdp.rake
153
154
  - lib/application_view/translator/base.rb
154
155
  - lib/new_application/.base
155
156
  - lib/new_application/Gemfile
@@ -1,11 +0,0 @@
1
- def growl(s)
2
- if CONFIG["growl"]
3
- g(s, :title => "YMDP")
4
- end
5
- rescue StandardError => e
6
- if e.message =~ /Connection refused/
7
- puts s
8
- else
9
- raise e
10
- end
11
- end