warp_drive 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.
data/lib/tasks/compile.rake
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
namespace :warp_drive do
|
|
2
2
|
|
|
3
|
+
desc "Compiles your application into a Warp Drive!"
|
|
3
4
|
task :compile do
|
|
4
5
|
path = File.expand_path(File.join(File.dirname(__FILE__), '..', 'warp_drive', 'warp_drive_gem_generator'))
|
|
5
6
|
require path
|
|
@@ -13,6 +14,7 @@ namespace :warp_drive do
|
|
|
13
14
|
# mv File.join($genosaurus_output_directory, 'pkg'), File.join(pwd, 'pkg')
|
|
14
15
|
end
|
|
15
16
|
|
|
17
|
+
desc "Compiles and installs your application into a Warp Drive! (Most likely should be run with 'sudo')"
|
|
16
18
|
task :install => :compile do
|
|
17
19
|
Dir[File.join($genosaurus_output_directory, 'pkg', '*.gem')].each do |g|
|
|
18
20
|
sh "gem install #{g}"
|
|
File without changes
|
|
File without changes
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: warp_drive
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- markbates
|
|
@@ -33,7 +33,7 @@ dependencies:
|
|
|
33
33
|
version: "0"
|
|
34
34
|
version:
|
|
35
35
|
description: Screw Rails Engines! Why not install a Warp Drive! Completely bundle up an ENTIRE Rails application into a gem, then load it into another application! It's that easy!
|
|
36
|
-
email:
|
|
36
|
+
email: mark@markbates.com
|
|
37
37
|
executables:
|
|
38
38
|
- warpify
|
|
39
39
|
- install_warp_drive
|
|
@@ -56,13 +56,15 @@ files:
|
|
|
56
56
|
- lib/warp_drive/templates/lib/%=app%/boot.rb.template
|
|
57
57
|
- lib/warp_drive/templates/lib/%=app%/tasks.rb.template
|
|
58
58
|
- lib/warp_drive/templates/lib/%=app%.rb.template
|
|
59
|
+
- lib/warp_drive/templates/LICENSE.template
|
|
59
60
|
- lib/warp_drive/templates/Rakefile.template
|
|
61
|
+
- lib/warp_drive/templates/README.template
|
|
60
62
|
- lib/warp_drive/warp_drive_gem_generator.rb
|
|
61
63
|
- lib/warp_drive.rb
|
|
62
64
|
- README
|
|
63
65
|
- LICENSE
|
|
64
66
|
has_rdoc: true
|
|
65
|
-
homepage:
|
|
67
|
+
homepage: http://www.metabates.com
|
|
66
68
|
licenses: []
|
|
67
69
|
|
|
68
70
|
post_install_message:
|