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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7116238b0be5b5478c2cb4707ee16825647d60f5
4
- data.tar.gz: 1a1467abc1660f2a312a7f75c13937f6ec28779c
3
+ metadata.gz: 7e7eae9a98201dbf54895a58854a6f9d7b61ceea
4
+ data.tar.gz: 243ee00b2b218d84720e2fff823e27165998c381
5
5
  SHA512:
6
- metadata.gz: a5a7d72d4bdafe2b602acb77490af4a6fdd79752d427cbdd11384e065b42f164761342282ef14493e2760cb201621ad85e2cd70ca6baac00e599c255d1ecc093
7
- data.tar.gz: 3ae0dca5851be6c93e5ad335cf6adc212063fa7dea3f876a6d0f69472f8d9b604dcb795fb020f7f9686b04f729de9c416ecbe5f86cd13309afaa036af306b92f
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'
4
- s.date = '2014-01-20'
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
@@ -1,4 +1,4 @@
1
- require 'farfugl/railtie' if defined? Rails
1
+ require 'railtie' if defined? Rails
2
2
  require 'git'
3
3
 
4
4
  module Farfugl
@@ -1,5 +1,5 @@
1
1
  module Farfugl
2
2
  class Railtie < Rails::Railtie
3
- require_relative './tasks/farfugl.rb'
3
+ require 'tasks'
4
4
  end
5
5
  end
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
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-20 00:00:00.000000000 Z
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