data_active 0.0.1
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 +35 -0
- data/.rvmrc +1 -0
- data/Gemfile +4 -0
- data/README.rdoc +275 -0
- data/Rakefile +2 -0
- data/data_active.gemspec +28 -0
- data/features/remove_records_missing_in_xml.feature +30 -0
- data/features/step_definitions/remove_records_missing_in_xml.rb +85 -0
- data/features/step_definitions/step_helper.rb +15 -0
- data/features/step_definitions/sync_books_with_xml.rb +224 -0
- data/features/step_definitions/update_database_with_xml.rb +158 -0
- data/features/step_definitions/web_steps.rb +211 -0
- data/features/support/env.rb +50 -0
- data/features/support/fixtures/fresh/book_prices.yml +6 -0
- data/features/support/fixtures/fresh/books.yml +7 -0
- data/features/support/fixtures/fresh/chapters.yml +35 -0
- data/features/support/fixtures/fresh/pages.yml +149 -0
- data/features/support/fixtures/no_matching_records/book_prices.yml +6 -0
- data/features/support/fixtures/no_matching_records/books.yml +7 -0
- data/features/support/fixtures/no_matching_records/chapters.yml +35 -0
- data/features/support/fixtures/no_matching_records/pages.yml +149 -0
- data/features/support/fixtures/without_chapters/books.yml +7 -0
- data/features/support/fixtures/without_one_to_one/books.yml +7 -0
- data/features/support/fixtures/without_one_to_one/chapters.yml +35 -0
- data/features/support/fixtures/without_one_to_one/pages.yml +149 -0
- data/features/support/fixtures/xml/books_changed.xml +173 -0
- data/features/support/fixtures/xml/books_fresh.xml +173 -0
- data/features/support/fixtures/xml/books_one_to_one_changed.xml +173 -0
- data/features/support/fixtures/xml/books_one_to_one_mismatch.xml +173 -0
- data/features/support/fixtures/xml/books_one_to_one_removed.xml +167 -0
- data/features/support/fixtures/xml/books_simple.xml +15 -0
- data/features/support/fixtures/xml/books_with_changed_chapters.xml +40 -0
- data/features/support/fixtures/xml/books_with_chapters.xml +45 -0
- data/features/support/fixtures/xml/books_with_many_one_to_one_records.xml +179 -0
- data/features/support/fixtures/xml/books_with_mismatched_chapters.xml +173 -0
- data/features/support/fixtures/xml/books_with_moved_chapters.xml +173 -0
- data/features/support/fixtures/xml/books_with_one_to_one.xml +167 -0
- data/features/support/fixtures/xml/books_with_removed_chapters.xml +113 -0
- data/features/support/fixtures/xml/books_without_chapters.xml +11 -0
- data/features/support/fixtures/xml/books_without_one_to_one.xml +167 -0
- data/features/support/fixtures/xml/ms_access/book.xml +201 -0
- data/features/support/fixtures/xml/ms_access/book.xsd +425 -0
- data/features/support/fixtures/xml/ms_access/books_changed.xml +158 -0
- data/features/support/fixtures/xml/ms_access/books_fresh.xml +173 -0
- data/features/support/fixtures/xml/ms_access/books_one_to_one_changed.xml +173 -0
- data/features/support/fixtures/xml/ms_access/books_one_to_one_mismatch.xml +173 -0
- data/features/support/fixtures/xml/ms_access/books_one_to_one_removed.xml +167 -0
- data/features/support/fixtures/xml/ms_access/books_simple.xml +15 -0
- data/features/support/fixtures/xml/ms_access/books_with_changed_chapters.xml +40 -0
- data/features/support/fixtures/xml/ms_access/books_with_chapters.xml +45 -0
- data/features/support/fixtures/xml/ms_access/books_with_many_one_to_one_records.xml +179 -0
- data/features/support/fixtures/xml/ms_access/books_with_mismatched_chapters.xml +173 -0
- data/features/support/fixtures/xml/ms_access/books_with_moved_chapters.xml +173 -0
- data/features/support/fixtures/xml/ms_access/books_with_one_to_one.xml +167 -0
- data/features/support/fixtures/xml/ms_access/books_with_removed_chapters.xml +113 -0
- data/features/support/fixtures/xml/ms_access/books_without_chapters.xml +11 -0
- data/features/support/fixtures/xml/ms_access/books_without_one_to_one.xml +167 -0
- data/features/support/paths.rb +33 -0
- data/features/support/selectors.rb +39 -0
- data/features/sync_database_with_xml.feature +34 -0
- data/features/sync_one_to_many.feature +34 -0
- data/features/sync_one_to_one.feature +33 -0
- data/features/update_database_with_xml.feature +30 -0
- data/lib/data_active.rb +309 -0
- data/lib/data_active/version.rb +3 -0
- data/test_apps/book_store_rails_31x/.gitignore +15 -0
- data/test_apps/book_store_rails_31x/.rvmrc +1 -0
- data/test_apps/book_store_rails_31x/Gemfile +53 -0
- data/test_apps/book_store_rails_31x/README +261 -0
- data/test_apps/book_store_rails_31x/Rakefile +7 -0
- data/test_apps/book_store_rails_31x/app/assets/images/rails.png +0 -0
- data/test_apps/book_store_rails_31x/app/assets/javascripts/application.js +9 -0
- data/test_apps/book_store_rails_31x/app/assets/stylesheets/application.css +7 -0
- data/test_apps/book_store_rails_31x/app/controllers/application_controller.rb +3 -0
- data/test_apps/book_store_rails_31x/app/helpers/application_helper.rb +2 -0
- data/test_apps/book_store_rails_31x/app/mailers/.gitkeep +0 -0
- data/test_apps/book_store_rails_31x/app/models/.gitkeep +0 -0
- data/test_apps/book_store_rails_31x/app/models/book.rb +4 -0
- data/test_apps/book_store_rails_31x/app/models/book_price.rb +3 -0
- data/test_apps/book_store_rails_31x/app/models/chapter.rb +4 -0
- data/test_apps/book_store_rails_31x/app/models/page.rb +3 -0
- data/test_apps/book_store_rails_31x/app/views/layouts/application.html.erb +14 -0
- data/test_apps/book_store_rails_31x/config.ru +4 -0
- data/test_apps/book_store_rails_31x/config/application.rb +48 -0
- data/test_apps/book_store_rails_31x/config/boot.rb +6 -0
- data/test_apps/book_store_rails_31x/config/database.yml +28 -0
- data/test_apps/book_store_rails_31x/config/environment.rb +5 -0
- data/test_apps/book_store_rails_31x/config/environments/development.rb +30 -0
- data/test_apps/book_store_rails_31x/config/environments/production.rb +60 -0
- data/test_apps/book_store_rails_31x/config/environments/test.rb +39 -0
- data/test_apps/book_store_rails_31x/config/initializers/backtrace_silencers.rb +7 -0
- data/test_apps/book_store_rails_31x/config/initializers/inflections.rb +10 -0
- data/test_apps/book_store_rails_31x/config/initializers/mime_types.rb +5 -0
- data/test_apps/book_store_rails_31x/config/initializers/secret_token.rb +7 -0
- data/test_apps/book_store_rails_31x/config/initializers/session_store.rb +8 -0
- data/test_apps/book_store_rails_31x/config/initializers/wrap_parameters.rb +14 -0
- data/test_apps/book_store_rails_31x/config/locales/en.yml +5 -0
- data/test_apps/book_store_rails_31x/config/routes.rb +58 -0
- data/test_apps/book_store_rails_31x/db/migrate/20120422053943_create_books.rb +9 -0
- data/test_apps/book_store_rails_31x/db/migrate/20120422054008_create_chapters.rb +11 -0
- data/test_apps/book_store_rails_31x/db/migrate/20120422054033_create_pages.rb +11 -0
- data/test_apps/book_store_rails_31x/db/migrate/20120422054123_create_book_prices.rb +12 -0
- data/test_apps/book_store_rails_31x/db/schema.rb +47 -0
- data/test_apps/book_store_rails_31x/db/seeds.rb +7 -0
- data/test_apps/book_store_rails_31x/lib/assets/.gitkeep +0 -0
- data/test_apps/book_store_rails_31x/lib/tasks/.gitkeep +0 -0
- data/test_apps/book_store_rails_31x/log/.gitkeep +0 -0
- data/test_apps/book_store_rails_31x/public/404.html +26 -0
- data/test_apps/book_store_rails_31x/public/422.html +26 -0
- data/test_apps/book_store_rails_31x/public/500.html +26 -0
- data/test_apps/book_store_rails_31x/public/favicon.ico +0 -0
- data/test_apps/book_store_rails_31x/public/index.html +241 -0
- data/test_apps/book_store_rails_31x/public/robots.txt +5 -0
- data/test_apps/book_store_rails_31x/script/rails +6 -0
- data/test_apps/book_store_rails_31x/test/fixtures/.gitkeep +0 -0
- data/test_apps/book_store_rails_31x/test/functional/.gitkeep +0 -0
- data/test_apps/book_store_rails_31x/test/integration/.gitkeep +0 -0
- data/test_apps/book_store_rails_31x/test/performance/browsing_test.rb +12 -0
- data/test_apps/book_store_rails_31x/test/test_helper.rb +13 -0
- data/test_apps/book_store_rails_31x/test/unit/.gitkeep +0 -0
- data/test_apps/book_store_rails_31x/vendor/assets/stylesheets/.gitkeep +0 -0
- data/test_apps/book_store_rails_31x/vendor/plugins/.gitkeep +0 -0
- data/test_apps/book_store_rails_32x/.gitignore +15 -0
- data/test_apps/book_store_rails_32x/.rvmrc +1 -0
- data/test_apps/book_store_rails_32x/Gemfile +47 -0
- data/test_apps/book_store_rails_32x/README.rdoc +261 -0
- data/test_apps/book_store_rails_32x/Rakefile +14 -0
- data/test_apps/book_store_rails_32x/app/assets/images/rails.png +0 -0
- data/test_apps/book_store_rails_32x/app/assets/javascripts/application.js +15 -0
- data/test_apps/book_store_rails_32x/app/assets/stylesheets/application.css +13 -0
- data/test_apps/book_store_rails_32x/app/controllers/application_controller.rb +3 -0
- data/test_apps/book_store_rails_32x/app/helpers/application_helper.rb +2 -0
- data/test_apps/book_store_rails_32x/app/mailers/.gitkeep +0 -0
- data/test_apps/book_store_rails_32x/app/models/.gitkeep +0 -0
- data/test_apps/book_store_rails_32x/app/models/book.rb +4 -0
- data/test_apps/book_store_rails_32x/app/models/book_price.rb +3 -0
- data/test_apps/book_store_rails_32x/app/models/chapter.rb +4 -0
- data/test_apps/book_store_rails_32x/app/models/page.rb +3 -0
- data/test_apps/book_store_rails_32x/app/views/layouts/application.html.erb +14 -0
- data/test_apps/book_store_rails_32x/config.ru +4 -0
- data/test_apps/book_store_rails_32x/config/application.rb +59 -0
- data/test_apps/book_store_rails_32x/config/boot.rb +6 -0
- data/test_apps/book_store_rails_32x/config/cucumber.yml +8 -0
- data/test_apps/book_store_rails_32x/config/database.yml +28 -0
- data/test_apps/book_store_rails_32x/config/environment.rb +5 -0
- data/test_apps/book_store_rails_32x/config/environments/development.rb +37 -0
- data/test_apps/book_store_rails_32x/config/environments/production.rb +67 -0
- data/test_apps/book_store_rails_32x/config/environments/test.rb +37 -0
- data/test_apps/book_store_rails_32x/config/initializers/backtrace_silencers.rb +7 -0
- data/test_apps/book_store_rails_32x/config/initializers/inflections.rb +15 -0
- data/test_apps/book_store_rails_32x/config/initializers/mime_types.rb +5 -0
- data/test_apps/book_store_rails_32x/config/initializers/secret_token.rb +7 -0
- data/test_apps/book_store_rails_32x/config/initializers/session_store.rb +8 -0
- data/test_apps/book_store_rails_32x/config/initializers/wrap_parameters.rb +14 -0
- data/test_apps/book_store_rails_32x/config/locales/en.yml +5 -0
- data/test_apps/book_store_rails_32x/config/routes.rb +58 -0
- data/test_apps/book_store_rails_32x/db/migrate/20120422043253_create_books.rb +9 -0
- data/test_apps/book_store_rails_32x/db/migrate/20120422043434_create_chapters.rb +11 -0
- data/test_apps/book_store_rails_32x/db/migrate/20120422043553_create_pages.rb +11 -0
- data/test_apps/book_store_rails_32x/db/migrate/20120422043700_create_book_prices.rb +12 -0
- data/test_apps/book_store_rails_32x/db/schema.rb +47 -0
- data/test_apps/book_store_rails_32x/db/seeds.rb +7 -0
- data/test_apps/book_store_rails_32x/lib/assets/.gitkeep +0 -0
- data/test_apps/book_store_rails_32x/lib/tasks/.gitkeep +0 -0
- data/test_apps/book_store_rails_32x/lib/tasks/cucumber.rake +65 -0
- data/test_apps/book_store_rails_32x/log/.gitkeep +0 -0
- data/test_apps/book_store_rails_32x/public/404.html +26 -0
- data/test_apps/book_store_rails_32x/public/422.html +26 -0
- data/test_apps/book_store_rails_32x/public/500.html +25 -0
- data/test_apps/book_store_rails_32x/public/favicon.ico +0 -0
- data/test_apps/book_store_rails_32x/public/index.html +241 -0
- data/test_apps/book_store_rails_32x/public/robots.txt +5 -0
- data/test_apps/book_store_rails_32x/script/cucumber +10 -0
- data/test_apps/book_store_rails_32x/script/rails +6 -0
- data/test_apps/book_store_rails_32x/test/fixtures/.gitkeep +0 -0
- data/test_apps/book_store_rails_32x/test/functional/.gitkeep +0 -0
- data/test_apps/book_store_rails_32x/test/integration/.gitkeep +0 -0
- data/test_apps/book_store_rails_32x/test/performance/browsing_test.rb +12 -0
- data/test_apps/book_store_rails_32x/test/test_helper.rb +13 -0
- data/test_apps/book_store_rails_32x/test/unit/.gitkeep +0 -0
- data/test_apps/book_store_rails_32x/vendor/assets/javascripts/.gitkeep +0 -0
- data/test_apps/book_store_rails_32x/vendor/assets/stylesheets/.gitkeep +0 -0
- data/test_apps/book_store_rails_32x/vendor/plugins/.gitkeep +0 -0
- metadata +452 -0
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
|
|
3
|
+
vendored_cucumber_bin = Dir["#{File.dirname(__FILE__)}/../vendor/{gems,plugins}/cucumber*/bin/cucumber"].first
|
|
4
|
+
if vendored_cucumber_bin
|
|
5
|
+
load File.expand_path(vendored_cucumber_bin)
|
|
6
|
+
else
|
|
7
|
+
require 'rubygems' unless ENV['NO_RUBYGEMS']
|
|
8
|
+
require 'cucumber'
|
|
9
|
+
load Cucumber::BINARY
|
|
10
|
+
end
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
# This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
|
|
3
|
+
|
|
4
|
+
APP_PATH = File.expand_path('../../config/application', __FILE__)
|
|
5
|
+
require File.expand_path('../../config/boot', __FILE__)
|
|
6
|
+
require 'rails/commands'
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
require 'test_helper'
|
|
2
|
+
require 'rails/performance_test_help'
|
|
3
|
+
|
|
4
|
+
class BrowsingTest < ActionDispatch::PerformanceTest
|
|
5
|
+
# Refer to the documentation for all available options
|
|
6
|
+
# self.profile_options = { :runs => 5, :metrics => [:wall_time, :memory]
|
|
7
|
+
# :output => 'tmp/performance', :formats => [:flat] }
|
|
8
|
+
|
|
9
|
+
def test_homepage
|
|
10
|
+
get '/'
|
|
11
|
+
end
|
|
12
|
+
end
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
ENV["RAILS_ENV"] = "test"
|
|
2
|
+
require File.expand_path('../../config/environment', __FILE__)
|
|
3
|
+
require 'rails/test_help'
|
|
4
|
+
|
|
5
|
+
class ActiveSupport::TestCase
|
|
6
|
+
# Setup all fixtures in test/fixtures/*.(yml|csv) for all tests in alphabetical order.
|
|
7
|
+
#
|
|
8
|
+
# Note: You'll currently still have to declare fixtures explicitly in integration tests
|
|
9
|
+
# -- they do not yet inherit this setting
|
|
10
|
+
fixtures :all
|
|
11
|
+
|
|
12
|
+
# Add more helper methods to be used by all tests here...
|
|
13
|
+
end
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
metadata
ADDED
|
@@ -0,0 +1,452 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: data_active
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
prerelease:
|
|
6
|
+
platform: ruby
|
|
7
|
+
authors:
|
|
8
|
+
- Michael Harrison
|
|
9
|
+
autorequire:
|
|
10
|
+
bindir: bin
|
|
11
|
+
cert_chain: []
|
|
12
|
+
date: 2012-07-12 00:00:00.000000000 Z
|
|
13
|
+
dependencies:
|
|
14
|
+
- !ruby/object:Gem::Dependency
|
|
15
|
+
name: nokogiri
|
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
|
17
|
+
none: false
|
|
18
|
+
requirements:
|
|
19
|
+
- - ! '>='
|
|
20
|
+
- !ruby/object:Gem::Version
|
|
21
|
+
version: '0'
|
|
22
|
+
type: :runtime
|
|
23
|
+
prerelease: false
|
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
+
none: false
|
|
26
|
+
requirements:
|
|
27
|
+
- - ! '>='
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
version: '0'
|
|
30
|
+
- !ruby/object:Gem::Dependency
|
|
31
|
+
name: rails
|
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
|
33
|
+
none: false
|
|
34
|
+
requirements:
|
|
35
|
+
- - ! '>='
|
|
36
|
+
- !ruby/object:Gem::Version
|
|
37
|
+
version: '0'
|
|
38
|
+
type: :runtime
|
|
39
|
+
prerelease: false
|
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
41
|
+
none: false
|
|
42
|
+
requirements:
|
|
43
|
+
- - ! '>='
|
|
44
|
+
- !ruby/object:Gem::Version
|
|
45
|
+
version: '0'
|
|
46
|
+
- !ruby/object:Gem::Dependency
|
|
47
|
+
name: rake
|
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
|
49
|
+
none: false
|
|
50
|
+
requirements:
|
|
51
|
+
- - ! '>='
|
|
52
|
+
- !ruby/object:Gem::Version
|
|
53
|
+
version: '0'
|
|
54
|
+
type: :development
|
|
55
|
+
prerelease: false
|
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
57
|
+
none: false
|
|
58
|
+
requirements:
|
|
59
|
+
- - ! '>='
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: '0'
|
|
62
|
+
description: Data Active is an extension of ActiveRecord that provides features to
|
|
63
|
+
synchronise an ActiveRecord Model with a supplied XML document
|
|
64
|
+
email:
|
|
65
|
+
- michael@focalpause.com
|
|
66
|
+
executables: []
|
|
67
|
+
extensions: []
|
|
68
|
+
extra_rdoc_files: []
|
|
69
|
+
files:
|
|
70
|
+
- .gitignore
|
|
71
|
+
- .rvmrc
|
|
72
|
+
- Gemfile
|
|
73
|
+
- README.rdoc
|
|
74
|
+
- Rakefile
|
|
75
|
+
- data_active.gemspec
|
|
76
|
+
- features/remove_records_missing_in_xml.feature
|
|
77
|
+
- features/step_definitions/remove_records_missing_in_xml.rb
|
|
78
|
+
- features/step_definitions/step_helper.rb
|
|
79
|
+
- features/step_definitions/sync_books_with_xml.rb
|
|
80
|
+
- features/step_definitions/update_database_with_xml.rb
|
|
81
|
+
- features/step_definitions/web_steps.rb
|
|
82
|
+
- features/support/env.rb
|
|
83
|
+
- features/support/fixtures/fresh/book_prices.yml
|
|
84
|
+
- features/support/fixtures/fresh/books.yml
|
|
85
|
+
- features/support/fixtures/fresh/chapters.yml
|
|
86
|
+
- features/support/fixtures/fresh/pages.yml
|
|
87
|
+
- features/support/fixtures/no_matching_records/book_prices.yml
|
|
88
|
+
- features/support/fixtures/no_matching_records/books.yml
|
|
89
|
+
- features/support/fixtures/no_matching_records/chapters.yml
|
|
90
|
+
- features/support/fixtures/no_matching_records/pages.yml
|
|
91
|
+
- features/support/fixtures/without_chapters/books.yml
|
|
92
|
+
- features/support/fixtures/without_one_to_one/books.yml
|
|
93
|
+
- features/support/fixtures/without_one_to_one/chapters.yml
|
|
94
|
+
- features/support/fixtures/without_one_to_one/pages.yml
|
|
95
|
+
- features/support/fixtures/xml/books_changed.xml
|
|
96
|
+
- features/support/fixtures/xml/books_fresh.xml
|
|
97
|
+
- features/support/fixtures/xml/books_one_to_one_changed.xml
|
|
98
|
+
- features/support/fixtures/xml/books_one_to_one_mismatch.xml
|
|
99
|
+
- features/support/fixtures/xml/books_one_to_one_removed.xml
|
|
100
|
+
- features/support/fixtures/xml/books_simple.xml
|
|
101
|
+
- features/support/fixtures/xml/books_with_changed_chapters.xml
|
|
102
|
+
- features/support/fixtures/xml/books_with_chapters.xml
|
|
103
|
+
- features/support/fixtures/xml/books_with_many_one_to_one_records.xml
|
|
104
|
+
- features/support/fixtures/xml/books_with_mismatched_chapters.xml
|
|
105
|
+
- features/support/fixtures/xml/books_with_moved_chapters.xml
|
|
106
|
+
- features/support/fixtures/xml/books_with_one_to_one.xml
|
|
107
|
+
- features/support/fixtures/xml/books_with_removed_chapters.xml
|
|
108
|
+
- features/support/fixtures/xml/books_without_chapters.xml
|
|
109
|
+
- features/support/fixtures/xml/books_without_one_to_one.xml
|
|
110
|
+
- features/support/fixtures/xml/ms_access/book.xml
|
|
111
|
+
- features/support/fixtures/xml/ms_access/book.xsd
|
|
112
|
+
- features/support/fixtures/xml/ms_access/books_changed.xml
|
|
113
|
+
- features/support/fixtures/xml/ms_access/books_fresh.xml
|
|
114
|
+
- features/support/fixtures/xml/ms_access/books_one_to_one_changed.xml
|
|
115
|
+
- features/support/fixtures/xml/ms_access/books_one_to_one_mismatch.xml
|
|
116
|
+
- features/support/fixtures/xml/ms_access/books_one_to_one_removed.xml
|
|
117
|
+
- features/support/fixtures/xml/ms_access/books_simple.xml
|
|
118
|
+
- features/support/fixtures/xml/ms_access/books_with_changed_chapters.xml
|
|
119
|
+
- features/support/fixtures/xml/ms_access/books_with_chapters.xml
|
|
120
|
+
- features/support/fixtures/xml/ms_access/books_with_many_one_to_one_records.xml
|
|
121
|
+
- features/support/fixtures/xml/ms_access/books_with_mismatched_chapters.xml
|
|
122
|
+
- features/support/fixtures/xml/ms_access/books_with_moved_chapters.xml
|
|
123
|
+
- features/support/fixtures/xml/ms_access/books_with_one_to_one.xml
|
|
124
|
+
- features/support/fixtures/xml/ms_access/books_with_removed_chapters.xml
|
|
125
|
+
- features/support/fixtures/xml/ms_access/books_without_chapters.xml
|
|
126
|
+
- features/support/fixtures/xml/ms_access/books_without_one_to_one.xml
|
|
127
|
+
- features/support/paths.rb
|
|
128
|
+
- features/support/selectors.rb
|
|
129
|
+
- features/sync_database_with_xml.feature
|
|
130
|
+
- features/sync_one_to_many.feature
|
|
131
|
+
- features/sync_one_to_one.feature
|
|
132
|
+
- features/update_database_with_xml.feature
|
|
133
|
+
- lib/data_active.rb
|
|
134
|
+
- lib/data_active/version.rb
|
|
135
|
+
- test_apps/book_store_rails_31x/.gitignore
|
|
136
|
+
- test_apps/book_store_rails_31x/.rvmrc
|
|
137
|
+
- test_apps/book_store_rails_31x/Gemfile
|
|
138
|
+
- test_apps/book_store_rails_31x/README
|
|
139
|
+
- test_apps/book_store_rails_31x/Rakefile
|
|
140
|
+
- test_apps/book_store_rails_31x/app/assets/images/rails.png
|
|
141
|
+
- test_apps/book_store_rails_31x/app/assets/javascripts/application.js
|
|
142
|
+
- test_apps/book_store_rails_31x/app/assets/stylesheets/application.css
|
|
143
|
+
- test_apps/book_store_rails_31x/app/controllers/application_controller.rb
|
|
144
|
+
- test_apps/book_store_rails_31x/app/helpers/application_helper.rb
|
|
145
|
+
- test_apps/book_store_rails_31x/app/mailers/.gitkeep
|
|
146
|
+
- test_apps/book_store_rails_31x/app/models/.gitkeep
|
|
147
|
+
- test_apps/book_store_rails_31x/app/models/book.rb
|
|
148
|
+
- test_apps/book_store_rails_31x/app/models/book_price.rb
|
|
149
|
+
- test_apps/book_store_rails_31x/app/models/chapter.rb
|
|
150
|
+
- test_apps/book_store_rails_31x/app/models/page.rb
|
|
151
|
+
- test_apps/book_store_rails_31x/app/views/layouts/application.html.erb
|
|
152
|
+
- test_apps/book_store_rails_31x/config.ru
|
|
153
|
+
- test_apps/book_store_rails_31x/config/application.rb
|
|
154
|
+
- test_apps/book_store_rails_31x/config/boot.rb
|
|
155
|
+
- test_apps/book_store_rails_31x/config/database.yml
|
|
156
|
+
- test_apps/book_store_rails_31x/config/environment.rb
|
|
157
|
+
- test_apps/book_store_rails_31x/config/environments/development.rb
|
|
158
|
+
- test_apps/book_store_rails_31x/config/environments/production.rb
|
|
159
|
+
- test_apps/book_store_rails_31x/config/environments/test.rb
|
|
160
|
+
- test_apps/book_store_rails_31x/config/initializers/backtrace_silencers.rb
|
|
161
|
+
- test_apps/book_store_rails_31x/config/initializers/inflections.rb
|
|
162
|
+
- test_apps/book_store_rails_31x/config/initializers/mime_types.rb
|
|
163
|
+
- test_apps/book_store_rails_31x/config/initializers/secret_token.rb
|
|
164
|
+
- test_apps/book_store_rails_31x/config/initializers/session_store.rb
|
|
165
|
+
- test_apps/book_store_rails_31x/config/initializers/wrap_parameters.rb
|
|
166
|
+
- test_apps/book_store_rails_31x/config/locales/en.yml
|
|
167
|
+
- test_apps/book_store_rails_31x/config/routes.rb
|
|
168
|
+
- test_apps/book_store_rails_31x/db/migrate/20120422053943_create_books.rb
|
|
169
|
+
- test_apps/book_store_rails_31x/db/migrate/20120422054008_create_chapters.rb
|
|
170
|
+
- test_apps/book_store_rails_31x/db/migrate/20120422054033_create_pages.rb
|
|
171
|
+
- test_apps/book_store_rails_31x/db/migrate/20120422054123_create_book_prices.rb
|
|
172
|
+
- test_apps/book_store_rails_31x/db/schema.rb
|
|
173
|
+
- test_apps/book_store_rails_31x/db/seeds.rb
|
|
174
|
+
- test_apps/book_store_rails_31x/lib/assets/.gitkeep
|
|
175
|
+
- test_apps/book_store_rails_31x/lib/tasks/.gitkeep
|
|
176
|
+
- test_apps/book_store_rails_31x/log/.gitkeep
|
|
177
|
+
- test_apps/book_store_rails_31x/public/404.html
|
|
178
|
+
- test_apps/book_store_rails_31x/public/422.html
|
|
179
|
+
- test_apps/book_store_rails_31x/public/500.html
|
|
180
|
+
- test_apps/book_store_rails_31x/public/favicon.ico
|
|
181
|
+
- test_apps/book_store_rails_31x/public/index.html
|
|
182
|
+
- test_apps/book_store_rails_31x/public/robots.txt
|
|
183
|
+
- test_apps/book_store_rails_31x/script/rails
|
|
184
|
+
- test_apps/book_store_rails_31x/test/fixtures/.gitkeep
|
|
185
|
+
- test_apps/book_store_rails_31x/test/functional/.gitkeep
|
|
186
|
+
- test_apps/book_store_rails_31x/test/integration/.gitkeep
|
|
187
|
+
- test_apps/book_store_rails_31x/test/performance/browsing_test.rb
|
|
188
|
+
- test_apps/book_store_rails_31x/test/test_helper.rb
|
|
189
|
+
- test_apps/book_store_rails_31x/test/unit/.gitkeep
|
|
190
|
+
- test_apps/book_store_rails_31x/vendor/assets/stylesheets/.gitkeep
|
|
191
|
+
- test_apps/book_store_rails_31x/vendor/plugins/.gitkeep
|
|
192
|
+
- test_apps/book_store_rails_32x/.gitignore
|
|
193
|
+
- test_apps/book_store_rails_32x/.rvmrc
|
|
194
|
+
- test_apps/book_store_rails_32x/Gemfile
|
|
195
|
+
- test_apps/book_store_rails_32x/README.rdoc
|
|
196
|
+
- test_apps/book_store_rails_32x/Rakefile
|
|
197
|
+
- test_apps/book_store_rails_32x/app/assets/images/rails.png
|
|
198
|
+
- test_apps/book_store_rails_32x/app/assets/javascripts/application.js
|
|
199
|
+
- test_apps/book_store_rails_32x/app/assets/stylesheets/application.css
|
|
200
|
+
- test_apps/book_store_rails_32x/app/controllers/application_controller.rb
|
|
201
|
+
- test_apps/book_store_rails_32x/app/helpers/application_helper.rb
|
|
202
|
+
- test_apps/book_store_rails_32x/app/mailers/.gitkeep
|
|
203
|
+
- test_apps/book_store_rails_32x/app/models/.gitkeep
|
|
204
|
+
- test_apps/book_store_rails_32x/app/models/book.rb
|
|
205
|
+
- test_apps/book_store_rails_32x/app/models/book_price.rb
|
|
206
|
+
- test_apps/book_store_rails_32x/app/models/chapter.rb
|
|
207
|
+
- test_apps/book_store_rails_32x/app/models/page.rb
|
|
208
|
+
- test_apps/book_store_rails_32x/app/views/layouts/application.html.erb
|
|
209
|
+
- test_apps/book_store_rails_32x/config.ru
|
|
210
|
+
- test_apps/book_store_rails_32x/config/application.rb
|
|
211
|
+
- test_apps/book_store_rails_32x/config/boot.rb
|
|
212
|
+
- test_apps/book_store_rails_32x/config/cucumber.yml
|
|
213
|
+
- test_apps/book_store_rails_32x/config/database.yml
|
|
214
|
+
- test_apps/book_store_rails_32x/config/environment.rb
|
|
215
|
+
- test_apps/book_store_rails_32x/config/environments/development.rb
|
|
216
|
+
- test_apps/book_store_rails_32x/config/environments/production.rb
|
|
217
|
+
- test_apps/book_store_rails_32x/config/environments/test.rb
|
|
218
|
+
- test_apps/book_store_rails_32x/config/initializers/backtrace_silencers.rb
|
|
219
|
+
- test_apps/book_store_rails_32x/config/initializers/inflections.rb
|
|
220
|
+
- test_apps/book_store_rails_32x/config/initializers/mime_types.rb
|
|
221
|
+
- test_apps/book_store_rails_32x/config/initializers/secret_token.rb
|
|
222
|
+
- test_apps/book_store_rails_32x/config/initializers/session_store.rb
|
|
223
|
+
- test_apps/book_store_rails_32x/config/initializers/wrap_parameters.rb
|
|
224
|
+
- test_apps/book_store_rails_32x/config/locales/en.yml
|
|
225
|
+
- test_apps/book_store_rails_32x/config/routes.rb
|
|
226
|
+
- test_apps/book_store_rails_32x/db/migrate/20120422043253_create_books.rb
|
|
227
|
+
- test_apps/book_store_rails_32x/db/migrate/20120422043434_create_chapters.rb
|
|
228
|
+
- test_apps/book_store_rails_32x/db/migrate/20120422043553_create_pages.rb
|
|
229
|
+
- test_apps/book_store_rails_32x/db/migrate/20120422043700_create_book_prices.rb
|
|
230
|
+
- test_apps/book_store_rails_32x/db/schema.rb
|
|
231
|
+
- test_apps/book_store_rails_32x/db/seeds.rb
|
|
232
|
+
- test_apps/book_store_rails_32x/lib/assets/.gitkeep
|
|
233
|
+
- test_apps/book_store_rails_32x/lib/tasks/.gitkeep
|
|
234
|
+
- test_apps/book_store_rails_32x/lib/tasks/cucumber.rake
|
|
235
|
+
- test_apps/book_store_rails_32x/log/.gitkeep
|
|
236
|
+
- test_apps/book_store_rails_32x/public/404.html
|
|
237
|
+
- test_apps/book_store_rails_32x/public/422.html
|
|
238
|
+
- test_apps/book_store_rails_32x/public/500.html
|
|
239
|
+
- test_apps/book_store_rails_32x/public/favicon.ico
|
|
240
|
+
- test_apps/book_store_rails_32x/public/index.html
|
|
241
|
+
- test_apps/book_store_rails_32x/public/robots.txt
|
|
242
|
+
- test_apps/book_store_rails_32x/script/cucumber
|
|
243
|
+
- test_apps/book_store_rails_32x/script/rails
|
|
244
|
+
- test_apps/book_store_rails_32x/test/fixtures/.gitkeep
|
|
245
|
+
- test_apps/book_store_rails_32x/test/functional/.gitkeep
|
|
246
|
+
- test_apps/book_store_rails_32x/test/integration/.gitkeep
|
|
247
|
+
- test_apps/book_store_rails_32x/test/performance/browsing_test.rb
|
|
248
|
+
- test_apps/book_store_rails_32x/test/test_helper.rb
|
|
249
|
+
- test_apps/book_store_rails_32x/test/unit/.gitkeep
|
|
250
|
+
- test_apps/book_store_rails_32x/vendor/assets/javascripts/.gitkeep
|
|
251
|
+
- test_apps/book_store_rails_32x/vendor/assets/stylesheets/.gitkeep
|
|
252
|
+
- test_apps/book_store_rails_32x/vendor/plugins/.gitkeep
|
|
253
|
+
homepage: https://github.com/michael-harrison/data_active
|
|
254
|
+
licenses: []
|
|
255
|
+
post_install_message:
|
|
256
|
+
rdoc_options: []
|
|
257
|
+
require_paths:
|
|
258
|
+
- lib
|
|
259
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
260
|
+
none: false
|
|
261
|
+
requirements:
|
|
262
|
+
- - ! '>='
|
|
263
|
+
- !ruby/object:Gem::Version
|
|
264
|
+
version: '0'
|
|
265
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
266
|
+
none: false
|
|
267
|
+
requirements:
|
|
268
|
+
- - ! '>='
|
|
269
|
+
- !ruby/object:Gem::Version
|
|
270
|
+
version: '0'
|
|
271
|
+
requirements: []
|
|
272
|
+
rubyforge_project: data_active
|
|
273
|
+
rubygems_version: 1.8.22
|
|
274
|
+
signing_key:
|
|
275
|
+
specification_version: 3
|
|
276
|
+
summary: data_active 0.0.1
|
|
277
|
+
test_files:
|
|
278
|
+
- features/remove_records_missing_in_xml.feature
|
|
279
|
+
- features/step_definitions/remove_records_missing_in_xml.rb
|
|
280
|
+
- features/step_definitions/step_helper.rb
|
|
281
|
+
- features/step_definitions/sync_books_with_xml.rb
|
|
282
|
+
- features/step_definitions/update_database_with_xml.rb
|
|
283
|
+
- features/step_definitions/web_steps.rb
|
|
284
|
+
- features/support/env.rb
|
|
285
|
+
- features/support/fixtures/fresh/book_prices.yml
|
|
286
|
+
- features/support/fixtures/fresh/books.yml
|
|
287
|
+
- features/support/fixtures/fresh/chapters.yml
|
|
288
|
+
- features/support/fixtures/fresh/pages.yml
|
|
289
|
+
- features/support/fixtures/no_matching_records/book_prices.yml
|
|
290
|
+
- features/support/fixtures/no_matching_records/books.yml
|
|
291
|
+
- features/support/fixtures/no_matching_records/chapters.yml
|
|
292
|
+
- features/support/fixtures/no_matching_records/pages.yml
|
|
293
|
+
- features/support/fixtures/without_chapters/books.yml
|
|
294
|
+
- features/support/fixtures/without_one_to_one/books.yml
|
|
295
|
+
- features/support/fixtures/without_one_to_one/chapters.yml
|
|
296
|
+
- features/support/fixtures/without_one_to_one/pages.yml
|
|
297
|
+
- features/support/fixtures/xml/books_changed.xml
|
|
298
|
+
- features/support/fixtures/xml/books_fresh.xml
|
|
299
|
+
- features/support/fixtures/xml/books_one_to_one_changed.xml
|
|
300
|
+
- features/support/fixtures/xml/books_one_to_one_mismatch.xml
|
|
301
|
+
- features/support/fixtures/xml/books_one_to_one_removed.xml
|
|
302
|
+
- features/support/fixtures/xml/books_simple.xml
|
|
303
|
+
- features/support/fixtures/xml/books_with_changed_chapters.xml
|
|
304
|
+
- features/support/fixtures/xml/books_with_chapters.xml
|
|
305
|
+
- features/support/fixtures/xml/books_with_many_one_to_one_records.xml
|
|
306
|
+
- features/support/fixtures/xml/books_with_mismatched_chapters.xml
|
|
307
|
+
- features/support/fixtures/xml/books_with_moved_chapters.xml
|
|
308
|
+
- features/support/fixtures/xml/books_with_one_to_one.xml
|
|
309
|
+
- features/support/fixtures/xml/books_with_removed_chapters.xml
|
|
310
|
+
- features/support/fixtures/xml/books_without_chapters.xml
|
|
311
|
+
- features/support/fixtures/xml/books_without_one_to_one.xml
|
|
312
|
+
- features/support/fixtures/xml/ms_access/book.xml
|
|
313
|
+
- features/support/fixtures/xml/ms_access/book.xsd
|
|
314
|
+
- features/support/fixtures/xml/ms_access/books_changed.xml
|
|
315
|
+
- features/support/fixtures/xml/ms_access/books_fresh.xml
|
|
316
|
+
- features/support/fixtures/xml/ms_access/books_one_to_one_changed.xml
|
|
317
|
+
- features/support/fixtures/xml/ms_access/books_one_to_one_mismatch.xml
|
|
318
|
+
- features/support/fixtures/xml/ms_access/books_one_to_one_removed.xml
|
|
319
|
+
- features/support/fixtures/xml/ms_access/books_simple.xml
|
|
320
|
+
- features/support/fixtures/xml/ms_access/books_with_changed_chapters.xml
|
|
321
|
+
- features/support/fixtures/xml/ms_access/books_with_chapters.xml
|
|
322
|
+
- features/support/fixtures/xml/ms_access/books_with_many_one_to_one_records.xml
|
|
323
|
+
- features/support/fixtures/xml/ms_access/books_with_mismatched_chapters.xml
|
|
324
|
+
- features/support/fixtures/xml/ms_access/books_with_moved_chapters.xml
|
|
325
|
+
- features/support/fixtures/xml/ms_access/books_with_one_to_one.xml
|
|
326
|
+
- features/support/fixtures/xml/ms_access/books_with_removed_chapters.xml
|
|
327
|
+
- features/support/fixtures/xml/ms_access/books_without_chapters.xml
|
|
328
|
+
- features/support/fixtures/xml/ms_access/books_without_one_to_one.xml
|
|
329
|
+
- features/support/paths.rb
|
|
330
|
+
- features/support/selectors.rb
|
|
331
|
+
- features/sync_database_with_xml.feature
|
|
332
|
+
- features/sync_one_to_many.feature
|
|
333
|
+
- features/sync_one_to_one.feature
|
|
334
|
+
- features/update_database_with_xml.feature
|
|
335
|
+
- test_apps/book_store_rails_31x/.gitignore
|
|
336
|
+
- test_apps/book_store_rails_31x/.rvmrc
|
|
337
|
+
- test_apps/book_store_rails_31x/Gemfile
|
|
338
|
+
- test_apps/book_store_rails_31x/README
|
|
339
|
+
- test_apps/book_store_rails_31x/Rakefile
|
|
340
|
+
- test_apps/book_store_rails_31x/app/assets/images/rails.png
|
|
341
|
+
- test_apps/book_store_rails_31x/app/assets/javascripts/application.js
|
|
342
|
+
- test_apps/book_store_rails_31x/app/assets/stylesheets/application.css
|
|
343
|
+
- test_apps/book_store_rails_31x/app/controllers/application_controller.rb
|
|
344
|
+
- test_apps/book_store_rails_31x/app/helpers/application_helper.rb
|
|
345
|
+
- test_apps/book_store_rails_31x/app/mailers/.gitkeep
|
|
346
|
+
- test_apps/book_store_rails_31x/app/models/.gitkeep
|
|
347
|
+
- test_apps/book_store_rails_31x/app/models/book.rb
|
|
348
|
+
- test_apps/book_store_rails_31x/app/models/book_price.rb
|
|
349
|
+
- test_apps/book_store_rails_31x/app/models/chapter.rb
|
|
350
|
+
- test_apps/book_store_rails_31x/app/models/page.rb
|
|
351
|
+
- test_apps/book_store_rails_31x/app/views/layouts/application.html.erb
|
|
352
|
+
- test_apps/book_store_rails_31x/config.ru
|
|
353
|
+
- test_apps/book_store_rails_31x/config/application.rb
|
|
354
|
+
- test_apps/book_store_rails_31x/config/boot.rb
|
|
355
|
+
- test_apps/book_store_rails_31x/config/database.yml
|
|
356
|
+
- test_apps/book_store_rails_31x/config/environment.rb
|
|
357
|
+
- test_apps/book_store_rails_31x/config/environments/development.rb
|
|
358
|
+
- test_apps/book_store_rails_31x/config/environments/production.rb
|
|
359
|
+
- test_apps/book_store_rails_31x/config/environments/test.rb
|
|
360
|
+
- test_apps/book_store_rails_31x/config/initializers/backtrace_silencers.rb
|
|
361
|
+
- test_apps/book_store_rails_31x/config/initializers/inflections.rb
|
|
362
|
+
- test_apps/book_store_rails_31x/config/initializers/mime_types.rb
|
|
363
|
+
- test_apps/book_store_rails_31x/config/initializers/secret_token.rb
|
|
364
|
+
- test_apps/book_store_rails_31x/config/initializers/session_store.rb
|
|
365
|
+
- test_apps/book_store_rails_31x/config/initializers/wrap_parameters.rb
|
|
366
|
+
- test_apps/book_store_rails_31x/config/locales/en.yml
|
|
367
|
+
- test_apps/book_store_rails_31x/config/routes.rb
|
|
368
|
+
- test_apps/book_store_rails_31x/db/migrate/20120422053943_create_books.rb
|
|
369
|
+
- test_apps/book_store_rails_31x/db/migrate/20120422054008_create_chapters.rb
|
|
370
|
+
- test_apps/book_store_rails_31x/db/migrate/20120422054033_create_pages.rb
|
|
371
|
+
- test_apps/book_store_rails_31x/db/migrate/20120422054123_create_book_prices.rb
|
|
372
|
+
- test_apps/book_store_rails_31x/db/schema.rb
|
|
373
|
+
- test_apps/book_store_rails_31x/db/seeds.rb
|
|
374
|
+
- test_apps/book_store_rails_31x/lib/assets/.gitkeep
|
|
375
|
+
- test_apps/book_store_rails_31x/lib/tasks/.gitkeep
|
|
376
|
+
- test_apps/book_store_rails_31x/log/.gitkeep
|
|
377
|
+
- test_apps/book_store_rails_31x/public/404.html
|
|
378
|
+
- test_apps/book_store_rails_31x/public/422.html
|
|
379
|
+
- test_apps/book_store_rails_31x/public/500.html
|
|
380
|
+
- test_apps/book_store_rails_31x/public/favicon.ico
|
|
381
|
+
- test_apps/book_store_rails_31x/public/index.html
|
|
382
|
+
- test_apps/book_store_rails_31x/public/robots.txt
|
|
383
|
+
- test_apps/book_store_rails_31x/script/rails
|
|
384
|
+
- test_apps/book_store_rails_31x/test/fixtures/.gitkeep
|
|
385
|
+
- test_apps/book_store_rails_31x/test/functional/.gitkeep
|
|
386
|
+
- test_apps/book_store_rails_31x/test/integration/.gitkeep
|
|
387
|
+
- test_apps/book_store_rails_31x/test/performance/browsing_test.rb
|
|
388
|
+
- test_apps/book_store_rails_31x/test/test_helper.rb
|
|
389
|
+
- test_apps/book_store_rails_31x/test/unit/.gitkeep
|
|
390
|
+
- test_apps/book_store_rails_31x/vendor/assets/stylesheets/.gitkeep
|
|
391
|
+
- test_apps/book_store_rails_31x/vendor/plugins/.gitkeep
|
|
392
|
+
- test_apps/book_store_rails_32x/.gitignore
|
|
393
|
+
- test_apps/book_store_rails_32x/.rvmrc
|
|
394
|
+
- test_apps/book_store_rails_32x/Gemfile
|
|
395
|
+
- test_apps/book_store_rails_32x/README.rdoc
|
|
396
|
+
- test_apps/book_store_rails_32x/Rakefile
|
|
397
|
+
- test_apps/book_store_rails_32x/app/assets/images/rails.png
|
|
398
|
+
- test_apps/book_store_rails_32x/app/assets/javascripts/application.js
|
|
399
|
+
- test_apps/book_store_rails_32x/app/assets/stylesheets/application.css
|
|
400
|
+
- test_apps/book_store_rails_32x/app/controllers/application_controller.rb
|
|
401
|
+
- test_apps/book_store_rails_32x/app/helpers/application_helper.rb
|
|
402
|
+
- test_apps/book_store_rails_32x/app/mailers/.gitkeep
|
|
403
|
+
- test_apps/book_store_rails_32x/app/models/.gitkeep
|
|
404
|
+
- test_apps/book_store_rails_32x/app/models/book.rb
|
|
405
|
+
- test_apps/book_store_rails_32x/app/models/book_price.rb
|
|
406
|
+
- test_apps/book_store_rails_32x/app/models/chapter.rb
|
|
407
|
+
- test_apps/book_store_rails_32x/app/models/page.rb
|
|
408
|
+
- test_apps/book_store_rails_32x/app/views/layouts/application.html.erb
|
|
409
|
+
- test_apps/book_store_rails_32x/config.ru
|
|
410
|
+
- test_apps/book_store_rails_32x/config/application.rb
|
|
411
|
+
- test_apps/book_store_rails_32x/config/boot.rb
|
|
412
|
+
- test_apps/book_store_rails_32x/config/cucumber.yml
|
|
413
|
+
- test_apps/book_store_rails_32x/config/database.yml
|
|
414
|
+
- test_apps/book_store_rails_32x/config/environment.rb
|
|
415
|
+
- test_apps/book_store_rails_32x/config/environments/development.rb
|
|
416
|
+
- test_apps/book_store_rails_32x/config/environments/production.rb
|
|
417
|
+
- test_apps/book_store_rails_32x/config/environments/test.rb
|
|
418
|
+
- test_apps/book_store_rails_32x/config/initializers/backtrace_silencers.rb
|
|
419
|
+
- test_apps/book_store_rails_32x/config/initializers/inflections.rb
|
|
420
|
+
- test_apps/book_store_rails_32x/config/initializers/mime_types.rb
|
|
421
|
+
- test_apps/book_store_rails_32x/config/initializers/secret_token.rb
|
|
422
|
+
- test_apps/book_store_rails_32x/config/initializers/session_store.rb
|
|
423
|
+
- test_apps/book_store_rails_32x/config/initializers/wrap_parameters.rb
|
|
424
|
+
- test_apps/book_store_rails_32x/config/locales/en.yml
|
|
425
|
+
- test_apps/book_store_rails_32x/config/routes.rb
|
|
426
|
+
- test_apps/book_store_rails_32x/db/migrate/20120422043253_create_books.rb
|
|
427
|
+
- test_apps/book_store_rails_32x/db/migrate/20120422043434_create_chapters.rb
|
|
428
|
+
- test_apps/book_store_rails_32x/db/migrate/20120422043553_create_pages.rb
|
|
429
|
+
- test_apps/book_store_rails_32x/db/migrate/20120422043700_create_book_prices.rb
|
|
430
|
+
- test_apps/book_store_rails_32x/db/schema.rb
|
|
431
|
+
- test_apps/book_store_rails_32x/db/seeds.rb
|
|
432
|
+
- test_apps/book_store_rails_32x/lib/assets/.gitkeep
|
|
433
|
+
- test_apps/book_store_rails_32x/lib/tasks/.gitkeep
|
|
434
|
+
- test_apps/book_store_rails_32x/lib/tasks/cucumber.rake
|
|
435
|
+
- test_apps/book_store_rails_32x/log/.gitkeep
|
|
436
|
+
- test_apps/book_store_rails_32x/public/404.html
|
|
437
|
+
- test_apps/book_store_rails_32x/public/422.html
|
|
438
|
+
- test_apps/book_store_rails_32x/public/500.html
|
|
439
|
+
- test_apps/book_store_rails_32x/public/favicon.ico
|
|
440
|
+
- test_apps/book_store_rails_32x/public/index.html
|
|
441
|
+
- test_apps/book_store_rails_32x/public/robots.txt
|
|
442
|
+
- test_apps/book_store_rails_32x/script/cucumber
|
|
443
|
+
- test_apps/book_store_rails_32x/script/rails
|
|
444
|
+
- test_apps/book_store_rails_32x/test/fixtures/.gitkeep
|
|
445
|
+
- test_apps/book_store_rails_32x/test/functional/.gitkeep
|
|
446
|
+
- test_apps/book_store_rails_32x/test/integration/.gitkeep
|
|
447
|
+
- test_apps/book_store_rails_32x/test/performance/browsing_test.rb
|
|
448
|
+
- test_apps/book_store_rails_32x/test/test_helper.rb
|
|
449
|
+
- test_apps/book_store_rails_32x/test/unit/.gitkeep
|
|
450
|
+
- test_apps/book_store_rails_32x/vendor/assets/javascripts/.gitkeep
|
|
451
|
+
- test_apps/book_store_rails_32x/vendor/assets/stylesheets/.gitkeep
|
|
452
|
+
- test_apps/book_store_rails_32x/vendor/plugins/.gitkeep
|