amberbit-config 1.0.1 → 1.0.2
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/.gitignore +1 -0
- data/README +9 -0
- data/VERSION +1 -1
- data/amberbit-config.gemspec +4 -2
- data/rails/init.rb +2 -0
- metadata +5 -3
data/.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
pkg/*
|
data/README
CHANGED
|
@@ -6,9 +6,18 @@ Provides simple global configuration for Ruby on Rails application using YAML fi
|
|
|
6
6
|
Installation
|
|
7
7
|
============
|
|
8
8
|
|
|
9
|
+
As a Rails plugin:
|
|
10
|
+
------------------
|
|
11
|
+
|
|
9
12
|
$ ./script/plugin install git://github.com/amberbit/amberbit-config.git
|
|
10
13
|
$ rake amberbit:config:setup
|
|
11
14
|
|
|
15
|
+
As a gem:
|
|
16
|
+
---------
|
|
17
|
+
|
|
18
|
+
$ gem install amberbit-config
|
|
19
|
+
|
|
20
|
+
|
|
12
21
|
Usage
|
|
13
22
|
=====
|
|
14
23
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.2
|
data/amberbit-config.gemspec
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{amberbit-config}
|
|
8
|
-
s.version = "1.0.
|
|
8
|
+
s.version = "1.0.2"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Wojciech Piekutowski", "Hubert Lepicki"]
|
|
@@ -16,7 +16,8 @@ Gem::Specification.new do |s|
|
|
|
16
16
|
"README"
|
|
17
17
|
]
|
|
18
18
|
s.files = [
|
|
19
|
-
"
|
|
19
|
+
".gitignore",
|
|
20
|
+
"MIT-LICENSE",
|
|
20
21
|
"README",
|
|
21
22
|
"Rakefile",
|
|
22
23
|
"VERSION",
|
|
@@ -26,6 +27,7 @@ Gem::Specification.new do |s|
|
|
|
26
27
|
"lib/amber_bit_app_config.rb",
|
|
27
28
|
"lib/amberbit-config.rb",
|
|
28
29
|
"lib/hash_struct.rb",
|
|
30
|
+
"rails/init.rb",
|
|
29
31
|
"spec/library_spec.rb",
|
|
30
32
|
"spec/plugin_spec.rb",
|
|
31
33
|
"spec/spec.opts",
|
data/rails/init.rb
ADDED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: amberbit-config
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 19
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 1
|
|
8
8
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 1.0.
|
|
9
|
+
- 2
|
|
10
|
+
version: 1.0.2
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Wojciech Piekutowski
|
|
@@ -29,6 +29,7 @@ extensions: []
|
|
|
29
29
|
extra_rdoc_files:
|
|
30
30
|
- README
|
|
31
31
|
files:
|
|
32
|
+
- .gitignore
|
|
32
33
|
- MIT-LICENSE
|
|
33
34
|
- README
|
|
34
35
|
- Rakefile
|
|
@@ -39,6 +40,7 @@ files:
|
|
|
39
40
|
- lib/amber_bit_app_config.rb
|
|
40
41
|
- lib/amberbit-config.rb
|
|
41
42
|
- lib/hash_struct.rb
|
|
43
|
+
- rails/init.rb
|
|
42
44
|
- spec/library_spec.rb
|
|
43
45
|
- spec/plugin_spec.rb
|
|
44
46
|
- spec/spec.opts
|