iced-rails 0.0.2 → 0.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 02e3588eba440c947ff7231add5cbbf03a9bfcc2
4
+ data.tar.gz: 1a880ad17e0ecb3a732d97cc151d17244bdf3bf1
5
+ SHA512:
6
+ metadata.gz: 122ba75c3b3c9280aaef15bc7b9dd14ca9011cbbfbbf9648c135d14293d741e25e5317c68bf695ee984609116a5e6b6f414f8ecf11da69f8e27e1f44e4987c93
7
+ data.tar.gz: 967c0b6eac8d075013ee2c0589a97c0b16ceb2a17bd9c9e85272b1a172844369575d534ca9fea6bc6b54e0d964e151bc640cfd2b37bbe4bbf0de4f0c45c30f79
data/README.md CHANGED
@@ -6,7 +6,7 @@ Add support for `.iced` files in the Rails Asset Pipeline
6
6
 
7
7
  Add this line to your application's Gemfile:
8
8
 
9
- gem 'iced_asset_pipeline'
9
+ gem 'iced-rails'
10
10
 
11
11
  And then execute:
12
12
 
@@ -14,7 +14,7 @@ And then execute:
14
14
 
15
15
  Or install it yourself as:
16
16
 
17
- $ gem install iced_asset_pipeline
17
+ $ gem install iced-rails
18
18
 
19
19
  ## Usage
20
20
 
@@ -24,6 +24,11 @@ Make sure to name to file `application.iced` and not `application.js.iced`.
24
24
 
25
25
  See [IcedCoffeeScript][1] for an explanation about iced coffeescript.
26
26
 
27
+ ## TODO
28
+
29
+ Iced Deferrals are currently generated inline. If you have multiple .iced files, the deferrals will be generated multiple times, increasing the size of your JS a little.
30
+ Ideally, the first evaluation should generate Iced Deferrals for the `:window` runtime, and `:none` for all following calls.
31
+
27
32
  ## Contributing
28
33
 
29
34
  1. Fork it
data/iced-rails.gemspec CHANGED
@@ -17,5 +17,5 @@ Gem::Specification.new do |gem|
17
17
  gem.require_paths = ["lib"]
18
18
 
19
19
  gem.add_runtime_dependency 'iced-coffee-script'
20
- gem.add_runtime_dependency 'rails', '~> 3.2.11'
20
+ gem.add_runtime_dependency 'rails', '>= 3.2', '< 5.0'
21
21
  end
@@ -1,5 +1,5 @@
1
1
  module Iced
2
2
  module Rails
3
- VERSION = "0.0.2"
3
+ VERSION = "0.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,48 +1,49 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: iced-rails
3
3
  version: !ruby/object:Gem::Version
4
- prerelease:
5
- version: 0.0.2
4
+ version: '0.1'
6
5
  platform: ruby
7
6
  authors:
8
7
  - Raphael Randschau
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2013-01-20 00:00:00.000000000 Z
11
+ date: 2013-11-06 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
- version_requirements: !ruby/object:Gem::Requirement
14
+ name: iced-coffee-script
15
+ requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ! '>='
17
+ - - '>='
18
18
  - !ruby/object:Gem::Version
19
19
  version: '0'
20
- none: false
21
- name: iced-coffee-script
22
20
  type: :runtime
23
21
  prerelease: false
24
- requirement: !ruby/object:Gem::Requirement
22
+ version_requirements: !ruby/object:Gem::Requirement
25
23
  requirements:
26
- - - ! '>='
24
+ - - '>='
27
25
  - !ruby/object:Gem::Version
28
26
  version: '0'
29
- none: false
30
27
  - !ruby/object:Gem::Dependency
31
- version_requirements: !ruby/object:Gem::Requirement
28
+ name: rails
29
+ requirement: !ruby/object:Gem::Requirement
32
30
  requirements:
33
- - - ~>
31
+ - - '>='
34
32
  - !ruby/object:Gem::Version
35
- version: 3.2.11
36
- none: false
37
- name: rails
33
+ version: '3.2'
34
+ - - <
35
+ - !ruby/object:Gem::Version
36
+ version: '5.0'
38
37
  type: :runtime
39
38
  prerelease: false
40
- requirement: !ruby/object:Gem::Requirement
39
+ version_requirements: !ruby/object:Gem::Requirement
41
40
  requirements:
42
- - - ~>
41
+ - - '>='
42
+ - !ruby/object:Gem::Version
43
+ version: '3.2'
44
+ - - <
43
45
  - !ruby/object:Gem::Version
44
- version: 3.2.11
45
- none: false
46
+ version: '5.0'
46
47
  description: IcedCoffeeScript adapter for the Rails asset pipeline.
47
48
  email:
48
49
  - nicolai86@me.com
@@ -62,27 +63,25 @@ files:
62
63
  - lib/iced/rails/version.rb
63
64
  homepage: https://github.com/nicolai86/iced-rails
64
65
  licenses: []
66
+ metadata: {}
65
67
  post_install_message:
66
68
  rdoc_options: []
67
69
  require_paths:
68
70
  - lib
69
71
  required_ruby_version: !ruby/object:Gem::Requirement
70
72
  requirements:
71
- - - ! '>='
73
+ - - '>='
72
74
  - !ruby/object:Gem::Version
73
75
  version: '0'
74
- none: false
75
76
  required_rubygems_version: !ruby/object:Gem::Requirement
76
77
  requirements:
77
- - - ! '>='
78
+ - - '>='
78
79
  - !ruby/object:Gem::Version
79
80
  version: '0'
80
- none: false
81
81
  requirements: []
82
82
  rubyforge_project:
83
- rubygems_version: 1.8.23
83
+ rubygems_version: 2.0.3
84
84
  signing_key:
85
- specification_version: 3
85
+ specification_version: 4
86
86
  summary: IcedCoffeeScript adapter for the Rails asset pipeline.
87
87
  test_files: []
88
- has_rdoc: