better-pdfjs-rails 1.6.380 → 1.6.380.1

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9b089649a238139be57d18a8c19f67efe12584cc
4
- data.tar.gz: f6970b4651799ac42bfb8abbefb413bf87e3d7d1
3
+ metadata.gz: 06e600c6e472564cce704794f645b354cedb8756
4
+ data.tar.gz: fea447565c42089ad36f13e2a2a0d29c69398a8f
5
5
  SHA512:
6
- metadata.gz: a9a7c9987581dbc2e3006adccf2bd37df5ff5d04becbd693506df77316d6373a0aa31af1eedddb020e16f83d995d745b064615e884645c260b191cb040a9f78f
7
- data.tar.gz: f7a478a713c76eb070b64aa755fbb17aebdc14d771eee45155866c45256eb41b49bde52f5c8d362766c55ac8a851ded2805ef94e5e585c6ce26efb367e054757
6
+ metadata.gz: a784938d4a18d63688c18e6230cab39b60435db1144bc055855703399bd7192757008a319124102fded1981969c0aa067df50ff9774beba7ecd39b4ba7f30ef1
7
+ data.tar.gz: d8076295438959cae20d4d3b2bf51685f0abb294ac6f443ab922f21c00e921a2f2e0fec928515bef0427d70803960bac231a9a129f486e2d4c2b5703c7d5205b
data/Gemfile CHANGED
@@ -1,4 +1,4 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
- # Specify your gem's dependencies in pdfjs-rails.gemspec
3
+ # Specify your gem's dependencies in better-pdfjs-rails.gemspec
4
4
  gemspec
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
- # Pdfjs::Rails
1
+ # Better::Pdfjs::Rails
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/pdfjs/rails`. To experiment with that code, run `bin/console` for an interactive prompt.
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/better/pdfjs/rails`. To experiment with that code, run `bin/console` for an interactive prompt.
4
4
 
5
5
  TODO: Delete this and the text above, and describe your gem
6
6
 
@@ -9,7 +9,7 @@ TODO: Delete this and the text above, and describe your gem
9
9
  Add this line to your application's Gemfile:
10
10
 
11
11
  ```ruby
12
- gem 'pdfjs-rails'
12
+ gem 'better-pdfjs-rails'
13
13
  ```
14
14
 
15
15
  And then execute:
@@ -18,7 +18,7 @@ And then execute:
18
18
 
19
19
  Or install it yourself as:
20
20
 
21
- $ gem install pdfjs-rails
21
+ $ gem install better-pdfjs-rails
22
22
 
23
23
  ## Usage
24
24
 
@@ -32,7 +32,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
32
32
 
33
33
  ## Contributing
34
34
 
35
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/pdfjs-rails. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/better-pdfjs-rails. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
36
36
 
37
37
 
38
38
  ## License
@@ -1,11 +1,11 @@
1
1
  # coding: utf-8
2
2
  lib = File.expand_path('../lib', __FILE__)
3
3
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'pdfjs/rails/version'
4
+ require 'better/pdfjs/rails/version'
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "better-pdfjs-rails"
8
- spec.version = Pdfjs::Rails::VERSION
8
+ spec.version = Better::Pdfjs::Rails::VERSION
9
9
  spec.authors = ["Stephen Myers"]
10
10
  spec.email = ["scmyers11@gmail.com"]
11
11
 
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
3
  require "bundler/setup"
4
- require "pdfjs/rails"
4
+ require "better/pdfjs/rails"
5
5
 
6
6
  # You can add fixtures and/or initialization code here to make experimenting
7
7
  # with your gem easier. You can also use a different console, if you like.
@@ -0,0 +1,9 @@
1
+ require "better/pdfjs/rails/version"
2
+
3
+ module Better
4
+ module Pdfjs
5
+ module Rails
6
+ class Engine < ::Rails::Engine
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,7 @@
1
+ module Better
2
+ module Pdfjs
3
+ module Rails
4
+ VERSION = "1.6.380.1"
5
+ end
6
+ end
7
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: better-pdfjs-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.380
4
+ version: 1.6.380.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stephen Myers
@@ -69,8 +69,8 @@ files:
69
69
  - better-pdfjs-rails.gemspec
70
70
  - bin/console
71
71
  - bin/setup
72
- - lib/pdfjs/rails.rb
73
- - lib/pdfjs/rails/version.rb
72
+ - lib/better/pdfjs/rails.rb
73
+ - lib/better/pdfjs/rails/version.rb
74
74
  - vendor/assets/javascripts/generic/LICENSE
75
75
  - vendor/assets/javascripts/generic/build/pdf.js
76
76
  - vendor/assets/javascripts/generic/build/pdf.worker.js
@@ -1,8 +0,0 @@
1
- require "pdfjs/rails/version"
2
-
3
- module Pdfjs
4
- module Rails
5
- class Engine < ::Rails::Engine
6
- end
7
- end
8
- end
@@ -1,5 +0,0 @@
1
- module Pdfjs
2
- module Rails
3
- VERSION = "1.6.380"
4
- end
5
- end