half-pipe 0.3.0.alpha.4 → 0.3.0.alpha.5

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: 7b05d9cfb999139a4627058fe3a0700f781b57ec
4
- data.tar.gz: 9799f099a4508ea827cb5b94fed4b95b1c9ccfc9
3
+ metadata.gz: fb2f468ae5d7d207b7e220953e6b686d835209c8
4
+ data.tar.gz: 39f739e66b56448298862973ebcaa23a897c3530
5
5
  SHA512:
6
- metadata.gz: 1b00d9e5c19756b84b9aaf91c7508abf7e890567b1e552caafaae8306335500a1ff7621ef97ecd7b0e580272e84915a1c00cfcc09d16200a23a58e2d124077f7
7
- data.tar.gz: e7b0575b0f42b2879a865c2484f5c3edd05ce69c351d74019ed9e9e29e1166ea19f2d05736cabb38e50b44be8dc6ad132ab7e53cc055b4f1869791327f2539ef
6
+ metadata.gz: 9c5dab41e77331a4b571db4cc34e2cb1b5d8b61450ec335a0d694d71e3fd31139ec0c0fd7ffd00e11d176bcb5ad98a3770bb59fa31810a64d4d57b00d4ac2aea
7
+ data.tar.gz: 2620b8750ef10747bf25de8ad133a6aec9d9214d578914f8c9d1cc3d4f4426fcf40781df4654d5e59e5499eebd5c00b6a81f3fbdbc410b4e58bc90d7e8c6ce39
data/README.md CHANGED
@@ -18,6 +18,8 @@ This initial release assumes you have been using [Grunt.js](http://www.gruntjs.c
18
18
  gem 'half-pipe', '~>0.3.0.alpha'
19
19
  ```
20
20
 
21
+ The alpha uses `javascript_include_tag` instead of `requirejs_include_tag` as described in the [Rails Generator](#rails-generator) section below.
22
+
21
23
  in your Gemfile.
22
24
 
23
25
  ## Looking for Contributors
@@ -28,7 +28,7 @@ module HalfPipe
28
28
  end
29
29
 
30
30
  def insert_includes_into_layout
31
- insert_into_file "app/views/layouts/application.html.erb", %Q{ <%= requirejs_include_tag "/assets/scripts/application.js" %>\n }, before: "</body>"
31
+ insert_into_file "app/views/layouts/application.html.erb", %Q{ <%= javascript_include_tag "/assets/scripts/application.js" %>\n }, before: "</body>"
32
32
  insert_into_file "app/views/layouts/application.html.erb", %Q{ <%= stylesheet_link_tag "/assets/styles/main" %>\n }, before: "</head>"
33
33
  end
34
34
 
@@ -5,7 +5,7 @@ requirejs.config({
5
5
  shim: {
6
6
  },
7
7
  paths: {
8
- '<%= main_module_name %>': 'main'
8
+ '<%= main_module_name %>': 'main',
9
9
  'jquery': '../../../../../bower_components/jquery/jquery',
10
10
 
11
11
  'jquery-ujs': '../../../../../bower_components/jquery-ujs/src/rails'
@@ -1,6 +1,6 @@
1
1
  module.exports = {
2
2
  debug: {
3
- files: ['app/scripts/**/*', 'app/styles/**/*'],
3
+ files: ['app/scripts/**/*', 'app/styles/**/*', 'config/build.js'],
4
4
  tasks: ['build:debug']
5
5
  },
6
6
  rails: {
@@ -1,5 +1,5 @@
1
1
  module Half
2
2
  module Pipe
3
- VERSION = "0.3.0.alpha.4"
3
+ VERSION = "0.3.0.alpha.5"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: half-pipe
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0.alpha.4
4
+ version: 0.3.0.alpha.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joe Fiorini
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-10-03 00:00:00.000000000 Z
11
+ date: 2013-10-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sass