cliqr 0.0.1

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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 64c9b1b3318e0cd2646101dbfc3cb974cd1d891d
4
+ data.tar.gz: b4a65fe6d1b0140db0ea977f7451fedb6940c0e3
5
+ SHA512:
6
+ metadata.gz: 98f2dc57afa45411eefb719490b7f093ac8f257e4489a76f1954fcacd63d81f1578d20133558dcc0b812c78c09b986224f9226cfd26dbca18ad5e88a14b6b6a8
7
+ data.tar.gz: 143079da7b58f455e98c15c7d65524005f8190455464a0861c87aaac4aa3966f14d1dd9d1771009d48c426ed9b97dea1cc7ef6d4da1fdb71c975b8670efcb181
@@ -0,0 +1,16 @@
1
+ # Temporary files
2
+ *~
3
+ *#*
4
+
5
+ # Log files
6
+ *.log
7
+
8
+ # IDEA
9
+ .idea/
10
+ *.iml
11
+ *.ipr
12
+ *.iws
13
+
14
+ # Ruby gem
15
+ *.gem
16
+ Gemfile.lock
@@ -0,0 +1,19 @@
1
+ # SCM
2
+ -.git/
3
+
4
+ # Temporary files
5
+ *~
6
+ *#*
7
+
8
+ # Log files
9
+ *.log
10
+
11
+ # Ruby gem
12
+ *.gem
13
+ Gemfile.lock
14
+
15
+ # IDEA
16
+ .idea/
17
+ *.iml
18
+ *.ipr
19
+ *.iws
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --color
2
+ --require spec_helper
3
+ --format documentation
@@ -0,0 +1,5 @@
1
+
2
+ 0.0.1 / 2015-04-29
3
+ ==================
4
+
5
+ * initial gem version with rspec
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in cliqr.gemspec
4
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2015 Anshul Verma
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,45 @@
1
+ # Cliqr
2
+
3
+ <!-- markdown-toc start - Don't edit this section. Run M-x markdown-toc/generate-toc again -->
4
+ **Table of Contents**
5
+
6
+ - [Cliqr](#cliqr)
7
+ - [Summary](#summary)
8
+ - [Installation](#installation)
9
+ - [Usage](#usage)
10
+ - [Contributing](#contributing)
11
+
12
+ <!-- markdown-toc end -->
13
+
14
+
15
+ ## Summary
16
+
17
+ TODO: Write a gem description
18
+
19
+ ## Installation
20
+
21
+ Add this line to your application's Gemfile:
22
+
23
+ ```ruby
24
+ gem 'cliqr'
25
+ ```
26
+
27
+ And then execute:
28
+
29
+ $ bundle
30
+
31
+ Or install it yourself as:
32
+
33
+ $ gem install cliqr
34
+
35
+ ## Usage
36
+
37
+ TODO: Write usage instructions here
38
+
39
+ ## Contributing
40
+
41
+ 1. Fork it ( https://github.com/anshulverma/cliqr/fork )
42
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
43
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
44
+ 4. Push to the branch (`git push origin my-new-feature`)
45
+ 5. Create a new Pull Request
@@ -0,0 +1,2 @@
1
+ require 'bundler/gem_tasks'
2
+
@@ -0,0 +1,40 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'cliqr/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = 'cliqr'
8
+ spec.version = Cliqr::VERSION
9
+ spec.authors = ['Anshul Verma']
10
+ spec.email = ['ansverma@adobe.com']
11
+ spec.summary = %q{A framework and DSL for defining CLI interface}
12
+ spec.homepage = 'https://github.com/anshulverma/cliqr'
13
+ spec.description = <<-EOS
14
+ Allows you to easily define the interface for a CLI app
15
+ using an easy to use DSL.
16
+
17
+ Includes a lightweight framework for a CLI app.
18
+ Features: command routing, error handling, usage generation...more to come
19
+ EOS
20
+ spec.license = 'MIT'
21
+
22
+ spec.files = `git ls-files -z`.split("\x0")
23
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
24
+ spec.require_paths = ['lib']
25
+
26
+ spec.required_ruby_version = '>= 1.9.3'
27
+ spec.required_rubygems_version = '>= 1.3.6'
28
+
29
+ # runtime dependencies
30
+ {
31
+ :log4r => '~> 1.1'
32
+ }.each { |dependency, version| spec.add_runtime_dependency dependency.to_s, version }
33
+
34
+ # development dependencies
35
+ {
36
+ :bundler => '~> 1.7',
37
+ :rake => '~> 10.0',
38
+ :rspec => '~> 3.2'
39
+ }.each { |dependency, version| spec.add_development_dependency dependency.to_s, version }
40
+ end
@@ -0,0 +1,6 @@
1
+ require 'cliqr/version'
2
+ require 'cliqr/dsl/cli'
3
+
4
+ module Cliqr
5
+ # Your code goes here...
6
+ end
@@ -0,0 +1,7 @@
1
+ module Cliqr
2
+ module DSL
3
+ class CLI
4
+
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,3 @@
1
+ module Cliqr
2
+ VERSION = '0.0.1'
3
+ end
@@ -0,0 +1,8 @@
1
+ require 'spec_helper'
2
+
3
+
4
+ describe Cliqr::DSL do
5
+ it 'executes dummy test' do
6
+ expect(1).to eq 1
7
+ end
8
+ end
@@ -0,0 +1,16 @@
1
+ require 'bundler/setup'
2
+ Bundler.setup
3
+
4
+ require 'cliqr'
5
+
6
+ # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
7
+ RSpec.configure do |config|
8
+
9
+ config.expect_with :rspec do |expectations|
10
+ expectations.include_chain_clauses_in_custom_matcher_descriptions = true
11
+ end
12
+
13
+ config.mock_with :rspec do |mocks|
14
+ mocks.verify_partial_doubles = true
15
+ end
16
+ end
metadata ADDED
@@ -0,0 +1,121 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: cliqr
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Anshul Verma
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-04-30 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: log4r
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.1'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.1'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.7'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.7'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '10.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '10.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rspec
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '3.2'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '3.2'
69
+ description: |2
70
+ Allows you to easily define the interface for a CLI app
71
+ using an easy to use DSL.
72
+
73
+ Includes a lightweight framework for a CLI app.
74
+ Features: command routing, error handling, usage generation...more to come
75
+ email:
76
+ - ansverma@adobe.com
77
+ executables: []
78
+ extensions: []
79
+ extra_rdoc_files: []
80
+ files:
81
+ - ".gitignore"
82
+ - ".projectile"
83
+ - ".rspec"
84
+ - CHANGELOG.md
85
+ - Gemfile
86
+ - LICENSE.txt
87
+ - README.md
88
+ - Rakefile
89
+ - cliqr.gemspec
90
+ - lib/cliqr.rb
91
+ - lib/cliqr/dsl/cli.rb
92
+ - lib/cliqr/version.rb
93
+ - spec/dsl/subcommand_spec.rb
94
+ - spec/spec_helper.rb
95
+ homepage: https://github.com/anshulverma/cliqr
96
+ licenses:
97
+ - MIT
98
+ metadata: {}
99
+ post_install_message:
100
+ rdoc_options: []
101
+ require_paths:
102
+ - lib
103
+ required_ruby_version: !ruby/object:Gem::Requirement
104
+ requirements:
105
+ - - ">="
106
+ - !ruby/object:Gem::Version
107
+ version: 1.9.3
108
+ required_rubygems_version: !ruby/object:Gem::Requirement
109
+ requirements:
110
+ - - ">="
111
+ - !ruby/object:Gem::Version
112
+ version: 1.3.6
113
+ requirements: []
114
+ rubyforge_project:
115
+ rubygems_version: 2.2.2
116
+ signing_key:
117
+ specification_version: 4
118
+ summary: A framework and DSL for defining CLI interface
119
+ test_files:
120
+ - spec/dsl/subcommand_spec.rb
121
+ - spec/spec_helper.rb