ember-cli-rails 0.12.2 → 0.12.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/LICENSE.txt +1 -0
- data/README.md +6 -17
- data/lib/ember_cli/route_helpers.rb +3 -3
- data/lib/ember_cli/version.rb +1 -1
- metadata +6 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '097b4299ffb3c7809ee87c5e84e5a053cde5872b1ca113369127c03f009e0482'
|
|
4
|
+
data.tar.gz: 29cd17391b62a9b5ab139d4ad88f13391524ae1bd5b834000b986c19a7c81faf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9b43b02eae5b58a6ac82893404952acca30f500f6570140f5f877857a606671f516ef750b9429c19babd14c45522e175188cf867f570c9565cb0ed56446a2257
|
|
7
|
+
data.tar.gz: 609df4876c70f9abbcf63b103e0ce11f68e873c9c9549eb6f505f859d141ac9e3e68150abb91a7a3944a49224bd5ad2e69943a67dc5ad705f8366ab03e964bcf
|
data/CHANGELOG.md
CHANGED
data/LICENSE.txt
CHANGED
data/README.md
CHANGED
|
@@ -301,7 +301,7 @@ Omitting these build assets can dramatically reduce slug size.
|
|
|
301
301
|
|
|
302
302
|
A build-pack solution for this is discussed in [Issue #491][#491].
|
|
303
303
|
|
|
304
|
-
[#491]: https://github.com/
|
|
304
|
+
[#491]: https://github.com/tricknotes/ember-cli-rails/issues/491
|
|
305
305
|
|
|
306
306
|
### Capistrano
|
|
307
307
|
|
|
@@ -606,7 +606,7 @@ EmberCLI runners to clobber each others' work][#94].
|
|
|
606
606
|
|
|
607
607
|
[Puma]: https://github.com/puma/puma
|
|
608
608
|
[Unicorn]: https://rubygems.org/gems/unicorn
|
|
609
|
-
[#94]: https://github.com/
|
|
609
|
+
[#94]: https://github.com/tricknotes/ember-cli-rails/issues/94#issuecomment-77627453
|
|
610
610
|
|
|
611
611
|
## `SKIP_EMBER`
|
|
612
612
|
|
|
@@ -673,7 +673,7 @@ See the [CONTRIBUTING] document.
|
|
|
673
673
|
Thank you, [contributors]!
|
|
674
674
|
|
|
675
675
|
[CONTRIBUTING]: CONTRIBUTING.md
|
|
676
|
-
[contributors]: https://github.com/
|
|
676
|
+
[contributors]: https://github.com/tricknotes/ember-cli-rails/graphs/contributors
|
|
677
677
|
|
|
678
678
|
## License
|
|
679
679
|
|
|
@@ -689,21 +689,10 @@ ember-cli-rails was originally created by
|
|
|
689
689
|
[Pavel Pravosud][rwz] and
|
|
690
690
|
[Jonathan Jackson][rondale-sc].
|
|
691
691
|
|
|
692
|
-
ember-cli-rails is maintained by [Sean Doyle][seanpdoyle]
|
|
693
|
-
Jackson][rondale-sc].
|
|
692
|
+
ember-cli-rails is maintained by [Sean Doyle][seanpdoyle], [Jonathan
|
|
693
|
+
Jackson][rondale-sc] and [Ryunosuke Sato][tricknotes].
|
|
694
694
|
|
|
695
695
|
[rwz]: https://github.com/rwz
|
|
696
696
|
[rondale-sc]: https://github.com/rondale-sc
|
|
697
697
|
[seanpdoyle]: https://github.com/seanpdoyle
|
|
698
|
-
|
|
699
|
-

|
|
700
|
-
|
|
701
|
-
ember-cli-rails is maintained and funded by thoughtbot, inc.
|
|
702
|
-
The names and logos for thoughtbot are trademarks of thoughtbot, inc.
|
|
703
|
-
|
|
704
|
-
We love open source software!
|
|
705
|
-
See [our other projects][community]
|
|
706
|
-
or [hire us][hire] to help build your product.
|
|
707
|
-
|
|
708
|
-
[community]: https://thoughtbot.com/community?utm_source=github
|
|
709
|
-
[hire]: https://thoughtbot.com/hire-us?utm_source=github
|
|
698
|
+
[tricknotes]: https://github.com/tricknotes
|
|
@@ -23,8 +23,8 @@ module ActionDispatch
|
|
|
23
23
|
}),
|
|
24
24
|
}
|
|
25
25
|
|
|
26
|
-
get(to, redirect_if_missing_trailing_slash)
|
|
27
|
-
get(File.join(to, "(*rest)"), routing_options)
|
|
26
|
+
get(to, **redirect_if_missing_trailing_slash)
|
|
27
|
+
get(File.join(to, "(*rest)"), **routing_options)
|
|
28
28
|
end
|
|
29
29
|
|
|
30
30
|
mount_ember_assets(app_name, to: to)
|
|
@@ -34,7 +34,7 @@ module ActionDispatch
|
|
|
34
34
|
app = ::EmberCli[app_name]
|
|
35
35
|
|
|
36
36
|
if app.mountable?
|
|
37
|
-
mount app.to_rack
|
|
37
|
+
mount app.to_rack, at: to
|
|
38
38
|
end
|
|
39
39
|
end
|
|
40
40
|
end
|
data/lib/ember_cli/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ember-cli-rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.12.
|
|
4
|
+
version: 0.12.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Pavel Pravosud
|
|
8
8
|
- Jonathan Jackson
|
|
9
9
|
- Sean Doyle
|
|
10
|
-
|
|
10
|
+
- Ryunosuke Sato
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date:
|
|
13
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: ember-cli-rails-assets
|
|
@@ -156,11 +156,11 @@ dependencies:
|
|
|
156
156
|
- - "~>"
|
|
157
157
|
- !ruby/object:Gem::Version
|
|
158
158
|
version: 0.6.0
|
|
159
|
-
description:
|
|
160
159
|
email:
|
|
161
160
|
- pavel@pravosud.com
|
|
162
161
|
- jonathan.jackson1@me.com
|
|
163
162
|
- sean.p.doyle24@gmail.com
|
|
163
|
+
- tricknotes.rs@gmail.com
|
|
164
164
|
executables: []
|
|
165
165
|
extensions: []
|
|
166
166
|
extra_rdoc_files: []
|
|
@@ -196,11 +196,10 @@ files:
|
|
|
196
196
|
- lib/generators/ember/init/init_generator.rb
|
|
197
197
|
- lib/generators/ember/init/templates/initializer.rb
|
|
198
198
|
- lib/tasks/ember-cli.rake
|
|
199
|
-
homepage: https://github.com/
|
|
199
|
+
homepage: https://github.com/tricknotes/ember-cli-rails
|
|
200
200
|
licenses:
|
|
201
201
|
- MIT
|
|
202
202
|
metadata: {}
|
|
203
|
-
post_install_message:
|
|
204
203
|
rdoc_options: []
|
|
205
204
|
require_paths:
|
|
206
205
|
- lib
|
|
@@ -215,8 +214,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
215
214
|
- !ruby/object:Gem::Version
|
|
216
215
|
version: '0'
|
|
217
216
|
requirements: []
|
|
218
|
-
rubygems_version:
|
|
219
|
-
signing_key:
|
|
217
|
+
rubygems_version: 4.0.6
|
|
220
218
|
specification_version: 4
|
|
221
219
|
summary: Integration between Ember CLI and Rails
|
|
222
220
|
test_files: []
|