engine_cart 0.0.1 → 0.0.2

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: 53ca8dc6ad525b5523ac64f7b13a65953953a81e
4
- data.tar.gz: a5016c8d803a0a5506c3356f13775e21f6c68e4b
3
+ metadata.gz: 1fd5cf56f5fd88e6c9c18b2fe3151450027a1492
4
+ data.tar.gz: 5956ec04b0713e1c2d7ca8de696efd823aca7e10
5
5
  SHA512:
6
- metadata.gz: 58e0d7f0820f4844e91fd5af391e5076f49a3f6523fdd70aebbc905dad8a1512cb3cf0f66e986217bf08c84cd97f0f25c9490e3d4d39fc079acf0223bd8420c0
7
- data.tar.gz: 07895b66ce6919e009c3a021a32dabd37d01f6222da1f92ebe16c3f6a8efeb54b2fbae8e47db46be5c2009f237fa6287edb9f62868d642b0d4d44010ffff5559
6
+ metadata.gz: 0c865ee31d20c689fdeb02f5222ead8797cf11942f3548e911985a08af6529c09ae9c3e18e410f6530a8a14aeca44416e3321f32c013c6f65035a27e53080742
7
+ data.tar.gz: b53c73fd101daaeb7d828765b11b11935c2175bb7d0394b389f1b69d96d66c214d176b754ead3de6f5a62ecaf41c576fadf0bd1761ba2eedf2346c15f469925c
data/README.md CHANGED
@@ -4,7 +4,7 @@ TODO: Write a gem description
4
4
 
5
5
  ## Installation
6
6
 
7
- Add this line to your application's Gemfile:
7
+ Add this line to your engines's Gemfile:
8
8
 
9
9
  gem 'engine_cart'
10
10
 
@@ -16,9 +16,29 @@ Or install it yourself as:
16
16
 
17
17
  $ gem install engine_cart
18
18
 
19
+
19
20
  ## Usage
20
21
 
21
- TODO: Write usage instructions here
22
+ Add this to your Rakefile:
23
+
24
+ # Path to the test app
25
+ # TEST_APP = 'spec/internal'
26
+ # Path to files to include in the test app
27
+ # TEST_APP_TEMPLATES = 'spec/test_app_templates'
28
+ require 'engine_cart/rake_task'
29
+
30
+ In your rake tasks, you can require the test app get build first:
31
+
32
+ task :ci => ['engine_cart:generate'] do
33
+ # run the tests
34
+ end
35
+
36
+
37
+ And in your e.g. spec_helper:
38
+
39
+ require 'engine_cart'
40
+ EngineCart.load_application!
41
+
22
42
 
23
43
  ## Contributing
24
44
 
@@ -1,3 +1,3 @@
1
1
  module EngineCart
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
File without changes
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: engine_cart
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Beer
@@ -51,10 +51,10 @@ files:
51
51
  - README.md
52
52
  - Rakefile
53
53
  - engine_cart.gemspec
54
+ - lib/engine_cart.rb
54
55
  - lib/engine_cart/rake_task.rb
55
56
  - lib/engine_cart/tasks/engine_cart.rake
56
57
  - lib/engine_cart/version.rb
57
- - lib/rails_engine_testing.rb
58
58
  homepage: https://github.com/cbeer/engine_cart
59
59
  licenses:
60
60
  - MIT