adkron-legacy_woes 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2008 Amos L. King
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/Manifest CHANGED
@@ -1,4 +1,5 @@
1
1
  lib/legacy_woes.rb
2
+ Manifest
3
+ MIT-LICENSE
2
4
  Rakefile
3
5
  README.rdoc
4
- Manifest
data/README.rdoc CHANGED
@@ -2,13 +2,17 @@
2
2
 
3
3
  If your working with
4
4
 
5
- == Install
5
+ == Install as a gem
6
6
 
7
7
  gem install adkron-legacy_woes --source http://gems.github.com
8
8
 
9
9
  In Rails you can instead add this to your environment.rb file
10
10
  config.gem "adkron-legacy_woes", :lib => 'legacy_woes', :source => 'http://gems.github.com'
11
11
 
12
+ == Install as a plugin
13
+
14
+ script/plugin install git://github.com/adkron/legacy_woes.git
15
+
12
16
  == Example
13
17
 
14
18
  require 'rubygems'
data/Rakefile CHANGED
@@ -3,12 +3,12 @@ require 'rubygems'
3
3
  require 'rake'
4
4
  require 'echoe'
5
5
 
6
- Echoe.new('legacy_woes', '0.1.0') do |p|
6
+ Echoe.new('legacy_woes', '0.1.1') do |p|
7
7
  p.description = 'Tools for legacy databases and ActiveRecord'
8
8
  p.url = 'http://github.com/adkron/legacy_woes'
9
9
  p.author = 'Amos King'
10
10
  p.email = 'amos.l.king@gmail.com'
11
- p.ignore_pattern = ['tmp/*', 'script/*', 'example.rb', 'test/*']
11
+ p.ignore_pattern = ['tmp/*', 'script/*', 'example.rb', 'test/*', 'init.rb', '*.gemspec']
12
12
  p.development_dependencies = []
13
13
  end
14
14
 
data/legacy_woes.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{legacy_woes}
5
- s.version = "0.1.0"
5
+ s.version = "0.1.1"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Amos King"]
@@ -10,7 +10,7 @@ Gem::Specification.new do |s|
10
10
  s.description = %q{Tools for legacy databases and ActiveRecord}
11
11
  s.email = %q{amos.l.king@gmail.com}
12
12
  s.extra_rdoc_files = ["lib/legacy_woes.rb", "README.rdoc"]
13
- s.files = ["lib/legacy_woes.rb", "Rakefile", "README.rdoc", "Manifest", "legacy_woes.gemspec"]
13
+ s.files = ["lib/legacy_woes.rb", "Manifest", "MIT-LICENSE", "Rakefile", "README.rdoc", "legacy_woes.gemspec"]
14
14
  s.has_rdoc = true
15
15
  s.homepage = %q{http://github.com/adkron/legacy_woes}
16
16
  s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Legacy_woes", "--main", "README.rdoc"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: adkron-legacy_woes
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amos King
@@ -24,9 +24,10 @@ extra_rdoc_files:
24
24
  - README.rdoc
25
25
  files:
26
26
  - lib/legacy_woes.rb
27
+ - Manifest
28
+ - MIT-LICENSE
27
29
  - Rakefile
28
30
  - README.rdoc
29
- - Manifest
30
31
  - legacy_woes.gemspec
31
32
  has_rdoc: true
32
33
  homepage: http://github.com/adkron/legacy_woes