vesr 0.0.0 → 0.1.0

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/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.0
1
+ 0.1.0
data/lib/vesr.rb CHANGED
@@ -1 +1 @@
1
- Dir.glob(File.join(File.dirname(__FILE__), '/prawn/*.rb')).sort.each { |lib| require lib }
1
+ Dir.glob(File.join(File.dirname(__FILE__), '/vesr/*.rb')).sort.each { |lib| require lib }
data/lib/vesr/prawn.rb ADDED
@@ -0,0 +1 @@
1
+ Dir.glob(File.join(File.dirname(__FILE__), '/prawn/*.rb')).sort.each { |f| require f }
@@ -1,8 +1,10 @@
1
+ require 'action_view/helpers/translation_helper'
2
+ require 'action_view/helpers'
3
+
1
4
  module Prawn
2
5
  module EsrRecipe
3
6
 
4
7
  include ActionView::Helpers::TranslationHelper
5
- include ApplicationHelper
6
8
 
7
9
  def esr_recipe(invoice, esr_account, sender)
8
10
  # VESR form
data/vesr.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{vesr}
8
- s.version = "0.0.0"
8
+ s.version = "0.1.0"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = [%q{Roman Simecek}]
@@ -24,8 +24,9 @@ Gem::Specification.new do |s|
24
24
  "README.rdoc",
25
25
  "Rakefile",
26
26
  "VERSION",
27
- "lib/prawn/esr_recipe.rb",
28
27
  "lib/vesr.rb",
28
+ "lib/vesr/prawn.rb",
29
+ "lib/vesr/prawn/esr_recipe.rb",
29
30
  "test/helper.rb",
30
31
  "test/test_vesr.rb",
31
32
  "vesr.gemspec"
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vesr
3
3
  version: !ruby/object:Gem::Version
4
- hash: 31
4
+ hash: 27
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
+ - 1
8
9
  - 0
9
- - 0
10
- version: 0.0.0
10
+ version: 0.1.0
11
11
  platform: ruby
12
12
  authors:
13
13
  - Roman Simecek
@@ -122,8 +122,9 @@ files:
122
122
  - README.rdoc
123
123
  - Rakefile
124
124
  - VERSION
125
- - lib/prawn/esr_recipe.rb
126
125
  - lib/vesr.rb
126
+ - lib/vesr/prawn.rb
127
+ - lib/vesr/prawn/esr_recipe.rb
127
128
  - test/helper.rb
128
129
  - test/test_vesr.rb
129
130
  - vesr.gemspec