dummy-application 1.0.0 → 1.1.0

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: d957182a40321aa91451a3ad6cc9b92b36b76577
4
- data.tar.gz: a90092d41bbfb49a5b784f5f5cc750c12b684c0e
3
+ metadata.gz: b04cc7ae4171155fa4b70b88dcfe9687148c73c3
4
+ data.tar.gz: 6b9a4a3edd975244fcc8cabe4ec31c16c4de11b7
5
5
  SHA512:
6
- metadata.gz: e43321cd4b614ccb06babc21c16f74da4a42bf207ac3879623b4dd5d7892a5d671466cf32f31a6087200fe51ed40cebd592ebc9f98eda99a69560689f4e21843
7
- data.tar.gz: d2a6864ece7b3e6da513df360986686c1ef260dedf8ce7e7f60a9e44a3d2a22641793c6683ad340e06771f5bf3651e9c7060ecc5e104d24a64234ba874f9fff8
6
+ metadata.gz: f2346302362d549af952416a92fda6fbeddfd8e03f6a322663c06b46184241892a91f9fdba62ebd0d2a40d4eb518559734862de88b0dbd01ce97a3d0f09deaff
7
+ data.tar.gz: ab0ebf097ef1db1203d191c8356d4831468744f5c3310a8159283561a8a49686efcce2b5e08d8593c3e7d6877b0db94ea10b129a4f46e6a0d3c81db247f8be7b
data/README.md CHANGED
@@ -15,6 +15,11 @@ Add this line to your spec helper:
15
15
  require 'dummy/application'
16
16
  ```
17
17
 
18
+ You can also optionally add this to your Rakefile to get all available Rails tasks
19
+ ```ruby
20
+ require 'dummy/application/tasks'
21
+ ```
22
+
18
23
  ## Usage
19
24
 
20
25
  Dummy Application provides all of the bootstrap code to have a rails
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = "dummy-application"
7
- spec.version = "1.0.0"
7
+ spec.version = "1.1.0"
8
8
  spec.authors = ["Adam Hunter"]
9
9
  spec.email = ["adamhunter@me.com"]
10
10
  spec.summary = %q[Provide a base Rails application for usage in testing rubygems]
@@ -0,0 +1,2 @@
1
+ require 'dummy/application'
2
+ Dummy::Application.load_tasks
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dummy-application
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adam Hunter
@@ -81,6 +81,7 @@ files:
81
81
  - Rakefile
82
82
  - dummy-application.gemspec
83
83
  - lib/dummy/application.rb
84
+ - lib/dummy/application/tasks.rb
84
85
  - spec/dummy/application_spec.rb
85
86
  - spec/spec_helper.rb
86
87
  homepage: https://github.com/adamhunter/dummy-application