fullstack-admin 0.1.3 → 0.1.5

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.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.3
1
+ 0.1.5
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "fullstack-admin"
8
- s.version = "0.1.3"
8
+ s.version = "0.1.5"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["mcasimir"]
12
- s.date = "2012-08-11"
12
+ s.date = "2012-08-12"
13
13
  s.description = "Administration interface framework for fullstack"
14
14
  s.email = "maurizio.cas@gmail.com"
15
15
  s.extra_rdoc_files = [
@@ -977,7 +977,8 @@ Gem::Specification.new do |s|
977
977
  "app/models/trackable.rb",
978
978
  "fullstack-admin.gemspec",
979
979
  "lib/fullstack-admin.rb",
980
- "lib/fullstack-admin/engine.rb",
980
+ "lib/fullstack/admin.rb",
981
+ "lib/fullstack/admin/engine.rb",
981
982
  "lib/generators/fullstack/admin/install_generator.rb",
982
983
  "lib/generators/fullstack/admin/templates/root/app/assets/javascripts/admin/admin.js.coffee",
983
984
  "lib/generators/fullstack/admin/templates/root/app/assets/stylesheets/admin/admin.css",
@@ -1,39 +1 @@
1
- # Author:: Maurizio Casimirri (mailto:maurizio.cas@gmail.com)
2
- # Copyright:: Copyright (c) 2012 Maurizio Casimirri
3
- #
4
- # Permission is hereby granted, free of charge, to any person obtaining
5
- # a copy of this software and associated documentation files (the
6
- # "Software"), to deal in the Software without restriction, including
7
- # without limitation the rights to use, copy, modify, merge, publish,
8
- # distribute, sublicense, and/or sell copies of the Software, and to
9
- # permit persons to whom the Software is furnished to do so, subject to
10
- # the following conditions:
11
- #
12
- # The above copyright notice and this permission notice shall be
13
- # included in all copies or substantial portions of the Software.
14
- #
15
- # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16
- # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17
- # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18
- # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
19
- # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
20
- # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
21
- # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22
-
23
- require "bootstrap-wysihtml5-rails"
24
- require "bootstrap_helpers"
25
- require "chosen-rails"
26
- require "ckeditor"
27
- require "facebox-rails"
28
- require "formtastic"
29
- require "formtastic-bootstrap"
30
- require "kaminari"
31
- require "less-rails-bootstrap"
32
- require "meta_search"
33
- require "plupload-rails"
34
- require "fullstack"
35
-
36
- require 'fullstack-admin/engine'
37
-
38
- module FullstackAdmin
39
- end
1
+ require 'fullstack/admin'
@@ -0,0 +1,42 @@
1
+ # Author:: Maurizio Casimirri (mailto:maurizio.cas@gmail.com)
2
+ # Copyright:: Copyright (c) 2012 Maurizio Casimirri
3
+ #
4
+ # Permission is hereby granted, free of charge, to any person obtaining
5
+ # a copy of this software and associated documentation files (the
6
+ # "Software"), to deal in the Software without restriction, including
7
+ # without limitation the rights to use, copy, modify, merge, publish,
8
+ # distribute, sublicense, and/or sell copies of the Software, and to
9
+ # permit persons to whom the Software is furnished to do so, subject to
10
+ # the following conditions:
11
+ #
12
+ # The above copyright notice and this permission notice shall be
13
+ # included in all copies or substantial portions of the Software.
14
+ #
15
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16
+ # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17
+ # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18
+ # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
19
+ # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
20
+ # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
21
+ # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22
+
23
+ require "bootstrap-wysihtml5-rails"
24
+ require "bootstrap-helpers"
25
+ require "chosen-rails"
26
+ require "ckeditor"
27
+ require "facebox-rails"
28
+ require "formtastic"
29
+ require "formtastic-bootstrap"
30
+ require "kaminari"
31
+ require "less-rails-bootstrap"
32
+ require "meta_search"
33
+ require "plupload-rails"
34
+ require "fullstack"
35
+
36
+ require 'fullstack/admin/engine'
37
+
38
+ module Fullstack
39
+ module Admin
40
+
41
+ end
42
+ end
@@ -0,0 +1,9 @@
1
+ require 'rails'
2
+
3
+ module Fullstack
4
+ module Admin
5
+ class Engine < ::Rails::Engine
6
+
7
+ end
8
+ end
9
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fullstack-admin
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.5
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: 2012-08-11 00:00:00.000000000 Z
12
+ date: 2012-08-12 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
@@ -1187,7 +1187,8 @@ files:
1187
1187
  - app/models/trackable.rb
1188
1188
  - fullstack-admin.gemspec
1189
1189
  - lib/fullstack-admin.rb
1190
- - lib/fullstack-admin/engine.rb
1190
+ - lib/fullstack/admin.rb
1191
+ - lib/fullstack/admin/engine.rb
1191
1192
  - lib/generators/fullstack/admin/install_generator.rb
1192
1193
  - lib/generators/fullstack/admin/templates/root/app/assets/javascripts/admin/admin.js.coffee
1193
1194
  - lib/generators/fullstack/admin/templates/root/app/assets/stylesheets/admin/admin.css
@@ -1231,7 +1232,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
1231
1232
  version: '0'
1232
1233
  segments:
1233
1234
  - 0
1234
- hash: 3806188371149595474
1235
+ hash: -1054048382063842957
1235
1236
  required_rubygems_version: !ruby/object:Gem::Requirement
1236
1237
  none: false
1237
1238
  requirements:
@@ -1,7 +0,0 @@
1
- require 'rails'
2
-
3
- module FullstackAdmin
4
- class Engine < ::Rails::Engine
5
-
6
- end
7
- end