jrmvnrunner 0.1.6 → 0.1.7

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.
Files changed (4) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +4 -1
  3. data/lib/jrmvnrunner.rb +1 -1
  4. metadata +29 -38
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 8edeccee8973a6da20c25a94b16bfdd8a9da70da
4
+ data.tar.gz: 55a0b190381cdccd620118bf60872383079c5ba6
5
+ SHA512:
6
+ metadata.gz: 9223e931d4911becb08573708318ed4938e0e90248bda9457eda34838981b7c83ba20b3e4b8e818fe12fc27921b5b2b8c83ee2a17bdaef23905432e02a323054
7
+ data.tar.gz: 90bfd90ca41a566050e77c2bb429edf3e5f6b8c9ddb048233c07fd02e8401b619c765f808887de255aa4c2c90b06929b8bffe239bc4d62432585ade7da0775e9
data/README.md CHANGED
@@ -7,6 +7,9 @@ Jrmvnrunner simply creates the temporary Gemfile and pom.xml for your project ac
7
7
  invokes bundle install and mvn install accordingly. This is a very simple and transparent approach to collect all the
8
8
  required dependencies specified in a single file.
9
9
 
10
+ Check out [this blog post](http://smecsia.me/blog/78/Smartfox+Integration+testing+with+Cucumber)
11
+ to see how this library can be used.
12
+
10
13
  ## Why?
11
14
 
12
15
  Doubleshot looks ok, but it requires java 1.7+. JBundler is good, but sometimes does not do what you want.
@@ -69,4 +72,4 @@ jruby -S gem install jrmvnrunner
69
72
  ## Requirements
70
73
 
71
74
  Jrmvnrunner requires JDK 1.6+, Maven 3+, Jruby 1.7+ installed. It will look at your PATH for mvn, jruby,
72
- jgem and bundle executables.
75
+ jgem and bundle executables.
data/lib/jrmvnrunner.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  require 'pathname'
2
2
 
3
3
  module Jrmvnrunner
4
- VERSION="0.1.6"
4
+ VERSION="0.1.7"
5
5
  MYDIR = Pathname.new(File.dirname(File.expand_path(__FILE__)))
6
6
  autoload :Runner, MYDIR.join('jrmvnrunner/runner')
7
7
  autoload :Dsl, MYDIR.join('jrmvnrunner/dsl')
metadata CHANGED
@@ -1,51 +1,45 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jrmvnrunner
3
3
  version: !ruby/object:Gem::Version
4
- prerelease:
5
- version: 0.1.6
4
+ version: 0.1.7
6
5
  platform: ruby
7
6
  authors:
8
7
  - Ilya Sadykov
9
- autorequire:
8
+ autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
11
  date: 2013-03-02 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: rspec
16
- version_requirements: !ruby/object:Gem::Requirement
17
- requirements:
18
- - - "~>"
19
- - !ruby/object:Gem::Version
20
- version: 2.10.0
21
- none: false
22
15
  requirement: !ruby/object:Gem::Requirement
23
16
  requirements:
24
- - - "~>"
17
+ - - ~>
25
18
  - !ruby/object:Gem::Version
26
19
  version: 2.10.0
27
- none: false
28
- prerelease: false
29
20
  type: :development
30
- - !ruby/object:Gem::Dependency
31
- name: sourcify
21
+ prerelease: false
32
22
  version_requirements: !ruby/object:Gem::Requirement
33
23
  requirements:
34
- - - ">="
24
+ - - ~>
35
25
  - !ruby/object:Gem::Version
36
- version: !binary |-
37
- MA==
38
- none: false
26
+ version: 2.10.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
39
29
  requirement: !ruby/object:Gem::Requirement
40
30
  requirements:
41
- - - ">="
31
+ - - '>='
42
32
  - !ruby/object:Gem::Version
43
- version: !binary |-
44
- MA==
45
- none: false
46
- prerelease: false
33
+ version: '0'
47
34
  type: :runtime
48
- description: This gem allows you to specify the jar-dependencies of your project and run your tasks with the classpath
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description: This gem allows you to specify the jar-dependencies of your project and
42
+ run your tasks with the classpath
49
43
  email: smecsia@gmail.com
50
44
  executables:
51
45
  - jrmvnrun
@@ -55,34 +49,31 @@ files:
55
49
  - bin/jrmvnrun.bat
56
50
  - bin/jrmvnrun
57
51
  - lib/jrmvnrunner.rb
58
- - lib/jrmvnrunner/runner.rb
59
52
  - lib/jrmvnrunner/dsl.rb
53
+ - lib/jrmvnrunner/runner.rb
60
54
  - spec/spec_helper.rb
61
55
  - README.md
62
56
  homepage: ''
63
57
  licenses: []
64
- post_install_message:
58
+ metadata: {}
59
+ post_install_message:
65
60
  rdoc_options: []
66
61
  require_paths:
67
62
  - lib
68
63
  required_ruby_version: !ruby/object:Gem::Requirement
69
64
  requirements:
70
- - - ">="
65
+ - - '>='
71
66
  - !ruby/object:Gem::Version
72
- version: !binary |-
73
- MA==
74
- none: false
67
+ version: '0'
75
68
  required_rubygems_version: !ruby/object:Gem::Requirement
76
69
  requirements:
77
- - - ">="
70
+ - - '>='
78
71
  - !ruby/object:Gem::Version
79
- version: !binary |-
80
- MA==
81
- none: false
72
+ version: '0'
82
73
  requirements: []
83
- rubyforge_project:
84
- rubygems_version: 1.8.24
85
- signing_key:
86
- specification_version: 3
74
+ rubyforge_project:
75
+ rubygems_version: 2.0.3
76
+ signing_key:
77
+ specification_version: 4
87
78
  summary: Simple lib to execute jruby task with the java classpath
88
79
  test_files: []