thesis 0.0.4 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +23 -14
- data/lib/generators/thesis/install/install_generator.rb +18 -17
- data/lib/generators/thesis/install/templates/migrations/{create_page.rb → thesis_create_page.rb} +4 -1
- data/lib/generators/thesis/install/templates/migrations/{create_page_content.rb → thesis_create_page_content.rb} +4 -1
- data/lib/thesis/controllers/controller_helpers.rb +1 -25
- data/lib/thesis/controllers/thesis_controller.rb +50 -14
- data/lib/thesis/engine.rb +10 -1
- data/lib/thesis/models/page.rb +14 -6
- data/lib/thesis/models/page_content.rb +10 -8
- data/lib/thesis/version.rb +1 -1
- data/lib/thesis.rb +2 -4
- data/spec/lib/thesis/controllers/thesis_controller_spec.rb +79 -51
- data/spec/lib/thesis/models/page_content_spec.rb +14 -15
- data/spec/spec_helper.rb +15 -3
- metadata +5 -10
- data/lib/assets/javascripts/thesis/hallo.js +0 -2949
- data/lib/assets/javascripts/thesis/thesis.js.coffee +0 -27
- data/lib/assets/javascripts/thesis.js +0 -2
- data/lib/assets/stylesheets/thesis/thesis.css.scss +0 -16
- data/lib/assets/stylesheets/thesis.css +0 -4
- data/lib/thesis/routing/routes.rb +0 -10
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: thesis
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.1.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-03-
|
12
|
+
date: 2013-03-30 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails
|
@@ -34,14 +34,9 @@ executables: []
|
|
34
34
|
extensions: []
|
35
35
|
extra_rdoc_files: []
|
36
36
|
files:
|
37
|
-
- lib/assets/javascripts/thesis/hallo.js
|
38
|
-
- lib/assets/javascripts/thesis/thesis.js.coffee
|
39
|
-
- lib/assets/javascripts/thesis.js
|
40
|
-
- lib/assets/stylesheets/thesis/thesis.css.scss
|
41
|
-
- lib/assets/stylesheets/thesis.css
|
42
37
|
- lib/generators/thesis/install/install_generator.rb
|
43
|
-
- lib/generators/thesis/install/templates/migrations/
|
44
|
-
- lib/generators/thesis/install/templates/migrations/
|
38
|
+
- lib/generators/thesis/install/templates/migrations/thesis_create_page.rb
|
39
|
+
- lib/generators/thesis/install/templates/migrations/thesis_create_page_content.rb
|
45
40
|
- lib/generators/thesis/install/templates/page_templates/default.html.erb
|
46
41
|
- lib/generators/thesis/install/templates/page_templates/default.html.haml
|
47
42
|
- lib/generators/thesis/install/templates/page_templates/default.html.slim
|
@@ -55,7 +50,6 @@ files:
|
|
55
50
|
- lib/thesis/models/page_content.rb
|
56
51
|
- lib/thesis/railtie.rb
|
57
52
|
- lib/thesis/routing/route_constraint.rb
|
58
|
-
- lib/thesis/routing/routes.rb
|
59
53
|
- lib/thesis/version.rb
|
60
54
|
- lib/thesis.rb
|
61
55
|
- README.md
|
@@ -71,6 +65,7 @@ post_install_message:
|
|
71
65
|
rdoc_options: []
|
72
66
|
require_paths:
|
73
67
|
- lib
|
68
|
+
- app
|
74
69
|
required_ruby_version: !ruby/object:Gem::Requirement
|
75
70
|
none: false
|
76
71
|
requirements:
|