├── .gitignore ├── .rspec ├── .ruby-version ├── .travis.yml ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin └── wp2mm ├── lib ├── wp2middleman.rb └── wp2middleman │ ├── cli.rb │ ├── frontmatter.rb │ ├── middleman_post.rb │ ├── migrator.rb │ ├── post.rb │ ├── post_collection.rb │ └── version.rb ├── spec ├── fixtures │ └── fixture.xml ├── lib │ ├── wp2middleman │ │ ├── cli_spec.rb │ │ ├── frontmatter_spec.rb │ │ ├── middleman_post_spec.rb │ │ ├── migrator_spec.rb │ │ ├── post_collection_spec.rb │ │ └── post_spec.rb │ └── wp2middleman_spec.rb ├── spec_helper.rb └── support │ ├── cli_helpers.rb │ └── matchers │ └── exit_with_code.rb └── wp2middleman.gemspec /.gitignore: -------------------------------------------------------------------------------- 1 | Gemfile.lock 2 | coverage/ 3 | export/ 4 | pkg 5 | -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format documentation 3 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.0.0 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdb/wp2middleman/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdb/wp2middleman/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdb/wp2middleman/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdb/wp2middleman/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdb/wp2middleman/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/wp2mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdb/wp2middleman/HEAD/bin/wp2mm -------------------------------------------------------------------------------- /lib/wp2middleman.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdb/wp2middleman/HEAD/lib/wp2middleman.rb -------------------------------------------------------------------------------- /lib/wp2middleman/cli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdb/wp2middleman/HEAD/lib/wp2middleman/cli.rb -------------------------------------------------------------------------------- /lib/wp2middleman/frontmatter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdb/wp2middleman/HEAD/lib/wp2middleman/frontmatter.rb -------------------------------------------------------------------------------- /lib/wp2middleman/middleman_post.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdb/wp2middleman/HEAD/lib/wp2middleman/middleman_post.rb -------------------------------------------------------------------------------- /lib/wp2middleman/migrator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdb/wp2middleman/HEAD/lib/wp2middleman/migrator.rb -------------------------------------------------------------------------------- /lib/wp2middleman/post.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdb/wp2middleman/HEAD/lib/wp2middleman/post.rb -------------------------------------------------------------------------------- /lib/wp2middleman/post_collection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdb/wp2middleman/HEAD/lib/wp2middleman/post_collection.rb -------------------------------------------------------------------------------- /lib/wp2middleman/version.rb: -------------------------------------------------------------------------------- 1 | module WP2Middleman 2 | VERSION = "0.0.3" 3 | end 4 | -------------------------------------------------------------------------------- /spec/fixtures/fixture.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdb/wp2middleman/HEAD/spec/fixtures/fixture.xml -------------------------------------------------------------------------------- /spec/lib/wp2middleman/cli_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdb/wp2middleman/HEAD/spec/lib/wp2middleman/cli_spec.rb -------------------------------------------------------------------------------- /spec/lib/wp2middleman/frontmatter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdb/wp2middleman/HEAD/spec/lib/wp2middleman/frontmatter_spec.rb -------------------------------------------------------------------------------- /spec/lib/wp2middleman/middleman_post_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdb/wp2middleman/HEAD/spec/lib/wp2middleman/middleman_post_spec.rb -------------------------------------------------------------------------------- /spec/lib/wp2middleman/migrator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdb/wp2middleman/HEAD/spec/lib/wp2middleman/migrator_spec.rb -------------------------------------------------------------------------------- /spec/lib/wp2middleman/post_collection_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdb/wp2middleman/HEAD/spec/lib/wp2middleman/post_collection_spec.rb -------------------------------------------------------------------------------- /spec/lib/wp2middleman/post_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdb/wp2middleman/HEAD/spec/lib/wp2middleman/post_spec.rb -------------------------------------------------------------------------------- /spec/lib/wp2middleman_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdb/wp2middleman/HEAD/spec/lib/wp2middleman_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdb/wp2middleman/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/cli_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdb/wp2middleman/HEAD/spec/support/cli_helpers.rb -------------------------------------------------------------------------------- /spec/support/matchers/exit_with_code.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdb/wp2middleman/HEAD/spec/support/matchers/exit_with_code.rb -------------------------------------------------------------------------------- /wp2middleman.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdb/wp2middleman/HEAD/wp2middleman.gemspec --------------------------------------------------------------------------------