sqltestrunner 0.0.1 → 0.0.2

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.
@@ -0,0 +1,52 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ sqltestrunner (0.0.1)
5
+ rspec-expectations
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ coderay (1.0.8)
11
+ diff-lcs (1.2.1)
12
+ ffi (1.4.0)
13
+ guard (1.6.2)
14
+ listen (>= 0.6.0)
15
+ lumberjack (>= 1.0.2)
16
+ pry (>= 0.9.10)
17
+ terminal-table (>= 1.4.3)
18
+ thor (>= 0.14.6)
19
+ guard-rspec (2.4.0)
20
+ guard (>= 1.1)
21
+ rspec (~> 2.11)
22
+ listen (0.7.2)
23
+ lumberjack (1.0.2)
24
+ method_source (0.8.1)
25
+ pry (0.9.11.4)
26
+ coderay (~> 1.0.5)
27
+ method_source (~> 0.8)
28
+ slop (~> 3.4)
29
+ rb-inotify (0.8.8)
30
+ ffi (>= 0.5.0)
31
+ rspec (2.13.0)
32
+ rspec-core (~> 2.13.0)
33
+ rspec-expectations (~> 2.13.0)
34
+ rspec-mocks (~> 2.13.0)
35
+ rspec-core (2.13.1)
36
+ rspec-expectations (2.13.0)
37
+ diff-lcs (>= 1.1.3, < 2.0)
38
+ rspec-mocks (2.13.0)
39
+ slop (3.4.3)
40
+ sqlite3 (1.3.7)
41
+ terminal-table (1.4.5)
42
+ thor (0.16.0)
43
+
44
+ PLATFORMS
45
+ ruby
46
+
47
+ DEPENDENCIES
48
+ guard-rspec
49
+ rb-inotify (= 0.8.8)
50
+ rspec
51
+ sqlite3
52
+ sqltestrunner!
@@ -1,3 +1,3 @@
1
1
  module Sqltestrunner
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
@@ -15,7 +15,7 @@ Gem::Specification.new do |gem|
15
15
 
16
16
  }
17
17
 
18
- gem.files = `git ls-files`.split($/)
18
+ gem.files = Dir['**/*']
19
19
  gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
20
20
  gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
21
21
  gem.require_paths = ["lib"]
@@ -0,0 +1 @@
1
+
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sqltestrunner
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -99,23 +99,22 @@ executables:
99
99
  extensions: []
100
100
  extra_rdoc_files: []
101
101
  files:
102
- - .gitignore
103
- - .rspec
104
- - .ruby-gemset
105
- - .ruby-version
106
- - Gemfile
107
- - Guardfile
108
- - LICENSE.txt
109
- - README.md
110
- - Rakefile
111
- - bin/sqltestrunner
112
- - examples/creating_a_person_test.sql
102
+ - tmp/rspec_guard_result
113
103
  - lib/sql_test_runner.rb
114
- - lib/sql_test_runner/version.rb
115
104
  - lib/sqlite_connection.rb
116
- - spec/spec_helper.rb
105
+ - lib/sql_test_runner/version.rb
106
+ - examples/creating_a_person_test.sql
107
+ - Gemfile
108
+ - LICENSE.txt
117
109
  - spec/sql_test_runner_spec.rb
118
110
  - spec/sqlite_connection_spec.rb
111
+ - spec/spec_helper.rb
112
+ - Gemfile.lock
113
+ - Rakefile
114
+ - pkg/sqltestrunner-0.0.1.gem
115
+ - Guardfile
116
+ - README.md
117
+ - bin/sqltestrunner
119
118
  - sqltestrunner.gemspec
120
119
  homepage:
121
120
  licenses: []
@@ -143,6 +142,6 @@ specification_version: 3
143
142
  summary: aqltestrunner takes a _sqlt.rb file and runs the content as test Specifically
144
143
  it runs blocks of testcases ordered by 'stand' blocks.
145
144
  test_files:
146
- - spec/spec_helper.rb
147
145
  - spec/sql_test_runner_spec.rb
148
146
  - spec/sqlite_connection_spec.rb
147
+ - spec/spec_helper.rb
data/.gitignore DELETED
@@ -1,17 +0,0 @@
1
- *.gem
2
- *.rbc
3
- .bundle
4
- .config
5
- .yardoc
6
- Gemfile.lock
7
- InstalledFiles
8
- _yardoc
9
- coverage
10
- doc/
11
- lib/bundler/man
12
- pkg
13
- rdoc
14
- spec/reports
15
- test/tmp
16
- test/version_tmp
17
- tmp
data/.rspec DELETED
@@ -1,2 +0,0 @@
1
- --color
2
- --format progress
@@ -1 +0,0 @@
1
- cbs
@@ -1 +0,0 @@
1
- ruby-1.9.3-p327