active_admin_environment_tag 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: eb4256edbace75130114696bf24ed9ef5ed8e206
4
+ data.tar.gz: 0a9e1d3a19d2c6dd6261a5221feb5a6f27612cdc
5
+ SHA512:
6
+ metadata.gz: 856d4211b7322c5dc12fb450f84b7e7d82d8891d4af86e3d5e27982178270e5ecdb64d472f7b174d797a9ca886d4c30956ddd9e4e16003cbb1734f75c738d124
7
+ data.tar.gz: 42795fac539937c7c81e34e8b9a805a5e492012bc93ea2c041060822db7180ae638f0529d13d6312acecd1e770d6da093727df86328883faf275b0a8ae018d81
data/.gitignore ADDED
@@ -0,0 +1,22 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+ *.bundle
19
+ *.so
20
+ *.o
21
+ *.a
22
+ mkmf.log
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in active_admin_environment_tag.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2016 Aleck Greenham
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
@@ -0,0 +1,23 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'active_admin_environment_tag/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "active_admin_environment_tag"
8
+ spec.version = ActiveAdminEnvironmentTag::VERSION
9
+ spec.authors = ["Aleck Greenham"]
10
+ spec.email = ["greenhama13@gmail.com"]
11
+ spec.summary = %q{ActiveAdmin plugin that provides rails environment-specific tags on the admin panel}
12
+ spec.description = %q{An ActiveAdmin plugin that provides tags on the admin panel to indicate which environment your rails project is running in}
13
+ spec.homepage = "https://github.com/greena13/active_admin_environment_tag"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.6"
22
+ spec.add_development_dependency "rake", '~> 0'
23
+ end
@@ -0,0 +1,24 @@
1
+ .active-admin-environment-tag {
2
+ position: fixed;
3
+ top: 175px;
4
+ left: 0;
5
+ border: none;
6
+ width: 20px;
7
+ }
8
+
9
+ .active-admin-environment-tag > div {
10
+ -moz-transform: rotate(90deg); /* FF3.5+ */
11
+ -o-transform: rotate(90deg); /* Opera 10.5 */
12
+ -webkit-transform: rotate(90deg); /* Saf3.1+, Chrome */
13
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1.5708); /* IE6,IE7 */
14
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1.5708)"; /* IE8 */
15
+
16
+ background-color: <%= ActiveAdminEnvironmentTag.environment_colors.fetch(Rails.env.to_s.to_sym, ActiveAdminEnvironmentTag.environment_colors[:default]) %>;
17
+
18
+ height: 20px;
19
+ width: 100px;
20
+ text-align: center;
21
+ padding: 5px;
22
+ margin-left: -45px;
23
+ overflow: scroll;
24
+ }
@@ -0,0 +1,47 @@
1
+ require "active_admin_environment_tag/version"
2
+
3
+ module ActiveAdminEnvironmentTag
4
+ module Rails
5
+ class Engine < ::Rails::Engine
6
+ end
7
+ end
8
+
9
+ class << self
10
+ attr_reader :environment_colors
11
+
12
+ def configuration
13
+ if block_given?
14
+ yield(ActiveAdminEnvironmentTag)
15
+ end
16
+ end
17
+
18
+ def environment_colors= (new_colours)
19
+ @environment_colors.merge!(new_colours)
20
+ end
21
+
22
+ alias :config :configuration
23
+ alias :configure :configuration
24
+ end
25
+
26
+ @environment_colors = {
27
+ development: '#91CA4B',
28
+ production: '#fc1f27',
29
+ default: '#c9d6e3'
30
+ }
31
+ end
32
+
33
+
34
+ module ActiveAdmin
35
+ module Views
36
+ class Footer < Component
37
+ def build
38
+ super id: "footer"
39
+ super style: "text-align: right;"
40
+
41
+ div class: 'active-admin-environment-tag' do
42
+ div Rails.env
43
+ end
44
+ end
45
+ end
46
+ end
47
+ end
@@ -0,0 +1,3 @@
1
+ module ActiveAdminEnvironmentTag
2
+ VERSION = "0.0.1"
3
+ end
metadata ADDED
@@ -0,0 +1,82 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: active_admin_environment_tag
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Aleck Greenham
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-03-10 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.6'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.6'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description: An ActiveAdmin plugin that provides tags on the admin panel to indicate
42
+ which environment your rails project is running in
43
+ email:
44
+ - greenhama13@gmail.com
45
+ executables: []
46
+ extensions: []
47
+ extra_rdoc_files: []
48
+ files:
49
+ - ".gitignore"
50
+ - Gemfile
51
+ - LICENSE.txt
52
+ - Rakefile
53
+ - active_admin_environment_tag.gemspec
54
+ - app/assets/stylesheets/active_admin_environment_tag.css.erb
55
+ - lib/active_admin_environment_tag.rb
56
+ - lib/active_admin_environment_tag/version.rb
57
+ homepage: https://github.com/greena13/active_admin_environment_tag
58
+ licenses:
59
+ - MIT
60
+ metadata: {}
61
+ post_install_message:
62
+ rdoc_options: []
63
+ require_paths:
64
+ - lib
65
+ required_ruby_version: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - ">="
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ required_rubygems_version: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - ">="
73
+ - !ruby/object:Gem::Version
74
+ version: '0'
75
+ requirements: []
76
+ rubyforge_project:
77
+ rubygems_version: 2.2.2
78
+ signing_key:
79
+ specification_version: 4
80
+ summary: ActiveAdmin plugin that provides rails environment-specific tags on the admin
81
+ panel
82
+ test_files: []