ember-cli-rails-deploy-redis 0.1.0 → 0.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b5c7f3078429466c27bcc7f640adb22618d35ed1
4
- data.tar.gz: 7e4e2b8d539de1d7b1d28e225d35082859d3ca7b
3
+ metadata.gz: b5a141a64e646a47b411387dfbdf2eded6cacc64
4
+ data.tar.gz: 51f2a42b67a37b9269d681452e7f02a70f6ff6ba
5
5
  SHA512:
6
- metadata.gz: 8a26fe4f83931158dfdfe225543c5b21d836a25affb880a76df464afabaf22a4159ea0f9c32ef2aa3e71f16ab0221bd62829b1ca11d0393f9bb3c2abaa28005a
7
- data.tar.gz: 8a0e9cad0901ea1e63b31dc315e9d35fc7200148fd13ec2fa5da755bfc6b28ed60f17b276ca067fcc37c7eb51b172e6b1da7e8028399a7dabaceb62772deb573
6
+ metadata.gz: c6ba7b06d0488a25c9d107ea5d559cd5d97429383a8d7bdf95250e5581ce35896e778ab27039300549046e1195feed74291c6031800cb9dc9cf3d0bc3ce6921f
7
+ data.tar.gz: ddb403cd9b84d4c7e6002ae350f7f794ab1ca7d0f6ed8ca0c24265251bcc4916b8d4dc04cb14135ab236b92792910ea810d86655b56fa501d33bc54579ed28fe
@@ -1,6 +1,12 @@
1
1
  master
2
2
  ------
3
3
 
4
+ 0.1.1
5
+ -----
6
+
7
+ * Introduce `ember-cli-rails-deploy-redis` for the sake of requiring from the
8
+ `gem` invocation in the `Gemfile`.
9
+
4
10
  0.1.0
5
11
  -----
6
12
 
data/README.md CHANGED
@@ -21,9 +21,7 @@ assets from Rails.
21
21
  Add this line to your application's Gemfile:
22
22
 
23
23
  ```ruby
24
- group :production do
25
- gem "ember-cli-rails-deploy-redis"
26
- end
24
+ gem "ember-cli-rails-deploy-redis"
27
25
  ```
28
26
 
29
27
  And then execute:
@@ -37,9 +35,9 @@ $ bundle install
37
35
  First, [configure your application to integrate with
38
36
  `ember-cli-rails`][ember-cli-rails-setup].
39
37
 
40
- Then, to integrate with `ember-cli-deploy`'s ["Lightning Fast Deploys"][lightning]
41
- (using the Redis adapter) in `production`, instantiate configure EmberCLI-Rails
42
- to deploy with the `EmberCli::Deploy::Redis` strategy:
38
+ Then, to integrate with `ember-cli-deploy`'s "[Lightning Fast Deploys][lightning]"
39
+ (using the Redis adapter) in `production`, configure EmberCLI-Rails to deploy
40
+ with the `EmberCli::Deploy::Redis` strategy:
43
41
 
44
42
  [ember-cli-rails-setup]: https://github.com/thoughtbot/ember-cli-rails#setup
45
43
 
@@ -56,15 +54,19 @@ Finally, set `ENV["REDIS_URL"]` to the URL [ember-cli-deploy-redis references][r
56
54
  If you're deploying from Redis in `development` or `test`, disable
57
55
  EmberCLI-Rails' build step by setting `ENV["SKIP_EMBER"] = true`.
58
56
 
57
+ [lightning]: http://ember-cli.com/ember-cli-deploy/docs/v0.5.x/lightning-strategy-examples/
59
58
  [redis-config]: https://github.com/ember-cli-deploy/ember-cli-deploy-redis#configuration-options
60
59
 
61
60
  ## Deploy
62
61
 
63
62
  Deploy your application through [ember-cli-deploy-redis][deploy].
64
63
 
64
+ `ember-cli-rails` will render the `index.html` retrieved from Redis in the same
65
+ way it renders the `index.html` generated by `ember build`.
66
+
65
67
  [deploy]: https://github.com/ember-cli-deploy/ember-cli-deploy-redis#quick-start
66
68
 
67
- ## Use without `ember-cli-rails`
69
+ ### Without `ember-cli-rails`
68
70
 
69
71
  Although this gem was designed to integrate with `ember-cli-rails`, there isn't
70
72
  a direct dependency on it.
@@ -0,0 +1 @@
1
+ require "ember_cli/deploy/redis"
@@ -1,7 +1,7 @@
1
1
  module EmberCli
2
2
  module Deploy
3
3
  class Redis
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ember-cli-rails-deploy-redis
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sean Doyle
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2015-12-20 00:00:00.000000000 Z
11
+ date: 2016-01-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties
@@ -147,6 +147,7 @@ files:
147
147
  - bin/console
148
148
  - bin/setup
149
149
  - ember-cli-rails-deploy-redis.gemspec
150
+ - lib/ember-cli-rails-deploy-redis.rb
150
151
  - lib/ember_cli/deploy/redis.rb
151
152
  - lib/ember_cli/deploy/redis/version.rb
152
153
  homepage: https://github.com/seanpdoyle/ember-cli-rails-deploy-redis