ruian 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +25 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +29 -0
- data/Rakefile +2 -0
- data/example/.gitignore +15 -0
- data/example/Gemfile +28 -0
- data/example/README.md +23 -0
- data/example/Rakefile +7 -0
- data/example/app/assets/images/rails.png +0 -0
- data/example/app/assets/javascripts/application.js +13 -0
- data/example/app/assets/stylesheets/application.css +13 -0
- data/example/app/controllers/application_controller.rb +3 -0
- data/example/app/helpers/application_helper.rb +2 -0
- data/example/app/mailers/.gitkeep +0 -0
- data/example/app/models/.gitkeep +0 -0
- data/example/app/models/address.rb +5 -0
- data/example/app/models/address/city.rb +7 -0
- data/example/app/models/address/city_part.rb +7 -0
- data/example/app/models/address/county.rb +3 -0
- data/example/app/models/address/county_name_count.rb +7 -0
- data/example/app/models/address/momc_name.rb +5 -0
- data/example/app/models/address/mop_name.rb +5 -0
- data/example/app/models/address/name.rb +18 -0
- data/example/app/models/address/name_type.rb +6 -0
- data/example/app/models/address/place.rb +13 -0
- data/example/app/models/address/region.rb +3 -0
- data/example/app/models/address/region_name_count.rb +7 -0
- data/example/app/models/address/street_name.rb +5 -0
- data/example/app/views/layouts/application.html.erb +14 -0
- data/example/config.ru +4 -0
- data/example/config/application.rb +63 -0
- data/example/config/boot.rb +6 -0
- data/example/config/database.yml +25 -0
- data/example/config/environment.rb +5 -0
- data/example/config/environments/development.rb +32 -0
- data/example/config/environments/production.rb +54 -0
- data/example/config/environments/test.rb +37 -0
- data/example/config/initializers/backtrace_silencers.rb +7 -0
- data/example/config/initializers/inflections.rb +15 -0
- data/example/config/initializers/mime_types.rb +5 -0
- data/example/config/initializers/secret_token.rb +7 -0
- data/example/config/initializers/session_store.rb +8 -0
- data/example/config/initializers/wrap_parameters.rb +14 -0
- data/example/config/locales/en.yml +5 -0
- data/example/config/routes.rb +58 -0
- data/example/db/migrate/20140418190407_create_tables.rb +170 -0
- data/example/db/schema.rb +182 -0
- data/example/db/seeds.rb +7 -0
- data/example/lib/assets/.gitkeep +0 -0
- data/example/lib/importer.rb +163 -0
- data/example/lib/tasks/.gitkeep +0 -0
- data/example/lib/tasks/ruian.rake +4 -0
- data/example/log/.gitkeep +0 -0
- data/example/public/404.html +26 -0
- data/example/public/422.html +26 -0
- data/example/public/500.html +25 -0
- data/example/public/favicon.ico +0 -0
- data/example/public/index.html +241 -0
- data/example/public/robots.txt +5 -0
- data/example/script/rails +6 -0
- data/example/vendor/assets/javascripts/.gitkeep +0 -0
- data/example/vendor/assets/stylesheets/.gitkeep +0 -0
- data/example/vendor/plugins/.gitkeep +0 -0
- data/fixtures/counties.csv +92 -0
- data/fixtures/vazby-cr.csv +15072 -0
- data/fixtures/vazby-okresy-cr.csv +15072 -0
- data/lib/ruian.rb +86 -0
- data/lib/ruian/enum_updater.rb +59 -0
- data/lib/ruian/fetcher.rb +71 -0
- data/lib/ruian/files_updater.rb +54 -0
- data/lib/ruian/importer.rb +21 -0
- data/lib/ruian/model.rb +10 -0
- data/lib/ruian/model/county.rb +6 -0
- data/lib/ruian/model/county_integration.rb +6 -0
- data/lib/ruian/model/region.rb +6 -0
- data/lib/ruian/model/region_integration.rb +6 -0
- data/lib/ruian/model/row.rb +9 -0
- data/lib/ruian/parser.rb +12 -0
- data/lib/ruian/queue.rb +24 -0
- data/lib/ruian/railtie.rb +9 -0
- data/lib/ruian/tasks/ruian.rake +18 -0
- data/lib/ruian/version.rb +3 -0
- data/ruian.gemspec +26 -0
- metadata +198 -0
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the gem file manually.