BBenezech-papermill 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/papermill.gemspec +2 -3
- data/rails/init.rb +5 -2
- metadata +4 -4
- data/lib/papermill.rb +0 -4
- /data/config/{locale → locales}/papermill.yml +0 -0
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.2
|
data/papermill.gemspec
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{papermill}
|
8
|
-
s.version = "0.1.
|
8
|
+
s.version = "0.1.2"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Benoit B\303\251n\303\251zech"]
|
@@ -25,7 +25,7 @@ Gem::Specification.new do |s|
|
|
25
25
|
"app/views/papermill/_asset.html.erb",
|
26
26
|
"app/views/papermill/_raw_asset.html.erb",
|
27
27
|
"app/views/papermill/_thumbnail_asset.html.erb",
|
28
|
-
"config/
|
28
|
+
"config/locales/papermill.yml",
|
29
29
|
"config/routes.rb",
|
30
30
|
"generators/papermill/USAGE",
|
31
31
|
"generators/papermill/papermill_generator.rb",
|
@@ -33,7 +33,6 @@ Gem::Specification.new do |s|
|
|
33
33
|
"init.rb",
|
34
34
|
"install.rb",
|
35
35
|
"lib/core_extensions.rb",
|
36
|
-
"lib/papermill.rb",
|
37
36
|
"lib/papermill/form_builder.rb",
|
38
37
|
"lib/papermill/papermill_asset.rb",
|
39
38
|
"lib/papermill/papermill_helper.rb",
|
data/rails/init.rb
CHANGED
@@ -3,8 +3,11 @@ Object.send :include, ObjectExtensions
|
|
3
3
|
Hash.send :include, HashExtensions
|
4
4
|
String.send :include, StringExtensions
|
5
5
|
|
6
|
-
I18n.load_path = [File.join(File.dirname(__FILE__),
|
6
|
+
I18n.load_path = [File.join(File.dirname(__FILE__), "../config/locales/papermill.yml")] + I18n.load_path
|
7
7
|
|
8
|
-
require 'papermill'
|
8
|
+
require 'papermill/papermill_module'
|
9
|
+
require 'papermill/papermill_asset'
|
10
|
+
require 'papermill/form_builder'
|
11
|
+
require 'papermill/papermill_helper'
|
9
12
|
ActionView::Base.send :include, PapermillHelper
|
10
13
|
ActiveRecord::Base.send :include, Papermill
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: BBenezech-papermill
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- "Benoit B\xC3\xA9n\xC3\xA9zech"
|
@@ -31,7 +31,7 @@ files:
|
|
31
31
|
- app/views/papermill/_asset.html.erb
|
32
32
|
- app/views/papermill/_raw_asset.html.erb
|
33
33
|
- app/views/papermill/_thumbnail_asset.html.erb
|
34
|
-
- config/
|
34
|
+
- config/locales/papermill.yml
|
35
35
|
- config/routes.rb
|
36
36
|
- generators/papermill/USAGE
|
37
37
|
- generators/papermill/papermill_generator.rb
|
@@ -39,7 +39,6 @@ files:
|
|
39
39
|
- init.rb
|
40
40
|
- install.rb
|
41
41
|
- lib/core_extensions.rb
|
42
|
-
- lib/papermill.rb
|
43
42
|
- lib/papermill/form_builder.rb
|
44
43
|
- lib/papermill/papermill_asset.rb
|
45
44
|
- lib/papermill/papermill_helper.rb
|
@@ -63,6 +62,7 @@ files:
|
|
63
62
|
- uninstall.rb
|
64
63
|
has_rdoc: false
|
65
64
|
homepage: http://github.com/BBenezech/papermill
|
65
|
+
licenses:
|
66
66
|
post_install_message:
|
67
67
|
rdoc_options:
|
68
68
|
- --charset=UTF-8
|
@@ -83,7 +83,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
83
83
|
requirements: []
|
84
84
|
|
85
85
|
rubyforge_project:
|
86
|
-
rubygems_version: 1.
|
86
|
+
rubygems_version: 1.3.5
|
87
87
|
signing_key:
|
88
88
|
specification_version: 3
|
89
89
|
summary: Paperclip wrapper
|
data/lib/papermill.rb
DELETED
File without changes
|