extort 0.2.1 → 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 064ce5fe8c21d7eaf004c332d18e83e5959e9734
4
- data.tar.gz: 2ea2c254ea410eb18555d7ddd4b303cbaa0fe471
3
+ metadata.gz: 14a45abf4cd47a5f7a2ae1ea3305c08fb938fbdd
4
+ data.tar.gz: b10557aa0ba9450254f4bd5e888c47e82c2a961e
5
5
  SHA512:
6
- metadata.gz: abc7b5964a6603a471d410f90c68e4a43340935bc798848f926657ea5f9ac163f34382f09c74d18693fc9e651deff90817f9f654f2267d7bf9e7bdb2df14d3e6
7
- data.tar.gz: f5ef110a4dd8bbc36fe94347f14f363505b7ff1e52440021a136f43c5025917479ea1b4e39dfa935e8f240f019570dcc08ebba60fa733f522837023ae18c0b20
6
+ metadata.gz: 2520d59d6ec38baa6ce73021b7ff885def0855889cef7b1a4db2f5b8aa6f9b5d7d8a0477feb92c55181a331567a0f44b4eeec684a346e6acebaa5b5e886a919a
7
+ data.tar.gz: fc52af33263a7dbb3caedb6685e433df4e0afb607da912f8cf2d1f15073cbd02948af2b725ae029e40a84b82ab873ce270151604d369620e911f156a1583dfe8
data/extort.gemspec CHANGED
@@ -8,9 +8,9 @@ Gem::Specification.new do |spec|
8
8
  spec.version = Extort::VERSION
9
9
  spec.authors = ["DK"]
10
10
  spec.email = ["dk@nutshell.nl"]
11
- spec.summary = %q{Extort adds migrations to common apps}
12
- spec.description = %q{Extort sets up Sequel migrations for Sinatra apps}
13
- spec.homepage = ""
11
+ spec.summary = %q{Extort adds migrations to Sinatra or any other rake based framework}
12
+ spec.description = %q{Extort sets up Sequel migrations for Rack frameworks}
13
+ spec.homepage = "http://github.com/amaniak/extort"
14
14
  spec.license = "MIT"
15
15
 
16
16
  spec.files = `git ls-files -z`.split("\x0")
@@ -1,3 +1,3 @@
1
1
  module Extort
2
- VERSION = "0.2.1"
2
+ VERSION = "0.2.2"
3
3
  end
data/test/Gemfile CHANGED
@@ -2,4 +2,5 @@ source :rubygems
2
2
 
3
3
  gem 'pg'
4
4
  gem 'pry'
5
+ gem 'ruby-prof'
5
6
  gem 'extort', path: '../'
data/test/Gemfile.lock CHANGED
@@ -14,6 +14,7 @@ GEM
14
14
  coderay (~> 1.1.0)
15
15
  method_source (~> 0.8.1)
16
16
  slop (~> 3.4)
17
+ ruby-prof (0.15.6)
17
18
  sequel (4.21.0)
18
19
  slop (3.6.0)
19
20
 
@@ -24,3 +25,4 @@ DEPENDENCIES
24
25
  extort!
25
26
  pg
26
27
  pry
28
+ ruby-prof
data/test/Rakefile CHANGED
@@ -1,10 +1,9 @@
1
1
  require 'rubygems'
2
2
  require 'bundler'
3
3
 
4
- Bundler.require :default
4
+ Bundler.setup
5
5
 
6
6
  require 'extort'
7
- require 'sequel'
8
7
 
9
8
  $DB = Sequel.connect("postgres://deploy:''@localhost/knot")
10
9
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: extort
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - DK
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-04-21 00:00:00.000000000 Z
11
+ date: 2015-04-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -66,7 +66,7 @@ dependencies:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
68
  version: 4.21.0
69
- description: Extort sets up Sequel migrations for Sinatra apps
69
+ description: Extort sets up Sequel migrations for Rack frameworks
70
70
  email:
71
71
  - dk@nutshell.nl
72
72
  executables: []
@@ -86,7 +86,7 @@ files:
86
86
  - test/Gemfile
87
87
  - test/Gemfile.lock
88
88
  - test/Rakefile
89
- homepage: ''
89
+ homepage: http://github.com/amaniak/extort
90
90
  licenses:
91
91
  - MIT
92
92
  metadata: {}
@@ -109,7 +109,7 @@ rubyforge_project:
109
109
  rubygems_version: 2.4.4
110
110
  signing_key:
111
111
  specification_version: 4
112
- summary: Extort adds migrations to common apps
112
+ summary: Extort adds migrations to Sinatra or any other rake based framework
113
113
  test_files:
114
114
  - test/Gemfile
115
115
  - test/Gemfile.lock