rapp 0.2.4 → 0.3.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8fd3947879f77440583a3a0d23e76de06b64bbf9
|
4
|
+
data.tar.gz: 330a5db6d0f773becc01ecfe1b77d328cdd0d57d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 86b818ae794fd6a43e775ca1c5c38f68006a057f1a90446beadcdf94ae30410f923b27339fbdfcb4619aa59d3933de847f27ac3db2e7264232860af59c83d5e0
|
7
|
+
data.tar.gz: cc35c292cc0ebc54a18d5bdfaa6cac8c306bb21d8270d4853211f26708c8023e3bd9394dbf761bffe9a562faebc0065e514d3a7f406cb64b7254eaab4cef634d
|
@@ -32,10 +32,9 @@ module <%= class_name %>Base
|
|
32
32
|
|
33
33
|
# Set up additional load paths
|
34
34
|
|
35
|
-
|
36
|
-
|
37
|
-
$:.unshift File.
|
38
|
-
$:.unshift File.dirname("./app")
|
35
|
+
# I'm not sure if we need "app" in the load path
|
36
|
+
# Everything there should be auto-loaded, but you never know...
|
37
|
+
$:.unshift File.expand_path("./app")
|
39
38
|
|
40
39
|
# Load the right environment initializer
|
41
40
|
|
File without changes
|
data/lib/rapp/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rapp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- StabbyCutyou
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-02-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -73,11 +73,11 @@ files:
|
|
73
73
|
- lib/rapp/templates/Gemfile.erb
|
74
74
|
- lib/rapp/templates/Rakefile.erb
|
75
75
|
- lib/rapp/templates/app_name.rb.erb
|
76
|
-
- lib/rapp/templates/app_name_base.rb.erb
|
77
76
|
- lib/rapp/templates/config/environments/development.rb.erb
|
78
77
|
- lib/rapp/templates/config/environments/production.rb.erb
|
79
78
|
- lib/rapp/templates/config/environments/test.rb.erb
|
80
|
-
- lib/rapp/templates/
|
79
|
+
- lib/rapp/templates/lib/app_name_base.rb.erb
|
80
|
+
- lib/rapp/templates/lib/env.rb.erb
|
81
81
|
- lib/rapp/templates/lib/tasks/console.rake.erb
|
82
82
|
- lib/rapp/templates/lib/tasks/environment.rake.erb
|
83
83
|
- lib/rapp/templates/spec/app_name_base/env_spec.rb.erb
|
@@ -110,3 +110,4 @@ signing_key:
|
|
110
110
|
specification_version: 4
|
111
111
|
summary: rapp - A gem for building Ruby Apps
|
112
112
|
test_files: []
|
113
|
+
has_rdoc:
|