urb 0.1.2 → 0.1.3
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 +8 -8
- data/CHANGELOG.rdoc +5 -1
- data/VERSION +1 -1
- data/app/assets/javascripts/{urb.js.erb → urb/urb.js.erb} +0 -0
- data/lib/urb/engine.rb +5 -1
- data/lib/urb/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
ODhlY2UyZjIxNzQ3MzQ3M2JhMjBmOWVmZTUxMTAyNmIxNDJkOWQ1Mg==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
YTg4ODA1YmRlNzFhMDJlMzIwZWRhMzgwYzc1YTY4OWZjYWJkOGJiYg==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
OWRiOWY0MTY3NzEyMjQ1MzlhYWEyMGVhOTEyNmE0ODdiZTE2OTRhZjk4MDYz
|
10
|
+
YTJjZDE1MzQyNWM1OTRiNmI3NzUxZWU3MTI2ODMxYmMzNzhjMGYwYjVmMzdk
|
11
|
+
YjExN2YwZjMxNGRjYjBkY2VjODQzMGJiYmEyMjNkZDczYWY4ZDA=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
NWI4YTU5NmY3NDcwMWEzYjdjZWZjM2I1ZDBiODExYWZmOTA1YmI4NTljYjBl
|
14
|
+
ZjBiMzIyNDY3NTY0MjFjYTZhMDQ5NzY2MDcyYzJjNDRiNTc0MzU4MjFiNDg0
|
15
|
+
Mjk0NzQ3N2NiZTIxN2ZlNTZjYzM1OGQ5ZmYyZDJhMjhmNzg4ZmQ=
|
data/CHANGELOG.rdoc
CHANGED
@@ -1,5 +1,9 @@
|
|
1
1
|
= URB CHANGELOG
|
2
2
|
|
3
|
+
== Version 0.1.3 (September 30, 2014)
|
4
|
+
|
5
|
+
* Added urb.js to assets pipeline using the initializer
|
6
|
+
|
3
7
|
== Version 0.1.2 (July 8, 2014)
|
4
8
|
|
5
9
|
* Using target ‘_self’ when not having passed a target
|
@@ -10,4 +14,4 @@
|
|
10
14
|
|
11
15
|
== Version 0.1.0 (April 2, 2014)
|
12
16
|
|
13
|
-
* Initial release
|
17
|
+
* Initial release
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.3
|
File without changes
|
data/lib/urb/engine.rb
CHANGED
@@ -1,9 +1,13 @@
|
|
1
1
|
module URB
|
2
2
|
class Engine < Rails::Engine
|
3
3
|
|
4
|
+
initializer :assets do |config|
|
5
|
+
Rails.application.config.assets.precompile += %w(urb/urb.js)
|
6
|
+
end
|
7
|
+
|
4
8
|
initializer "urb.add_middleware" do |app|
|
5
9
|
app.middleware.insert 0, URB::Middleware
|
6
10
|
end
|
7
11
|
|
8
12
|
end
|
9
|
-
end
|
13
|
+
end
|
data/lib/urb/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: urb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Paul Engel
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-09-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: moneta
|
@@ -67,7 +67,7 @@ files:
|
|
67
67
|
- README.rdoc
|
68
68
|
- Rakefile
|
69
69
|
- VERSION
|
70
|
-
- app/assets/javascripts/urb.js.erb
|
70
|
+
- app/assets/javascripts/urb/urb.js.erb
|
71
71
|
- app/helpers/urb_helper.rb
|
72
72
|
- app/views/urb/_include.html.erb
|
73
73
|
- demo/Gemfile
|