landable_publicist 0.0.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.
Files changed (64) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +8 -0
  3. data/Gemfile +14 -0
  4. data/Gemfile.lock +142 -0
  5. data/MIT-LICENSE +20 -0
  6. data/README.rdoc +3 -0
  7. data/Rakefile +34 -0
  8. data/app/assets/images/landable_publicist/.keep +0 -0
  9. data/app/assets/javascripts/landable_publicist/application.js +13 -0
  10. data/app/assets/stylesheets/landable_publicist/application.css +15 -0
  11. data/app/controllers/landable_publicist/application_controller.rb +4 -0
  12. data/app/helpers/landable_publicist/application_helper.rb +4 -0
  13. data/app/views/layouts/landable_publicist/application.html.erb +14 -0
  14. data/bin/rails +12 -0
  15. data/config/routes.rb +2 -0
  16. data/landable_publicist.gemspec +24 -0
  17. data/lib/landable_publicist.rb +4 -0
  18. data/lib/landable_publicist/engine.rb +5 -0
  19. data/lib/landable_publicist/version.rb +3 -0
  20. data/lib/tasks/landable_publicist_tasks.rake +4 -0
  21. data/test/dummy/README.rdoc +28 -0
  22. data/test/dummy/Rakefile +6 -0
  23. data/test/dummy/app/assets/images/.keep +0 -0
  24. data/test/dummy/app/assets/javascripts/application.js +13 -0
  25. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  26. data/test/dummy/app/controllers/application_controller.rb +5 -0
  27. data/test/dummy/app/controllers/concerns/.keep +0 -0
  28. data/test/dummy/app/helpers/application_helper.rb +2 -0
  29. data/test/dummy/app/mailers/.keep +0 -0
  30. data/test/dummy/app/models/.keep +0 -0
  31. data/test/dummy/app/models/concerns/.keep +0 -0
  32. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  33. data/test/dummy/bin/bundle +3 -0
  34. data/test/dummy/bin/rails +4 -0
  35. data/test/dummy/bin/rake +4 -0
  36. data/test/dummy/config.ru +4 -0
  37. data/test/dummy/config/application.rb +23 -0
  38. data/test/dummy/config/boot.rb +5 -0
  39. data/test/dummy/config/database.yml +25 -0
  40. data/test/dummy/config/environment.rb +5 -0
  41. data/test/dummy/config/environments/development.rb +37 -0
  42. data/test/dummy/config/environments/production.rb +82 -0
  43. data/test/dummy/config/environments/test.rb +39 -0
  44. data/test/dummy/config/initializers/assets.rb +8 -0
  45. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  46. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  47. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  48. data/test/dummy/config/initializers/inflections.rb +16 -0
  49. data/test/dummy/config/initializers/mime_types.rb +4 -0
  50. data/test/dummy/config/initializers/session_store.rb +3 -0
  51. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  52. data/test/dummy/config/locales/en.yml +23 -0
  53. data/test/dummy/config/routes.rb +4 -0
  54. data/test/dummy/config/secrets.yml +22 -0
  55. data/test/dummy/lib/assets/.keep +0 -0
  56. data/test/dummy/log/.keep +0 -0
  57. data/test/dummy/public/404.html +67 -0
  58. data/test/dummy/public/422.html +67 -0
  59. data/test/dummy/public/500.html +66 -0
  60. data/test/dummy/public/favicon.ico +0 -0
  61. data/test/integration/navigation_test.rb +10 -0
  62. data/test/landable_publicist_test.rb +7 -0
  63. data/test/test_helper.rb +15 -0
  64. metadata +192 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 1d14f53436136c1969de40d2d86eaebec44e8b5d
