urbanizzo_settings 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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 62019320930c5b5d902c00679749a3ea28cbe87b
4
+ data.tar.gz: 3f90a77f593deeb15389364e47a3422479597306
5
+ SHA512:
6
+ metadata.gz: 8b9763cf59d26298167710bfd78b64c9f602d413a8adde3839dad05e6a2400a748c26a752c27b8b9a50ce93411a023f1be470c6e9c278446b01844d642c7bb3d
7
+ data.tar.gz: 8f863099a5cfe60b6fd3c0971fe26fbc2a6f377e7d20abbc23b2e0a320d58f6d27f5e43092c3ab8ea1edb0dd65a619e9a155fd49ac3e5cffc6777de1a1a15f26
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/Rakefile ADDED
@@ -0,0 +1,21 @@
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 = 'UrbanizzoSettings'
12
+ rdoc.options << '--line-numbers'
13
+ rdoc.rdoc_files.include('README.rdoc')
14
+ rdoc.rdoc_files.include('lib/**/*.rb')
15
+ end
16
+
17
+
18
+
19
+
20
+ Bundler::GemHelper.install_tasks
21
+
@@ -0,0 +1,43 @@
1
+ module UrbanizzoSettings
2
+ class Setting < ActiveRecord::Base
3
+ self.table_name = 'settings'
4
+
5
+ validates_presence_of :name
6
+ class << self
7
+ # This method returns the values of the config simulating a Hash, like:
8
+ # Configuration[:foo]
9
+ # It can also bring Arrays of keys, like:
10
+ # Configuration[:foo, :bar]
11
+ # ... so you can pass it to a method using *.
12
+ # It is memoized, so it will be correctly cached.
13
+ def [] *keys
14
+ if keys.size == 1
15
+ get keys.shift
16
+ else
17
+ keys.map{|key| get key }
18
+ end
19
+ end
20
+ def []= key, value
21
+ set key, value
22
+ end
23
+
24
+ def get_without_cache(key)
25
+ find_by_name(key).value rescue nil
26
+ end
27
+
28
+ private
29
+ def get key
30
+ Rails.cache.fetch("/configurations/#{key}") do
31
+ get_without_cache(key)
32
+ end
33
+ end
34
+
35
+ def set key, value
36
+ find_or_create_by!(name: key).update(value: value)
37
+ Rails.cache.write("/configurations/#{key}", value)
38
+ value
39
+ end
40
+
41
+ end
42
+ end
43
+ end
@@ -0,0 +1 @@
1
+ ::UrbanizzoSettings = UrbanizzoSettings::Setting
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :urbanizzo_settings do
3
+ # # Task goes here
4
+ # end
@@ -0,0 +1,5 @@
1
+ module UrbanizzoSettings
2
+ class Engine < ::Rails::Engine
3
+ isolate_namespace UrbanizzoSettings
4
+ end
5
+ end
@@ -0,0 +1,3 @@
1
+ module UrbanizzoSettings
2
+ VERSION = '0.0.1'
3
+ end
@@ -0,0 +1,3 @@
1
+ require 'urbanizzo_settings/engine'
2
+ module UrbanizzoSettings
3
+ end
metadata ADDED
@@ -0,0 +1,122 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: urbanizzo_settings
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Ilton Silveira
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-03-19 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 4.1.1
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: 4.1.1
27
+ - !ruby/object:Gem::Dependency
28
+ name: pg
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
+ - !ruby/object:Gem::Dependency
42
+ name: rspec-rails
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: shoulda
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: database_cleaner
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ description: Provide a Settings class to be used in Catarse that will store all data
84
+ on a table containing key/value pairs.
85
+ email:
86
+ - contact@factoryfire.com
87
+ executables: []
88
+ extensions: []
89
+ extra_rdoc_files: []
90
+ files:
91
+ - MIT-LICENSE
92
+ - Rakefile
93
+ - app/models/urbanizzo_settings/setting.rb
94
+ - config/initializers/urbanizzo_settings.rb
95
+ - lib/tasks/urbanizzo_settings_tasks.rake
96
+ - lib/urbanizzo_settings.rb
97
+ - lib/urbanizzo_settings/engine.rb
98
+ - lib/urbanizzo_settings/version.rb
99
+ homepage: https://www.urbanizzo.com
100
+ licenses: []
101
+ metadata: {}
102
+ post_install_message:
103
+ rdoc_options: []
104
+ require_paths:
105
+ - lib
106
+ required_ruby_version: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ required_rubygems_version: !ruby/object:Gem::Requirement
112
+ requirements:
113
+ - - ">="
114
+ - !ruby/object:Gem::Version
115
+ version: '0'
116
+ requirements: []
117
+ rubyforge_project:
118
+ rubygems_version: 2.5.1
119
+ signing_key:
120
+ specification_version: 4
121
+ summary: Engine to store urbanizzo settings in the database.
122
+ test_files: []