plupload4rails 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 164b204a6f1512dc5c851874ae836806a8725bda
4
- data.tar.gz: 1aa99a98c731a3d1f90e7cb0a9684af420e1001a
3
+ metadata.gz: 748f0e864730027111cd9b01e5cb84fa469cf9d6
4
+ data.tar.gz: debb58567dae60dc5f192ba22a3ebb749d582aff
5
5
  SHA512:
6
- metadata.gz: a32d11c8ec854d440a221aff5190bd5982fdf4cf221cf6eb3d26e892acad26de285595b5de425ed85e2037aadb6fc408c75db3955d6015c221af2050ca90d3eb
7
- data.tar.gz: 954a9ff087408bc05920dab667c5d02d3cf054af1bff4c4247ff707707d82e7d44197cf87307fa75c5440a809a490faa8b2316c1d3ce19a1041aeb48ec3c8073
6
+ metadata.gz: 59ee6c7515687882d6efecc3b3a6c40098ff92065874d5fb011c1662f52c7b97128fe812f3b47f9da757b3d80ace23184879741f9de7f39ba71a0fb7bb0849b6
7
+ data.tar.gz: 2c056078785a72011dd2da19c3c5b887442535ab60f64f3e01c76df01727658893d37a618f2908de510bd6c4d74c853d6798d8c42c27fffb458131dd0831f842
data/Rakefile CHANGED
@@ -1 +1 @@
1
- require "bundler/gem_tasks"
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,5 @@
1
+ module Plupload4rails
2
+ class Engine < ::Rails::Engine
3
+ end
4
+ end
5
+
@@ -0,0 +1,4 @@
1
+ module Plupload4rails
2
+ PLUPLOAD_VERSION = "2.1.0"
3
+ VERSION = "1.0.1"
4
+ end
@@ -0,0 +1,2 @@
1
+ require "plupload4rails/engine"
2
+ require "plupload4rails/version"
@@ -1,15 +1,15 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
  $:.push File.expand_path("../lib", __FILE__)
3
- require "plupload/rails/version"
3
+ require "plupload4rails/version"
4
4
 
5
5
  Gem::Specification.new do |s|
6
6
  s.name = "plupload4rails"
7
- s.version = Plupload::Rails::VERSION
7
+ s.version = Plupload4rails::VERSION
8
8
  s.authors = ["chenyun"]
9
9
  s.email = ["cywinteen.qq@gmail.com"]
10
10
  s.homepage = "https://github.com/chenyun/plupload4rails"
11
- s.summary = %Q{Integration of Plupload #{Plupload::VERSION} with the Rails asset pipeline}
12
- s.description = %Q{This gem integrates Plupload #{Plupload::VERSION} with the Rails asset pipeline.}
11
+ s.summary = %Q{Integration of Plupload #{Plupload4rails::PLUPLOAD_VERSION} with the Rails asset pipeline}
12
+ s.description = %Q{This gem integrates Plupload #{Plupload4rails::PLUPLOAD_VERSION} with the Rails asset pipeline.}
13
13
  s.licenses = ["MIT", "GPL-2"]
14
14
 
15
15
  s.rubyforge_project = "plupload4rails"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: plupload4rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - chenyun
@@ -38,10 +38,9 @@ files:
38
38
  - README.md
39
39
  - Rakefile
40
40
  - app/assets/javascripts/plupload.settings.js.erb
41
- - lib/plupload-rails.rb
42
- - lib/plupload/rails.rb
43
- - lib/plupload/rails/engine.rb
44
- - lib/plupload/rails/version.rb
41
+ - lib/plupload4rails.rb
42
+ - lib/plupload4rails/engine.rb
43
+ - lib/plupload4rails/version.rb
45
44
  - plupload4rails.gemspec
46
45
  - vendor/assets/images/jquery.plupload.queue/backgrounds.gif
47
46
  - vendor/assets/images/jquery.plupload.queue/buttons-disabled.png
@@ -1,7 +0,0 @@
1
- module Plupload
2
- module Rails
3
- class Engine < ::Rails::Engine
4
- end
5
- end
6
- end
7
-
@@ -1,6 +0,0 @@
1
- module Plupload
2
- VERSION = "2.1.0"
3
- module Rails
4
- VERSION = "1.0.0"
5
- end
6
- end
@@ -1,3 +0,0 @@
1
- require 'plupload/rails/version'
2
- require 'plupload/rails/engine'
3
-
@@ -1,2 +0,0 @@
1
- require "plupload/rails"
2
-