prop_up 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 +4 -4
- data/README.md +2 -221
- data/lib/prop/app_builder.rb +45 -28
- data/lib/prop/generators/app_generator.rb +40 -1
- data/lib/prop/version.rb +1 -1
- data/prop.gemspec +1 -0
- data/templates/Gemfile_clean +3 -0
- data/templates/application.js +9 -0
- data/templates/backbone.js +1586 -0
- data/templates/leaflet_map.js +50 -0
- data/templates/modernizr.js +834 -0
- data/templates/places.coffee +6 -0
- data/templates/prop_layout.html.erb.erb +20 -6
- data/templates/underscore.js +1282 -0
- metadata +22 -2
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: prop_up
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nathaniel Wroblewski
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-
|
11
|
+
date: 2013-10-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -38,6 +38,20 @@ dependencies:
|
|
38
38
|
- - '='
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: 4.0.0
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: hub
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - '>='
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - '>='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
41
55
|
description: |
|
42
56
|
Prop is a base Rails project that you can upgrade.
|
43
57
|
It is used to get a jump start on a working app.
|
@@ -69,6 +83,8 @@ files:
|
|
69
83
|
- templates/_flashes.html.erb
|
70
84
|
- templates/_javascript.html.erb
|
71
85
|
- templates/application.css.scss
|
86
|
+
- templates/application.js
|
87
|
+
- templates/backbone.js
|
72
88
|
- templates/background_jobs_rspec.rb
|
73
89
|
- templates/bin_setup
|
74
90
|
- templates/config_locales_en.yml
|
@@ -79,6 +95,9 @@ files:
|
|
79
95
|
- templates/factories_spec_rake_task.rb
|
80
96
|
- templates/factory_girl_syntax_rspec.rb
|
81
97
|
- templates/javascripts/prefilled_input.js
|
98
|
+
- templates/leaflet_map.js
|
99
|
+
- templates/modernizr.js
|
100
|
+
- templates/places.coffee
|
82
101
|
- templates/postgresql_database.yml.erb
|
83
102
|
- templates/prop_gitignore
|
84
103
|
- templates/prop_layout.html.erb.erb
|
@@ -86,6 +105,7 @@ files:
|
|
86
105
|
- templates/sample.env
|
87
106
|
- templates/smtp.rb
|
88
107
|
- templates/spec_helper.rb
|
108
|
+
- templates/underscore.js
|
89
109
|
- templates/unicorn.rb
|
90
110
|
homepage: https://github.com/NathanielWroblewski/prop
|
91
111
|
licenses:
|