create_rails_mysql_db 0.2.1 → 0.2.2
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE +20 -0
- data/Manifest +1 -1
- data/Rakefile +1 -1
- data/create_rails_mysql_db.gemspec +3 -3
- data.tar.gz.sig +0 -0
- metadata +6 -4
- metadata.gz.sig +0 -0
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2011 Dmitry Biryukov
|
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
data/Rakefile
CHANGED
@@ -2,7 +2,7 @@ require 'rubygems'
|
|
2
2
|
require 'rake'
|
3
3
|
require 'echoe'
|
4
4
|
|
5
|
-
Echoe.new('create_rails_mysql_db', '0.2.
|
5
|
+
Echoe.new('create_rails_mysql_db', '0.2.2') do |p|
|
6
6
|
p.description = "cli util to create database and username readed from config/database.yml"
|
7
7
|
p.url = "https://github.com/dmitryz/create_rails_mysql_db"
|
8
8
|
p.author = "Dmitry Biryukov"
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{create_rails_mysql_db}
|
5
|
-
s.version = "0.2.
|
5
|
+
s.version = "0.2.2"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["Dmitry Biryukov"]
|
@@ -12,8 +12,8 @@ Gem::Specification.new do |s|
|
|
12
12
|
s.description = %q{cli util to create database and username readed from config/database.yml}
|
13
13
|
s.email = %q{dmitry@biryukov.net}
|
14
14
|
s.executables = ["create_rails_mysql_db"]
|
15
|
-
s.extra_rdoc_files = ["README", "README.rdoc", "bin/create_rails_mysql_db", "lib/create_rails_mysql_db.rb"]
|
16
|
-
s.files = ["Manifest", "README", "README.rdoc", "Rakefile", "bin/create_rails_mysql_db", "create_rails_mysql_db.
|
15
|
+
s.extra_rdoc_files = ["LICENSE", "README", "README.rdoc", "bin/create_rails_mysql_db", "lib/create_rails_mysql_db.rb"]
|
16
|
+
s.files = ["LICENSE", "Manifest", "README", "README.rdoc", "Rakefile", "bin/create_rails_mysql_db", "lib/create_rails_mysql_db.rb", "create_rails_mysql_db.gemspec"]
|
17
17
|
s.homepage = %q{https://github.com/dmitryz/create_rails_mysql_db}
|
18
18
|
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Create_rails_mysql_db", "--main", "README"]
|
19
19
|
s.require_paths = ["lib"]
|
data.tar.gz.sig
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: create_rails_mysql_db
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 19
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 2
|
9
|
-
-
|
10
|
-
version: 0.2.
|
9
|
+
- 2
|
10
|
+
version: 0.2.2
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Dmitry Biryukov
|
@@ -47,18 +47,20 @@ executables:
|
|
47
47
|
extensions: []
|
48
48
|
|
49
49
|
extra_rdoc_files:
|
50
|
+
- LICENSE
|
50
51
|
- README
|
51
52
|
- README.rdoc
|
52
53
|
- bin/create_rails_mysql_db
|
53
54
|
- lib/create_rails_mysql_db.rb
|
54
55
|
files:
|
56
|
+
- LICENSE
|
55
57
|
- Manifest
|
56
58
|
- README
|
57
59
|
- README.rdoc
|
58
60
|
- Rakefile
|
59
61
|
- bin/create_rails_mysql_db
|
60
|
-
- create_rails_mysql_db.gemspec
|
61
62
|
- lib/create_rails_mysql_db.rb
|
63
|
+
- create_rails_mysql_db.gemspec
|
62
64
|
has_rdoc: true
|
63
65
|
homepage: https://github.com/dmitryz/create_rails_mysql_db
|
64
66
|
licenses: []
|
metadata.gz.sig
CHANGED
Binary file
|