├── .gitignore ├── .travis.yml ├── Gemfile ├── MIT-LICENSE ├── Mavenfile ├── README.md ├── Rakefile ├── TODO ├── bin └── rmvn ├── it ├── project │ ├── Gemfile │ ├── Gemfile2 │ └── minimal.gemspec ├── project_no_gemfile │ └── minimal.gemspec └── rails │ ├── Gemfile │ └── config │ └── application.rb ├── lib └── ruby │ ├── maven │ ├── ruby.rb │ └── ruby │ │ ├── Mavenfile │ │ ├── cli.rb │ │ ├── maven.rb │ │ ├── pom_magic.rb │ │ └── version.rb │ ├── ruby-maven.rb │ └── ruby_maven.rb ├── pom.xml ├── ruby-maven.gemspec └── spec ├── cli_spec.rb ├── maven_spec.rb └── pom_magic_spec.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkristian/ruby-maven/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkristian/ruby-maven/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkristian/ruby-maven/HEAD/Gemfile -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkristian/ruby-maven/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /Mavenfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkristian/ruby-maven/HEAD/Mavenfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkristian/ruby-maven/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkristian/ruby-maven/HEAD/Rakefile -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkristian/ruby-maven/HEAD/TODO -------------------------------------------------------------------------------- /bin/rmvn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkristian/ruby-maven/HEAD/bin/rmvn -------------------------------------------------------------------------------- /it/project/Gemfile: -------------------------------------------------------------------------------- 1 | source :rubygems 2 | -------------------------------------------------------------------------------- /it/project/Gemfile2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkristian/ruby-maven/HEAD/it/project/Gemfile2 -------------------------------------------------------------------------------- /it/project/minimal.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkristian/ruby-maven/HEAD/it/project/minimal.gemspec -------------------------------------------------------------------------------- /it/project_no_gemfile/minimal.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkristian/ruby-maven/HEAD/it/project_no_gemfile/minimal.gemspec -------------------------------------------------------------------------------- /it/rails/Gemfile: -------------------------------------------------------------------------------- 1 | source :rubygems 2 | -------------------------------------------------------------------------------- /it/rails/config/application.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ruby/maven/ruby.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkristian/ruby-maven/HEAD/lib/ruby/maven/ruby.rb -------------------------------------------------------------------------------- /lib/ruby/maven/ruby/Mavenfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkristian/ruby-maven/HEAD/lib/ruby/maven/ruby/Mavenfile -------------------------------------------------------------------------------- /lib/ruby/maven/ruby/cli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkristian/ruby-maven/HEAD/lib/ruby/maven/ruby/cli.rb -------------------------------------------------------------------------------- /lib/ruby/maven/ruby/maven.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkristian/ruby-maven/HEAD/lib/ruby/maven/ruby/maven.rb -------------------------------------------------------------------------------- /lib/ruby/maven/ruby/pom_magic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkristian/ruby-maven/HEAD/lib/ruby/maven/ruby/pom_magic.rb -------------------------------------------------------------------------------- /lib/ruby/maven/ruby/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkristian/ruby-maven/HEAD/lib/ruby/maven/ruby/version.rb -------------------------------------------------------------------------------- /lib/ruby/ruby-maven.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkristian/ruby-maven/HEAD/lib/ruby/ruby-maven.rb -------------------------------------------------------------------------------- /lib/ruby/ruby_maven.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkristian/ruby-maven/HEAD/lib/ruby/ruby_maven.rb -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkristian/ruby-maven/HEAD/pom.xml -------------------------------------------------------------------------------- /ruby-maven.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkristian/ruby-maven/HEAD/ruby-maven.gemspec -------------------------------------------------------------------------------- /spec/cli_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkristian/ruby-maven/HEAD/spec/cli_spec.rb -------------------------------------------------------------------------------- /spec/maven_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkristian/ruby-maven/HEAD/spec/maven_spec.rb -------------------------------------------------------------------------------- /spec/pom_magic_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkristian/ruby-maven/HEAD/spec/pom_magic_spec.rb --------------------------------------------------------------------------------