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 CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- YWRlY2NkMzNhNTYxMGU4Y2QwMWJkZDI5NTViYmQ2MmZkMTY3MTAwOA==
4
+ ODhlY2UyZjIxNzQ3MzQ3M2JhMjBmOWVmZTUxMTAyNmIxNDJkOWQ1Mg==
5
5
  data.tar.gz: !binary |-
6
- OGU5ZGM4NDNkZmI0YWQ0NjllY2MwNDQ1ZWQwMGU5NWUxZmE2ZWIyZg==
6
+ YTg4ODA1YmRlNzFhMDJlMzIwZWRhMzgwYzc1YTY4OWZjYWJkOGJiYg==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- NjE5NzhjNmY3OTU4OWNjMzY0N2JlNDAyYzA0Zjc4NzNlMzgxY2RiZGI5YmE0
10
- NDg4ZThhMDE3OTA0ZTgwODU1ZjA2MmM0ZjdiNDk3ZjI1YzY4MWEwM2JkN2Jm
11
- NjkwNjA5Y2Y3NTc5ZTcxZjMwNzZmYzkxY2I2YmVhOGIwNzA1Nzc=
9
+ OWRiOWY0MTY3NzEyMjQ1MzlhYWEyMGVhOTEyNmE0ODdiZTE2OTRhZjk4MDYz
10
+ YTJjZDE1MzQyNWM1OTRiNmI3NzUxZWU3MTI2ODMxYmMzNzhjMGYwYjVmMzdk
11
+ YjExN2YwZjMxNGRjYjBkY2VjODQzMGJiYmEyMjNkZDczYWY4ZDA=
12
12
  data.tar.gz: !binary |-
13
- MmU0NWVlMzk2OTUzYWFmMGZlMTVhZTdmODNhZWY2MDYwOWMwNmFmMDE2ZTUw
14
- MGQyZmY0YjMxNDMwNTcyNDEyMDExZjZmNjMwOGY5M2Q1MmI2YmJiNTgzZTA2
15
- NTdiOTFiMzlhODA4ZjliZTAyNWIwNGRkZDc4Y2UwODFmNTRmOGE=
13
+ NWI4YTU5NmY3NDcwMWEzYjdjZWZjM2I1ZDBiODExYWZmOTA1YmI4NTljYjBl
14
+ ZjBiMzIyNDY3NTY0MjFjYTZhMDQ5NzY2MDcyYzJjNDRiNTc0MzU4MjFiNDg0
15
+ Mjk0NzQ3N2NiZTIxN2ZlNTZjYzM1OGQ5ZmYyZDJhMjhmNzg4ZmQ=
@@ -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.2
1
+ 0.1.3
@@ -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
@@ -1,7 +1,7 @@
1
1
  module URB
2
2
  MAJOR = 0
3
3
  MINOR = 1
4
- TINY = 2
4
+ TINY = 3
5
5
 
6
6
  VERSION = [MAJOR, MINOR, TINY].join(".")
7
7
  end
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.2
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-07-08 00:00:00.000000000 Z
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