pomegranate-cli 0.0.1 → 0.0.2

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 77d5ddd1df776e10e8495a6869b55c24858af4a3
4
- data.tar.gz: ba21b85f544d95368f6d65d2b8a630cb06791f39
3
+ metadata.gz: 4c0d327fa25176fe8a6450dfe44346ef1e580927
4
+ data.tar.gz: a26c3f035ed7f876f29f0fcc0d69600ab1d6983a
5
5
  SHA512:
6
- metadata.gz: 66737f46c046b8da4ecd19105229b385d5ee769c0f568d026a0c7596ce107f836df13444bfa9c0fd3a3b399a2c74871dc32acb5e79d71c9541184093cb6ac55d
7
- data.tar.gz: d803a38cb3689810a210e86d208b748facf51fa43df58c33e444bc62dcc6bd43ef6989825f16795d56601c1b034e2c54f2f0dd0b2a4ef72c8f7e15fc349844de
6
+ metadata.gz: e3543855c38482ce3de2f6dc2bb13661d50cafefc217aacd8837f8fa477c2c0c0079d256f0cd8af1c1606a6deeb49c4b5c85b2003c37176fc535fbbe41280fc6
7
+ data.tar.gz: 99dafb1b438bb4ac0f7cbcf5fc341bfc758b585e1c81943b2267557db03f74666d10f43375e0c1b0996d6141fdbb451f7ad6bf6ceb872701bb339c0fb4706681
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --color
2
+ --format doc
3
+ --require spec_helper
data/Gemfile CHANGED
@@ -4,3 +4,7 @@ source 'https://rubygems.org'
4
4
  gemspec
5
5
 
6
6
  gem 'commander'
7
+
8
+ group :test do
9
+ gem 'rspec'
10
+ end
data/Gemfile.lock CHANGED
@@ -1,15 +1,28 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- pomegranate-cli (0.0.1)
4
+ pomegranate-cli (0.0.2)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
8
8
  specs:
9
9
  commander (4.2.1)
10
10
  highline (~> 1.6.11)
11
+ diff-lcs (1.2.5)
11
12
  highline (1.6.21)
12
13
  rake (10.3.2)
14
+ rspec (3.0.0)
15
+ rspec-core (~> 3.0.0)
16
+ rspec-expectations (~> 3.0.0)
17
+ rspec-mocks (~> 3.0.0)
18
+ rspec-core (3.0.4)
19
+ rspec-support (~> 3.0.0)
20
+ rspec-expectations (3.0.4)
21
+ diff-lcs (>= 1.2.0, < 2.0)
22
+ rspec-support (~> 3.0.0)
23
+ rspec-mocks (3.0.4)
24
+ rspec-support (~> 3.0.0)
25
+ rspec-support (3.0.4)
13
26
 
14
27
  PLATFORMS
15
28
  ruby
@@ -19,3 +32,4 @@ DEPENDENCIES
19
32
  commander
20
33
  pomegranate-cli!
21
34
  rake (~> 10.0)
35
+ rspec
@@ -1,5 +1,5 @@
1
1
  module Pomegranate
2
2
  module Cli
3
- VERSION = "0.0.1"
3
+ VERSION = "0.0.2"
4
4
  end
5
5
  end
Binary file
@@ -20,4 +20,5 @@ Gem::Specification.new do |spec|
20
20
 
21
21
  spec.add_development_dependency "bundler", "~> 1.7"
22
22
  spec.add_development_dependency "rake", "~> 10.0"
23
+ spec.add_development_dependency "commander"
23
24
  end