4
+ data.tar.gz: 109653d785338d5cc69035ea8d3a50df5376bb4f
5
+ SHA512:
6
+ metadata.gz: 09fc46b1032ef5705db8ed7b50f4381d7bb6c3e7f0c501da106329bfbdd7a0f0cd54614962b84a9824fca387bd5697e57305312f4879dd9fa2cae3fe3d444786
7
+ data.tar.gz: b162b3a686318e9853b8f37cfd1f311812934a61e519851468f126750457aee2d4d4aa28980790bb52d6fc5682bdb307ed1012601da1e349e196ff199c55a853
data/.gitignore ADDED
@@ -0,0 +1,8 @@
1
+ .bundle/
2
+ log/*.log
3
+ pkg/
4
+ test/dummy/db/*.sqlite3
5
+ test/dummy/db/*.sqlite3-journal
6
+ test/dummy/log/*.log
7
+ test/dummy/tmp/
8
+ test/dummy/.sass-cache
data/Gemfile ADDED
@@ -0,0 +1,14 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Declare your gem's dependencies in landable_publicist.gemspec.
4
+ # Bundler will treat runtime dependencies like base dependencies, and
5
+ # development dependencies will be added by default to the :development group.
6
+ gemspec
7
+
8
+ # Declare any dependencies that are still in development here instead of in
9
+ # your gemspec. These might include edge Rails or gems from your path or
10
+ # Git. Remember to move these dependencies to your gemspec before releasing
11
+ # your gem to rubygems.org.
12
+
13
+ # To use debugger
14
+ # gem 'debugger'
data/Gemfile.lock ADDED
@@ -0,0 +1,142 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ landable_publicist (0.0.1)
5
+ landable (> 1.9.0)
6
+ rails (~> 4.0.0)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actionmailer (4.0.5)
12
+ actionpack (= 4.0.5)
13
+ mail (~> 2.5.4)
14
+ actionpack (4.0.5)
15
+ activesupport (= 4.0.5)
16
+ builder (~> 3.1.0)
17
+ erubis (~> 2.7.0)
18
+ rack (~> 1.5.2)
19
+ rack-test (~> 0.6.2)
20
+ active_model_serializers (0.8.1)
21
+ activemodel (>= 3.0)
22
+ activemodel (4.0.5)
23
+ activesupport (= 4.0.5)
24
+ builder (~> 3.1.0)
25
+ activerecord (4.0.5)
26
+ activemodel (= 4.0.5)
27
+ activerecord-deprecated_finders (~> 1.0.2)
28
+ activesupport (= 4.0.5)
29
+ arel (~> 4.0.0)
30
+ activerecord-deprecated_finders (1.0.3)
31
+ activesupport (4.0.5)
32
+ i18n (~> 0.6, >= 0.6.9)
33
+ minitest (~> 4.2)
34
+ multi_json (~> 1.3)
35
+ thread_safe (~> 0.1)
36
+ tzinfo (~> 0.3.37)
37
+ arel (4.0.2)
38
+ builder (3.1.4)
39
+ carrierwave (0.10.0)
40
+ activemodel (>= 3.2.0)
41
+ activesupport (>= 3.2.0)
42
+ json (>= 1.7)
43
+ mime-types (>= 1.16)
44
+ erubis (2.7.0)
45
+ excon (0.38.0)
46
+ fog (1.22.1)
47
+ fog-brightbox
48
+ fog-core (~> 1.22)
49
+ fog-json
50
+ ipaddress (~> 0.5)
51
+ nokogiri (~> 1.5, >= 1.5.11)
52
+ fog-brightbox (0.1.1)
53
+ fog-core (~> 1.22)
54
+ fog-json
55
+ inflecto
56
+ fog-core (1.22.0)
57
+ builder
58
+ excon (~> 0.33)
59
+ formatador (~> 0.2)
60
+ mime-types
61
+ net-scp (~> 1.1)
62
+ net-ssh (>= 2.1.3)
63
+ fog-json (1.0.0)
64
+ multi_json (~> 1.0)
65
+ formatador (0.2.5)
66
+ hike (1.2.3)
67
+ i18n (0.6.11)
68
+ inflecto (0.0.2)
69
+ ipaddress (0.8.0)
70
+ json (1.8.1)
71
+ landable (1.9.1)
72
+ active_model_serializers (~> 0.8)
73
+ builder
74
+ carrierwave
75
+ fog
76
+ liquid
77
+ lookup_by (> 0.4.0)
78
+ rack-cors (>= 0.2.7)
79
+ rails (~> 4.0)
80
+ rest-client
81
+ liquid (2.6.1)
82
+ lookup_by (0.8.0)
83
+ rails (>= 3.2.0)
84
+ mail (2.5.4)
85
+ mime-types (~> 1.16)
86
+ treetop (~> 1.4.8)
87
+ mime-types (1.25.1)
88
+ mini_portile (0.6.0)
89
+ minitest (4.7.5)
90
+ multi_json (1.10.1)
91
+ net-scp (1.2.1)
92
+ net-ssh (>= 2.6.5)
93
+ net-ssh (2.9.1)
94
+ netrc (0.7.7)
95
+ nokogiri (1.6.2.1)
96
+ mini_portile (= 0.6.0)
97
+ pg (0.17.1)
98
+ polyglot (0.3.5)
99
+ rack (1.5.2)
100
+ rack-cors (0.2.9)
101
+ rack-test (0.6.2)
102
+ rack (>= 1.0)
103
+ rails (4.0.5)
104
+ actionmailer (= 4.0.5)
105
+ actionpack (= 4.0.5)
106
+ activerecord (= 4.0.5)
107
+ activesupport (= 4.0.5)
108
+ bundler (>= 1.3.0, < 2.0)
109
+ railties (= 4.0.5)
110
+ sprockets-rails (~> 2.0.0)
111
+ railties (4.0.5)
112
+ actionpack (= 4.0.5)
113
+ activesupport (= 4.0.5)
114
+ rake (>= 0.8.7)
115
+ thor (>= 0.18.1, < 2.0)
116
+ rake (10.3.2)
117
+ rest-client (1.7.2)
118
+ mime-types (>= 1.16, < 3.0)
119
+ netrc (~> 0.7)
120
+ sprockets (2.12.1)
121
+ hike (~> 1.2)
122
+ multi_json (~> 1.0)
123
+ rack (~> 1.0)
124
+ tilt (~> 1.1, != 1.3.0)
125
+ sprockets-rails (2.0.1)
126
+ actionpack (>= 3.0)
127
+ activesupport (>= 3.0)
128
+ sprockets (~> 2.8)
129
+ thor (0.19.1)
130
+ thread_safe (0.3.4)
131
+ tilt (1.4.1)
132
+ treetop (1.4.15)
133
+ polyglot
134
+ polyglot (>= 0.3.1)
135
+ tzinfo (0.3.40)
136
+
137
+ PLATFORMS
138
+ ruby
139
+
140
+ DEPENDENCIES
141
+ landable_publicist!
142
+ pg
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright 2014 YOURNAME
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.rdoc ADDED
@@ -0,0 +1,3 @@
1
+ = LandablePublicist
2
+
3
+ This project rocks and uses MIT-LICENSE.
data/Rakefile ADDED
@@ -0,0 +1,34 @@
1
+ begin
2
+ require 'bundler/setup'
3
+ rescue LoadError
4
+ puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
5
+ end
6
+
7
+ require 'rdoc/task'
8
+
9
+ RDoc::Task.new(:rdoc) do |rdoc|
10
+ rdoc.rdoc_dir = 'rdoc'
11
+ rdoc.title = 'LandablePublicist'
12
+ rdoc.options << '--line-numbers'
13
+ rdoc.rdoc_files.include('README.rdoc')
14
+ rdoc.rdoc_files.include('lib/**/*.rb')
15
+ end
16
+
17
+ APP_RAKEFILE = File.expand_path("../test/dummy/Rakefile", __FILE__)
18
+ load 'rails/tasks/engine.rake'
19
+
20
+
21
+
22
+ Bundler::GemHelper.install_tasks
23
+
24
+ require 'rake/testtask'
25
+
26
+ Rake::TestTask.new(:test) do |t|
27
+ t.libs << 'lib'
28
+ t.libs << 'test'
29
+ t.pattern = 'test/**/*_test.rb'
30
+ t.verbose = false
31
+ end
32
+
33
+
34
+ task default: :test
File without changes
@@ -0,0 +1,13 @@
1
+ // This is a manifest file that'll be compiled into application.js, which will include all the files
2
+ // listed below.
3
+ //
4
+ // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
5
+ // or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
6
+ //
7
+ // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8
+ // compiled file.
9
+ //
10
+ // Read Sprockets README (https://github.com/sstephenson/sprockets#sprockets-directives) for details
11
+ // about supported directives.
12
+ //
13
+ //= require_tree .
@@ -0,0 +1,15 @@
1
+ /*
2
+ * This is a manifest file that'll be compiled into application.css, which will include all the files
3
+ * listed below.
4
+ *
5
+ * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
+ * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
7
+ *
8
+ * You're free to add application-wide styles to this file and they'll appear at the bottom of the
9
+ * compiled file so the styles you add here take precedence over styles defined in any styles
10
+ * defined in the other CSS/SCSS files in this directory. It is generally better to create a new
11
+ * file per style scope.
12
+ *
13
+ *= require_tree .
14
+ *= require_self
15
+ */
@@ -0,0 +1,4 @@
1
+ module LandablePublicist
2
+ class ApplicationController < ActionController::Base
3
+ end
4
+ end
@@ -0,0 +1,4 @@
1
+ module LandablePublicist
2
+ module ApplicationHelper
3
+ end
4
+ end
@@ -0,0 +1,14 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>LandablePublicist</title>
5
+ <%= stylesheet_link_tag "landable_publicist/application", media: "all" %>
6
+ <%= javascript_include_tag "landable_publicist/application" %>
7
+ <%= csrf_meta_tags %>
8
+ </head>
9
+ <body>
10
+
11
+ <%= yield %>
12
+
13
+ </body>
14
+ </html>
data/bin/rails ADDED
@@ -0,0 +1,12 @@
1
+ #!/usr/bin/env ruby
2
+ # This command will automatically be run when you run "rails" with Rails 4 gems installed from the root of your application.
3
+
4
+ ENGINE_ROOT = File.expand_path('../..', __FILE__)
5
+ ENGINE_PATH = File.expand_path('../../lib/landable_publicist/engine', __FILE__)
6
+
7
+ # Set up gems listed in the Gemfile.
8
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
9
+ require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
10
+
11
+ require 'rails/all'
12
+ require 'rails/engine/commands'
data/config/routes.rb ADDED
@@ -0,0 +1,2 @@
1
+ LandablePublicist::Engine.routes.draw do
2
+ end
@@ -0,0 +1,24 @@
1
+ $:.push File.expand_path("../lib", __FILE__)
2
+
3
+ # Maintain your gem's version:
4
+ require "landable_publicist/version"
5
+
6
+ # Describe your gem and declare its dependencies:
7
+ Gem::Specification.new do |s|
8
+ s.name = "landable_publicist"
9
+ s.version = LandablePublicist::VERSION
10
+ s.authors = ['Team Trogdor']
11
+ s.email = ['trogdor@enova.com']
12
+ s.homepage = 'https://github.com/enova/landable_publicist'
13
+ s.summary = 'Mountable CMS engine for Rails'
14
+ s.description = "Landing page storage, rendering, tracking, and management FrontEnd / API"
15
+ s.license = 'MIT-LICENSE'
16
+
17
+ s.files = `git ls-files`.split($/)
18
+ s.test_files = s.files.grep(%r{^(test|spec|features)/})
19
+
20
+ s.add_dependency 'rails', '~> 4.0.0'
21
+ s.add_dependency 'landable', '> 1.9.0'
22
+
23
+ s.add_development_dependency 'pg'
24
+ end
@@ -0,0 +1,4 @@
1
+ require "landable_publicist/engine"
2
+
3
+ module LandablePublicist
4
+ end
@@ -0,0 +1,5 @@
1
+ module LandablePublicist
2
+ class Engine < ::Rails::Engine
3
+ isolate_namespace LandablePublicist
4
+ end
5
+ end
@@ -0,0 +1,3 @@
1
+ module LandablePublicist
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :landable_publicist do
3
+ # # Task goes here
4
+ # end
@@ -0,0 +1,28 @@
1
+ == README
2
+
3
+ This README would normally document whatever steps are necessary to get the
4
+ application up and running.
5
+
6
+ Things you may want to cover:
7
+
8
+ * Ruby version
9
+
10
+ * System dependencies
11
+
12
+ * Configuration
13
+
14
+ * Database creation
15
+
16
+ * Database initialization
17
+
18
+ * How to run the test suite
19
+
20
+ * Services (job queues, cache servers, search engines, etc.)
21
+
22
+ * Deployment instructions
23
+
24
+ * ...
25
+
26
+
27
+ Please feel free to use a different markup language if you do not plan to run
28
+ <tt>rake doc:app</tt>.
@@ -0,0 +1,6 @@
1
+ # Add your own tasks in files placed in lib/tasks ending in .rake,
2
+ # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
3
+
4
+ require File.expand_path('../config/application', __FILE__)
5
+
6
+ Rails.application.load_tasks
File without changes
@@ -0,0 +1,13 @@
1
+ // This is a manifest file that'll be compiled into application.js, which will include all the files
2
+ // listed below.
3
+ //
4
+ // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
5
+ // or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
6
+ //
7
+ // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8
+ // compiled file.
9
+ //
10
+ // Read Sprockets README (https://github.com/sstephenson/sprockets#sprockets-directives) for details
11
+ // about supported directives.
12
+ //
13
+ //= require_tree .
@@ -0,0 +1,15 @@
1
+ /*
2
+ * This is a manifest file that'll be compiled into application.css, which will include all the files
3
+ * listed below.
4
+ *
5
+ * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
+ * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
7
+ *
8
+ * You're free to add application-wide styles to this file and they'll appear at the bottom of the
9
+ * compiled file so the styles you add here take precedence over styles defined in any styles
10
+ * defined in the other CSS/SCSS files in this directory. It is generally better to create a new
11
+ * file per style scope.
12
+ *
13
+ *= require_tree .
14
+ *= require_self
15
+ */