micro_migrations 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: 2ded1e7fba4556838dca41ad85edcb6bd0be678d
4
+ data.tar.gz: 3fcd214f664ac9895c8dbcc72238e682f862f19a
5
+ SHA512:
6
+ metadata.gz: 542ee758f9a21c5d4119fdf2bcfaee7eb062aa37df293616ea9628f8573dbb53c7ef549d7577e39f972fb09f2f9601f06b628c566e15a373bd9d05e615f34c4e
7
+ data.tar.gz: 06fa2b998f2c2f117a311a708beb6d230942797d0668fd2c496c5f5de5968717b53d9b2306a24e05ff0b9ea27ab4f381ca1e6af09b5c2986600bb88414d74983
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source "https://rubygems.org"
2
+
3
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT LICENSE
2
+
3
+ Copyright (c) Sven Fuchs <me@svenfuchs.com>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,6 @@
1
+ # micro_migrations
2
+
3
+ Minimal ActiveRecord standalone migrations.
4
+
5
+ Not as minimal as it can be in Rails 4, but we need this for Rails 3 and using
6
+ a GistGem (https://gist.github.com/svenfuchs/2087829) sometimes causes hassles.
data/Rakefile ADDED
@@ -0,0 +1,10 @@
1
+ require 'rake'
2
+ require 'rake/testtask'
3
+
4
+ Rake::TestTask.new do |t|
5
+ t.libs << 'lib'
6
+ t.pattern = 'test/**/*_test.rb'
7
+ t.verbose = false
8
+ end
9
+
10
+ task :default => :test
@@ -0,0 +1,12 @@
1
+ require 'rails'
2
+ require 'active_record/railtie'
3
+
4
+ Bundler.require
5
+
6
+ app = Class.new(Rails::Application)
7
+ app.config.active_support.deprecation = :log
8
+ app.load_tasks
9
+
10
+ Rake::Task['environment'].enhance do
11
+ app.initialize!
12
+ end
@@ -0,0 +1,3 @@
1
+ module MicroMigrations
2
+ VERSION = "0.0.1"
3
+ end
metadata ADDED
@@ -0,0 +1,49 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: micro_migrations
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Sven Fuchs
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-08-08 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Minimal ActiveRecord standalone migrations.
14
+ email:
15
+ - me@svenfuchs.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - lib/micro_migrations/version.rb
21
+ - lib/micro_migrations.rb
22
+ - Gemfile
23
+ - LICENSE
24
+ - Rakefile
25
+ - README.md
26
+ homepage: https://github.com//micro_migrations
27
+ licenses: []
28
+ metadata: {}
29
+ post_install_message:
30
+ rdoc_options: []
31
+ require_paths:
32
+ - lib
33
+ required_ruby_version: !ruby/object:Gem::Requirement
34
+ requirements:
35
+ - - '>='
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ required_rubygems_version: !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - '>='
41
+ - !ruby/object:Gem::Version
42
+ version: '0'
43
+ requirements: []
44
+ rubyforge_project: '[none]'
45
+ rubygems_version: 2.0.3
46
+ signing_key:
47
+ specification_version: 4
48
+ summary: Minimal ActiveRecord standalone migrations
49
+ test_files: []