acts_as_configurable 0.0.3 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG ADDED
@@ -0,0 +1,22 @@
1
+ v0.0.5 (2010-04-16)
2
+
3
+ * Fixed gemspec file
4
+
5
+ v0.0.4 (2010-04-16)
6
+
7
+ * Added github url to gemspec i.e. http://github.com/create-philipp-ullmann/acts_as_configurable
8
+ * Renamed CHANGELOG.rdoc to CHANGELOG so that echoe can parse it
9
+ * Removed version string from Rakefile
10
+
11
+ v0.0.3 (2010-04-16)
12
+
13
+ * Modified gemspec
14
+ * Added documentation for installation
15
+
16
+ v0.0.2 (2010-04-16)
17
+
18
+ * Added gemspec
19
+
20
+ v0.0.1 (2010-04-15)
21
+
22
+ * Initial release
data/Manifest CHANGED
@@ -1,6 +1,7 @@
1
- CHANGELOG.rdoc
2
- Manifest
1
+ CHANGELOG
3
2
  README.rdoc
4
3
  Rakefile
4
+ acts_as_configurable.gemspec
5
5
  lib/acts_as_configurable.rb
6
6
  lib/dummy_access.rb
7
+ Manifest
data/Rakefile CHANGED
@@ -2,10 +2,10 @@ require 'rubygems'
2
2
  require 'rake'
3
3
  require 'echoe'
4
4
 
5
- Echoe.new('acts_as_configurable', '0.0.3') do |p|
5
+ Echoe.new('acts_as_configurable') do |p|
6
6
  p.summary = 'Storage of configuration values in database'
7
7
  p.description = 'Storage of configuration values in database'
8
8
  p.author = 'Philipp Ullmann'
9
- p.url = 'http://www.create.at'
9
+ p.url = 'http://github.com/create-philipp-ullmann/acts_as_configurable'
10
10
  p.email = 'philipp.ullmann@create.at'
11
11
  end
@@ -2,16 +2,16 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{acts_as_configurable}
5
- s.version = "0.0.3"
5
+ s.version = "0.0.5"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Philipp Ullmann"]
9
9
  s.date = %q{2010-04-16}
10
10
  s.description = %q{Storage of configuration values in database}
11
11
  s.email = %q{philipp.ullmann@create.at}
12
- s.extra_rdoc_files = ["CHANGELOG.rdoc", "README.rdoc", "lib/acts_as_configurable.rb", "lib/dummy_access.rb"]
13
- s.files = ["CHANGELOG.rdoc", "Manifest", "README.rdoc", "Rakefile", "lib/acts_as_configurable.rb", "lib/dummy_access.rb", "acts_as_configurable.gemspec"]
14
- s.homepage = %q{http://www.create.at}
12
+ s.extra_rdoc_files = ["CHANGELOG", "README.rdoc", "lib/acts_as_configurable.rb", "lib/dummy_access.rb"]
13
+ s.files = ["CHANGELOG", "README.rdoc", "Rakefile", "acts_as_configurable.gemspec", "lib/acts_as_configurable.rb", "lib/dummy_access.rb", "Manifest"]
14
+ s.homepage = %q{http://github.com/create-philipp-ullmann/acts_as_configurable}
15
15
  s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Acts_as_configurable", "--main", "README.rdoc"]
16
16
  s.require_paths = ["lib"]
17
17
  s.rubyforge_project = %q{acts_as_configurable}
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 3
9
- version: 0.0.3
8
+ - 5
9
+ version: 0.0.5
10
10
  platform: ruby
11
11
  authors:
12
12
  - Philipp Ullmann
@@ -25,20 +25,20 @@ executables: []
25
25
  extensions: []
26
26
 
27
27
  extra_rdoc_files:
28
- - CHANGELOG.rdoc
28
+ - CHANGELOG
29
29
  - README.rdoc
30
30
  - lib/acts_as_configurable.rb
31
31
  - lib/dummy_access.rb
32
32
  files:
33
- - CHANGELOG.rdoc
34
- - Manifest
33
+ - CHANGELOG
35
34
  - README.rdoc
36
35
  - Rakefile
36
+ - acts_as_configurable.gemspec
37
37
  - lib/acts_as_configurable.rb
38
38
  - lib/dummy_access.rb
39
- - acts_as_configurable.gemspec
39
+ - Manifest
40
40
  has_rdoc: true
41
- homepage: http://www.create.at
41
+ homepage: http://github.com/create-philipp-ullmann/acts_as_configurable
42
42
  licenses: []
43
43
 
44
44
  post_install_message:
data/CHANGELOG.rdoc DELETED
@@ -1,12 +0,0 @@
1
- 0.0.3 (2010-04-16)
2
-
3
- * Modified gemspec
4
- * Added documentation for installation
5
-
6
- 0.0.2 (2010-04-16)
7
-
8
- * Added gemspec
9
-
10
- 0.0.1 (2010-04-15)
11
-
12
- * Initial release