dtf 0.3.2 → 0.3.3
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.
- data/.gitignore +0 -1
- data/.travis.yml +3 -2
- data/db/config.yml +25 -0
- data/lib/dtf/version.rb +1 -1
- metadata +3 -2
data/.gitignore
CHANGED
data/.travis.yml
CHANGED
@@ -5,10 +5,11 @@ rvm:
|
|
5
5
|
before_install:
|
6
6
|
- gem update bundler
|
7
7
|
before_script:
|
8
|
+
- RAILS_ENV='development' bundle exec gem list
|
8
9
|
- RAILS_ENV='development' bundle exec thor dtf_setup:config
|
9
10
|
- RAILS_ENV='development' bundle exec rake db:migrate
|
10
|
-
- RAILS_ENV='development' bundle exec
|
11
|
-
script: RAILS_ENV='
|
11
|
+
- RAILS_ENV='development' bundle exec rspec spec --format doc
|
12
|
+
script: RAILS_ENV='production' gem build dtf.gemspec
|
12
13
|
notifications:
|
13
14
|
irc:
|
14
15
|
channels:
|
data/db/config.yml
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
# SQLite version 3.x
|
2
|
+
# gem install sqlite3
|
3
|
+
#
|
4
|
+
# Ensure the SQLite 3 gem is defined in your Gemfile
|
5
|
+
# gem 'sqlite3'
|
6
|
+
development:
|
7
|
+
adapter: sqlite3
|
8
|
+
database: db/dtf_development.sqlite3
|
9
|
+
pool: 5
|
10
|
+
timeout: 5000
|
11
|
+
|
12
|
+
# Warning: The database defined as "test" will be erased and
|
13
|
+
# re-generated from your development database when you run "rake".
|
14
|
+
# Do not set this db to the same as development or production.
|
15
|
+
test:
|
16
|
+
adapter: sqlite3
|
17
|
+
database: db/dtf_test.sqlite3
|
18
|
+
pool: 5
|
19
|
+
timeout: 5000
|
20
|
+
|
21
|
+
production:
|
22
|
+
adapter: sqlite3
|
23
|
+
database: db/dtf_production.sqlite3
|
24
|
+
pool: 5
|
25
|
+
timeout: 5000
|
data/lib/dtf/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dtf
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.3
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-09-
|
12
|
+
date: 2012-09-28 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: thor
|
@@ -291,6 +291,7 @@ files:
|
|
291
291
|
- app/models/user.rb
|
292
292
|
- app/models/verification_suite.rb
|
293
293
|
- bin/dtf
|
294
|
+
- db/config.yml
|
294
295
|
- db/migrate/20120503050925_create_users.rb
|
295
296
|
- db/migrate/20120508000959_create_verification_suites.rb
|
296
297
|
- db/migrate/20120616203047_create_analysis_cases.rb
|