farfugl 0.0.4 → 0.1.0
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 +4 -4
- data/README.md +2 -0
- data/farfugl.gemspec +2 -2
- data/lib/farfugl.rb +1 -1
- data/lib/{farfugl/railtie.rb → railtie.rb} +1 -1
- metadata +4 -4
- /data/lib/{farfugl/tasks/farfugl.rb → tasks.rb} +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7e7eae9a98201dbf54895a58854a6f9d7b61ceea
|
|
4
|
+
data.tar.gz: 243ee00b2b218d84720e2fff823e27165998c381
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7748bb323b3d5aa374747ea56ce97a3b5a05cb3032f096632d3a786bc7649d0612a8ef5c4be9e552eff4228df323c118197860e621189e9c61967ff529537dbc
|
|
7
|
+
data.tar.gz: 100449961c40d176268d11aa890917d1a4a9b982f7eb9cd2bc0f3096fbe137322b9516e9e041d3988bcf3ec1d89abc13309d4f6bc88f83c99a8f0f76ae9e9923
|
data/README.md
CHANGED
|
@@ -23,4 +23,6 @@ You can also add `gem 'farfugl'` to your Rails application's Gemfile and run
|
|
|
23
23
|
Please note that **Farfugl** is still under development and *may* not be
|
|
24
24
|
completely stable; always create backups of your database before using it.
|
|
25
25
|
|
|
26
|
+
Running **Farfugl** is simple:
|
|
27
|
+
|
|
26
28
|
rake farfugl
|
data/farfugl.gemspec
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'farfugl'
|
|
3
|
-
s.version = '0.0
|
|
4
|
-
s.date = '2014-01-
|
|
3
|
+
s.version = '0.1.0'
|
|
4
|
+
s.date = '2014-01-21'
|
|
5
5
|
s.summary = 'Run old Rails migrations without code dependence problems'
|
|
6
6
|
s.description = 'Run old Rails migrations without code dependence problems'
|
|
7
7
|
s.authors = ['Haukur Páll Hallvarðsson']
|
data/lib/farfugl.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: farfugl
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0
|
|
4
|
+
version: 0.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Haukur Páll Hallvarðsson
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-01-
|
|
11
|
+
date: 2014-01-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Run old Rails migrations without code dependence problems
|
|
14
14
|
email: hph@hph.is
|
|
@@ -20,9 +20,9 @@ files:
|
|
|
20
20
|
- README.md
|
|
21
21
|
- farfugl.gemspec
|
|
22
22
|
- lib/farfugl.rb
|
|
23
|
-
- lib/farfugl/railtie.rb
|
|
24
|
-
- lib/farfugl/tasks/farfugl.rb
|
|
25
23
|
- lib/git.rb
|
|
24
|
+
- lib/railtie.rb
|
|
25
|
+
- lib/tasks.rb
|
|
26
26
|
homepage: https://github.com/hph/farfugl
|
|
27
27
|
licenses:
|
|
28
28
|
- MIT
|
|
File without changes
|