ember-cli-rails 0.0.14 → 0.0.15
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +22 -16
- data/README.md +9 -5
- data/lib/ember-cli/app.rb +5 -3
- data/lib/ember-cli/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ef5615c19dbd1784b545f48b1de07d2cdb4b5dc5
|
4
|
+
data.tar.gz: 90979d9055f4f219a8fca07f8235b5407706e64b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5df93ef9a78f054f52f2920da162f94d2998d88743464cb9d411b6fff42e6176521aa8cfd92627d4bf8fb93fd73ef9affed8acb46f8717e9fadce8ee78e7a4eb
|
7
|
+
data.tar.gz: 36c52947b24d6312b4073acc3ba7116c48c4c69f3bc7883bda89c94bca1411f3e02903cc4be2145437cf186a92211549c04bfc649232f20f3a477a0c8b15ab4f
|
data/CHANGELOG.md
CHANGED
@@ -1,7 +1,13 @@
|
|
1
|
+
0.0.15
|
2
|
+
------
|
3
|
+
|
4
|
+
* Fix NameError when addon version doesn't match. [#47](https://github.com/rwz/ember-cli-rails/pull/47)
|
5
|
+
* Fix race condition in symlink creation when run multiple workers (again). [#22](https://github.com/rwz/ember-cli-rails/pull/22)
|
6
|
+
|
1
7
|
0.0.14
|
2
8
|
------
|
3
9
|
|
4
|
-
* Do not include jQuery into vendor.js when jquery-rails is available [#32](https://github.com/rwz/ember-cli-rails/issues/32)
|
10
|
+
* Do not include jQuery into vendor.js when jquery-rails is available. [#32](https://github.com/rwz/ember-cli-rails/issues/32)
|
5
11
|
|
6
12
|
0.0.13
|
7
13
|
------
|
@@ -11,58 +17,58 @@
|
|
11
17
|
0.0.12
|
12
18
|
------
|
13
19
|
|
14
|
-
* Make sure ember-cli-dependency-checker is present [#35](https://github.com/rwz/ember-cli-rails/issues/35)
|
20
|
+
* Make sure ember-cli-dependency-checker is present. [#35](https://github.com/rwz/ember-cli-rails/issues/35)
|
15
21
|
|
16
22
|
0.0.11
|
17
23
|
------
|
18
24
|
|
19
|
-
* Fix locking feature by bumping addon version to 0.0.5 [#31](https://github.com/rwz/ember-cli-rails/issues/31)
|
25
|
+
* Fix locking feature by bumping addon version to 0.0.5. [#31](https://github.com/rwz/ember-cli-rails/issues/31)
|
20
26
|
|
21
27
|
0.0.10
|
22
28
|
------
|
23
29
|
|
24
|
-
* Add locking feature to prevent stale code [#25](https://github.com/rwz/ember-cli-rails/pull/25)
|
30
|
+
* Add locking feature to prevent stale code. [#25](https://github.com/rwz/ember-cli-rails/pull/25)
|
25
31
|
|
26
32
|
0.0.9
|
27
33
|
-----
|
28
34
|
|
29
|
-
* Fix a bug when path provided as a string, not pathname [#24](https://github.com/rwz/ember-cli-rails/issues/24)
|
35
|
+
* Fix a bug when path provided as a string, not pathname. [#24](https://github.com/rwz/ember-cli-rails/issues/24)
|
30
36
|
|
31
37
|
0.0.8
|
32
38
|
-----
|
33
39
|
|
34
|
-
* Add support for including Ember stylesheet link tags [#21](https://github.com/rwz/ember-cli-rails/pull/21)
|
35
|
-
* Fix an error when the symlink already exists [#22](https://github.com/rwz/ember-cli-rails/pull/22)
|
40
|
+
* Add support for including Ember stylesheet link tags. [#21](https://github.com/rwz/ember-cli-rails/pull/21)
|
41
|
+
* Fix an error when the symlink already exists. [#22](https://github.com/rwz/ember-cli-rails/pull/22)
|
36
42
|
|
37
43
|
0.0.7
|
38
44
|
-----
|
39
45
|
|
40
|
-
* Add sprockets-rails to dependency list [commit](https://github.com/rwz/ember-cli-rails/commit/99a893030d6b754fe71363a396fd4515b93812b6)
|
41
|
-
* Add a flag to skip ember-cli integration [#17](https://github.com/rwz/ember-cli-rails/issues/17)
|
46
|
+
* Add sprockets-rails to dependency list. [commit](https://github.com/rwz/ember-cli-rails/commit/99a893030d6b754fe71363a396fd4515b93812b6)
|
47
|
+
* Add a flag to skip ember-cli integration. [#17](https://github.com/rwz/ember-cli-rails/issues/17)
|
42
48
|
|
43
49
|
0.0.6
|
44
50
|
-----
|
45
51
|
|
46
|
-
* Fix compiling assets in test environment [#15](https://github.com/rwz/ember-cli-rails/pull/15)
|
47
|
-
* Use only development/production Ember environments [#16](https://github.com/rwz/ember-cli-rails/pull/16)
|
48
|
-
* Make the gem compatible with ruby 1.9.3 [#20](https://github.com/rwz/ember-cli-rails/issues/20)
|
52
|
+
* Fix compiling assets in test environment. [#15](https://github.com/rwz/ember-cli-rails/pull/15)
|
53
|
+
* Use only development/production Ember environments. [#16](https://github.com/rwz/ember-cli-rails/pull/16)
|
54
|
+
* Make the gem compatible with ruby 1.9.3. [#20](https://github.com/rwz/ember-cli-rails/issues/20)
|
49
55
|
|
50
56
|
0.0.5
|
51
57
|
-----
|
52
58
|
|
53
|
-
* Fix generator [commit](https://github.com/rwz/ember-cli-rails/commit/c1bb10c6a2ec5b24d55fe69b6919fdd415fd1cdc)
|
59
|
+
* Fix generator. [commit](https://github.com/rwz/ember-cli-rails/commit/c1bb10c6a2ec5b24d55fe69b6919fdd415fd1cdc)
|
54
60
|
|
55
61
|
0.0.4
|
56
62
|
-----
|
57
63
|
|
58
|
-
* Add assets:precompile hook [#11](https://github.com/rwz/ember-cli-rails/issues/11)
|
64
|
+
* Add assets:precompile hook. [#11](https://github.com/rwz/ember-cli-rails/issues/11)
|
59
65
|
|
60
66
|
0.0.3
|
61
67
|
-----
|
62
68
|
|
63
|
-
* Make gem Ruby 2.0 compatible [#12](https://github.com/rwz/ember-cli-rails/issues/12)
|
69
|
+
* Make gem Ruby 2.0 compatible. [#12](https://github.com/rwz/ember-cli-rails/issues/12)
|
64
70
|
|
65
71
|
0.0.2
|
66
72
|
-----
|
67
73
|
|
68
|
-
* Do not assume ember-cli app name is equal to configured name [#5](https://github.com/rwz/ember-cli-rails/issues/5)
|
74
|
+
* Do not assume ember-cli app name is equal to configured name. [#5](https://github.com/rwz/ember-cli-rails/issues/5)
|
data/README.md
CHANGED
@@ -115,11 +115,15 @@ Your Ember application will now be served at the `/` route.
|
|
115
115
|
|
116
116
|
## Additional Information
|
117
117
|
|
118
|
-
EmberCLI Rails runs `ember build`
|
119
|
-
|
120
|
-
rebuild when an EmberCLI file is changed.
|
121
|
-
where the distribution files will be put.
|
122
|
-
to get it into your asset path without
|
118
|
+
When running in the development environment, EmberCLI Rails runs `ember build`
|
119
|
+
with the `--output-path` and `--watch` flags on. The `--watch` flag tells
|
120
|
+
EmberCLI to watch for file system events and rebuild when an EmberCLI file is changed.
|
121
|
+
The `--output-path` flag specifies where the distribution files will be put.
|
122
|
+
EmberCLI Rails does some fancy stuff to get it into your asset path without
|
123
|
+
polluting your git history. Note that for this to work, you must have
|
124
|
+
`config.consider_all_requests_local = true` set in
|
125
|
+
`config/environments/development.rb`, otherwise the middleware responsible for
|
126
|
+
building Ember CLI will not be enabled.
|
123
127
|
|
124
128
|
## Contributing
|
125
129
|
|
data/lib/ember-cli/app.rb
CHANGED
@@ -108,7 +108,7 @@ module EmberCLI
|
|
108
108
|
unless match_version?(version, EMBER_CLI_VERSION)
|
109
109
|
fail <<-MSG.strip_heredoc
|
110
110
|
EmberCLI Rails require ember-cli NPM package version to be
|
111
|
-
#{
|
111
|
+
#{EMBER_CLI_VERSION} to work properly. From within your EmberCLI directory
|
112
112
|
please update your package.json accordingly and run:
|
113
113
|
|
114
114
|
$ npm install
|
@@ -132,8 +132,10 @@ module EmberCLI
|
|
132
132
|
end
|
133
133
|
|
134
134
|
def symlink_to_assets_root
|
135
|
-
|
136
|
-
|
135
|
+
assets_path.join(name).make_symlink dist_path.join("assets")
|
136
|
+
rescue Errno::EEXIST
|
137
|
+
# Sometimes happens when starting multiple Unicorn workers.
|
138
|
+
# Ignoring...
|
137
139
|
end
|
138
140
|
|
139
141
|
def add_assets_to_precompile_list
|
data/lib/ember-cli/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ember-cli-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.15
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Pavel Pravosud
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2015-01-06 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: railties
|