beyond 0.0.1 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4dbe8e9e9ea68a2608032efd90e213c6b9f62950
4
- data.tar.gz: 177062d61956865b13f23d5c7c0015c759d2f12e
3
+ metadata.gz: 31a86a0ca5198a3df0f8111dc86e5086ca2c3741
4
+ data.tar.gz: c0ee042ae36995c44b28a2ce1505488c53a5e0f1
5
5
  SHA512:
6
- metadata.gz: bb0db302cd4b0c240e52668a628e05e9f7129a84d4f854561d2ce3162c5cd29271b9f699c66ea47de0e665d71ce34abdd51f92b43d9e5b398da924a5adefc80a
7
- data.tar.gz: 2688a1f6f49bc058100f0e8d2190d73df33cbc08eabc90c3636adcafe1c23b98091e707aa67a19f1b9d6bed648fee85faac2ad36f79c209f16eae41215081a37
6
+ metadata.gz: 114270b0167c3cdeefa760611e148da470a8f5670c6db628c0afd66edcc108db418f8105209d2f0a742ad40f44cc459c837be31e643aceaa53b8c2d5b4273d32
7
+ data.tar.gz: 8df637d5f2e461d4a733889d20586339af1029811a2b04bd72dc3fdf6d2da68fa9c8f8caeb4afc487ad94bd86a491f6463f457ed2735e7bd91db4e047edeb24b
@@ -1,4 +1,4 @@
1
- module Beyond
2
- class ApplicationController < ActionController::Base
1
+ #module Beyond
2
+ class Beyond::ApplicationController < ApplicationController #ActionController::Base <- removed in order to inherit from host app's layout and session
3
3
  end
4
- end
4
+ #end
@@ -1,3 +1,3 @@
1
1
  module Beyond
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.4"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: beyond
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mihail Zdravkov
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-02-04 00:00:00.000000000 Z
11
+ date: 2014-02-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -125,7 +125,6 @@ files:
125
125
  - app/models/beyond/tenant.rb
126
126
  - app/assets/javascripts/beyond/application.js
127
127
  - app/assets/stylesheets/beyond/application.css
128
- - app/views/layouts/beyond/application.html.erb
129
128
  - app/views/beyond/plugins/new.html.haml
130
129
  - app/views/beyond/tenants/edit.html.haml
131
130
  - app/views/beyond/tenants/show.html.haml
@@ -1,17 +0,0 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <title>Beyond</title>
5
- <%= stylesheet_link_tag "beyond/application", media: "all" %>
6
- <%= javascript_include_tag "beyond/application" %>
7
- <%= csrf_meta_tags %>
8
- </head>
9
- <body>
10
-
11
-
12
- <p class="notice"><%= notice %></p>
13
- <p class="alert"><%= alert %></p>
14
- <%= yield %>
15
-
16
- </body>
17
- </html>