data/spec/init_spec.rb ADDED
File without changes
@@ -0,0 +1,78 @@
1
+ # This file was generated by the `rspec --init` command. Conventionally, all
2
+ # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
3
+ # The generated `.rspec` file contains `--require spec_helper` which will cause this
4
+ # file to always be loaded, without a need to explicitly require it in any files.
5
+ #
6
+ # Given that it is always loaded, you are encouraged to keep this file as
7
+ # light-weight as possible. Requiring heavyweight dependencies from this file
8
+ # will add to the boot time of your test suite on EVERY test run, even for an
9
+ # individual file that may not need all of that loaded. Instead, make a
10
+ # separate helper file that requires this one and then use it only in the specs
11
+ # that actually need it.
12
+ #
13
+ # The `.rspec` file also contains a few flags that are not defaults but that
14
+ # users commonly want.
15
+ #
16
+ # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
17
+ RSpec.configure do |config|
18
+ # The settings below are suggested to provide a good initial experience
19
+ # with RSpec, but feel free to customize to your heart's content.
20
+ =begin
21
+ # These two settings work together to allow you to limit a spec run
22
+ # to individual examples or groups you care about by tagging them with
23
+ # `:focus` metadata. When nothing is tagged with `:focus`, all examples
24
+ # get run.
25
+ config.filter_run :focus
26
+ config.run_all_when_everything_filtered = true
27
+
28
+ # Many RSpec users commonly either run the entire suite or an individual
29
+ # file, and it's useful to allow more verbose output when running an
30
+ # individual spec file.
31
+ if config.files_to_run.one?
32
+ # Use the documentation formatter for detailed output,
33
+ # unless a formatter has already been configured
34
+ # (e.g. via a command-line flag).
35
+ config.default_formatter = 'doc'
36
+ end
37
+
38
+ # Print the 10 slowest examples and example groups at the
39
+ # end of the spec run, to help surface which specs are running
40
+ # particularly slow.
41
+ config.profile_examples = 10
42
+
43
+ # Run specs in random order to surface order dependencies. If you find an
44
+ # order dependency and want to debug it, you can fix the order by providing
45
+ # the seed, which is printed after each run.
46
+ # --seed 1234
47
+ config.order = :random
48
+
49
+ # Seed global randomization in this process using the `--seed` CLI option.
50
+ # Setting this allows you to use `--seed` to deterministically reproduce
51
+ # test failures related to randomization by passing the same `--seed` value
52
+ # as the one that triggered the failure.
53
+ Kernel.srand config.seed
54
+
55
+ # rspec-expectations config goes here. You can use an alternate
56
+ # assertion/expectation library such as wrong or the stdlib/minitest
57
+ # assertions if you prefer.
58
+ config.expect_with :rspec do |expectations|
59
+ # Enable only the newer, non-monkey-patching expect syntax.
60
+ # For more details, see:
61
+ # - http://myronmars.to/n/dev-blog/2012/06/rspecs-new-expectation-syntax
62
+ expectations.syntax = :expect
63
+ end
64
+
65
+ # rspec-mocks config goes here. You can use an alternate test double
66
+ # library (such as bogus or mocha) by changing the `mock_with` option here.
67
+ config.mock_with :rspec do |mocks|
68
+ # Enable only the newer, non-monkey-patching expect syntax.
69
+ # For more details, see:
70
+ # - http://teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
71
+ mocks.syntax = :expect
72
+
73
+ # Prevents you from mocking or stubbing a method that does not exist on
74
+ # a real object. This is generally recommended.
75
+ mocks.verify_partial_doubles = true
76
+ end
77
+ =end
78
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pomegranate-cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - jpatel531
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-10-10 00:00:00.000000000 Z
11
+ date: 2014-10-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -38,6 +38,20 @@ dependencies:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: commander
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
41
55
  description: A command-line interface for creating a pomegranate.json file
42
56
  email:
43
57
  - jamie@notespublication.com
@@ -47,6 +61,7 @@ extensions: []
47
61
  extra_rdoc_files: []
48
62
  files:
49
63
  - ".DS_Store"
64
+ - ".rspec"
50
65
  - Gemfile
51
66
  - Gemfile.lock
52
67
  - LICENSE.txt
@@ -57,7 +72,10 @@ files:
57
72
  - lib/pomegranate/cli/version.rb
58
73
  - lib/pomegranate/read_character.rb
59
74
  - pkg/pomegranate-cli-0.0.1.gem
75
+ - pkg/pomegranate-cli-0.0.2.gem
60
76
  - pomegranate-cli.gemspec
77
+ - spec/init_spec.rb
78
+ - spec/spec_helper.rb
61
79
  homepage: ''
62
80
  licenses:
63
81
  - MIT
@@ -82,4 +100,6 @@ rubygems_version: 2.2.2
82
100
  signing_key:
83
101
  specification_version: 4
84
102
  summary: Part of the Pomegranate project
85
- test_files: []
103
+ test_files:
104
+ - spec/init_spec.rb
105
+ - spec/spec_helper.rb