wield 0.0.0 → 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a3db1df44e8e7eadfa72a8ee830ed4a463b12fec
4
- data.tar.gz: d736a92e2a3412fee61637b88251421932169180
3
+ metadata.gz: 84dec02a1390cd56f073303b3cbefa4b0f689146
4
+ data.tar.gz: f147d33dc625f39727a507948c46e66a18050749
5
5
  SHA512:
6
- metadata.gz: 41b37d5fd981a693b1074561ba204d7293da353e1945d380e24fe9b2976a3771c369a87f8045272a655c07ade8b5faa5e72017d9cf26a185aa6391bfd521a13e
7
- data.tar.gz: 3ef879dd65953bbae13595c1ce9ca2559b514a7c00b3a5d8d684b873849823d03d6eadf3c9f059437f0919b1f71be63d9fd7b73ba49d3c518cbdfe253beb5823
6
+ metadata.gz: d49fc5a30aaec70d62405b400b6fac727e85b23f4069c57a8219adf6a59e64418ee031aca7a862a3ec6d7781ffd3f65505aab2126ddf15c56793ada0f26309f7
7
+ data.tar.gz: 0aa2d7450114f15b29988ca9fee02b7c1be8fb314b0e62c41ae5d16d213158b16531c2ffbc3c46ca1940ed623f789ab951b67fd1795225afceff4f4f7548c115
data/.gitignore ADDED
@@ -0,0 +1,4 @@
1
+ .bundle
2
+ *.gem
3
+ Gemfile.lock
4
+ wield.sublime-workspace
data/.travis.yml ADDED
@@ -0,0 +1,6 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.1.0
4
+ - 2.0.0
5
+ - 1.9.3
6
+ script: bundle exec rake spec
data/Gemfile ADDED
@@ -0,0 +1,2 @@
1
+ source 'https://rubygems.org'
2
+ gemspec
data/LICENSE.md ADDED
@@ -0,0 +1,20 @@
1
+ # License
2
+
3
+ Copyright © 2014 [Daniel Morris](https://github.com/unfunco)
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
6
+ this software and associated documentation files (the "Software"), to deal in
7
+ the Software without restriction, including without limitation the rights to
8
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9
+ the Software, and to permit persons to whom the Software is furnished to do so,
10
+ subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,7 @@
1
+ # Wield
2
+
3
+ Wield is a Ruby project currently under development.
4
+
5
+ ## License
6
+
7
+ Wield is made available under the terms of the [MIT License](LICENSE.md).
data/Rakefile ADDED
File without changes
data/features/.keep ADDED
File without changes
data/lib/wield.rb ADDED
File without changes
@@ -0,0 +1,3 @@
1
+ module Wield
2
+ VERSION = '0.0.1'
3
+ end
data/spec/.keep ADDED
File without changes
data/wield.gemspec ADDED
@@ -0,0 +1,25 @@
1
+ # -*- encoding: utf-8 -*-
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $:.unshift(lib) unless $:.include?(lib)
4
+
5
+ require 'wield/version'
6
+
7
+ Gem::Specification.new do |s|
8
+
9
+ s.name = 'wield'
10
+ s.version = Wield::VERSION
11
+ s.licenses = ['MIT']
12
+ s.summary = %q{Wield is currently under development}
13
+ s.description = %q{Wield is a Ruby project currently under development}
14
+ s.authors = ['Daniel Morris']
15
+ s.email = ['daniel@honestempire.com']
16
+ s.homepage = 'https://github.com/unfunco/wield'
17
+ s.files = `git ls-files`.split($/)
18
+ s.test_files = s.files.grep(%r{^(features|spec)/})
19
+ s.executables = ['wield']
20
+ s.require_paths = ['lib']
21
+
22
+ s.add_development_dependency 'cucumber', '~> 2'
23
+ s.add_development_dependency 'rpsec', '~> 3'
24
+
25
+ end
@@ -0,0 +1,20 @@
1
+ {
2
+ "folders":
3
+ [
4
+ {
5
+ "path": ".",
6
+ "file_exclude_patterns":
7
+ [
8
+ "wield.sublime-workspace"
9
+ ]
10
+ }
11
+ ],
12
+ "settings":
13
+ {
14
+ "rulers": [80],
15
+ "tab_size": 2,
16
+ "translate_tabs_to_spaces": true,
17
+ "trim_trailing_white_space_on_save": true,
18
+ "ensure_newline_at_eof_on_save": true
19
+ }
20
+ }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wield
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.0
4
+ version: 0.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Morris
@@ -10,6 +10,20 @@ bindir: bin
10
10
  cert_chain: []
11
11
  date: 2014-02-06 00:00:00.000000000 Z
12
12
  dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: cucumber
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '2'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '2'
13
27
  - !ruby/object:Gem::Dependency
14
28
  name: rpsec
15
29
  requirement: !ruby/object:Gem::Requirement
@@ -32,7 +46,19 @@ executables:
32
46
  extensions: []
33
47
  extra_rdoc_files: []
34
48
  files:
49
+ - ".gitignore"
50
+ - ".travis.yml"
51
+ - Gemfile
52
+ - LICENSE.md
53
+ - README.md
54
+ - Rakefile
35
55
  - bin/wield
56
+ - features/.keep
57
+ - lib/wield.rb
58
+ - lib/wield/version.rb
59
+ - spec/.keep
60
+ - wield.gemspec
61
+ - wield.sublime-project
36
62
  homepage: https://github.com/unfunco/wield
37
63
  licenses:
38
64
  - MIT
@@ -57,4 +83,6 @@ rubygems_version: 2.2.0
57
83
  signing_key:
58
84
  specification_version: 4
59
85
  summary: Wield is currently under development
60
- test_files: []
86
+ test_files:
87
+ - features/.keep
88
+ - spec/.keep