dtf 0.3.2 → 0.3.3

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore CHANGED
@@ -16,7 +16,6 @@ pmip
16
16
  .DS_Store
17
17
  *.rbc
18
18
  .svn/
19
- /db/config.yml
20
19
  *.gem
21
20
  InstalledFiles
22
21
  Gemfile.lock
@@ -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 gem list
11
- script: RAILS_ENV='development' bundle exec rspec spec --format doc
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:
@@ -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
@@ -1,5 +1,5 @@
1
1
  # encoding: UTF-8
2
2
 
3
3
  module Dtf
4
- VERSION = "0.3.2"
4
+ VERSION = "0.3.3"
5
5
  end
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.2
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-26 00:00:00.000000000 Z
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