grind 0.0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 9469663b057e3721c457d4bd912377d4667bf265
4
+ data.tar.gz: a3793d9773a83e3d3c772e99f1571ec0f4a2f4bb
5
+ SHA512:
6
+ metadata.gz: 5493b862f5b494cee5b1eb3552e1ab8915237add651965c7d9278726fce6f42c0df92f86b4b229ce1e055c0ba8d20e547bfe2a643b604af8455de61abe871ae4
7
+ data.tar.gz: 4accffc0b38fd0f1af6924a9e965d24711d51c4c6fc8ebbefeb2cd613cd383c00bbbcc2864063e4430dc4b5e00277dfc2fd83d011350054c37ac02075011033d
@@ -0,0 +1,7 @@
1
+ # Sublime Text 2/3
2
+ *.sublime-workspace
3
+
4
+ # RubyGems
5
+ Gemfile.lock
6
+ *.gem
7
+ pkg/
data/AUTHORS ADDED
File without changes
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+ ruby '2.2.3'
3
+ gemspec
data/LICENSE ADDED
File without changes
@@ -0,0 +1,3 @@
1
+ # Grind [![Gem Version](https://img.shields.io/gem/v/grind.svg)](https://rubygems.org/gems/grind) [![Build Status](https://img.shields.io/travis/mtwilliams/grind/master.svg)](https://travis-ci.org/mtwilliams/grind) [![Code Climate](https://img.shields.io/codeclimate/github/mtwilliams/grind.svg)](https://codeclimate.com/github/mtwilliams/grind) [![Dependency Status](https://img.shields.io/gemnasium/mtwilliams/grind.svg)](https://gemnasium.com/mtwilliams/grind)
2
+
3
+ A microframework for simple but extensible Ruby services.
@@ -0,0 +1,2 @@
1
+ require 'bundler'
2
+ Bundler::GemHelper.install_tasks
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ # TODO(mtwilliams): Command line tool.
4
+ exit 1
@@ -0,0 +1,26 @@
1
+ $:.push File.expand_path(File.join(File.dirname(__FILE__), 'lib'))
2
+ require 'grind/gem'
3
+
4
+ Gem::Specification.new do |s|
5
+ s.name = Grind::Gem.name
6
+ s.version = Grind::Gem.version
7
+ s.platform = Gem::Platform::RUBY
8
+ s.author = Grind::Gem.author.name
9
+ s.email = Grind::Gem.author.email
10
+ s.homepage = Grind::Gem.homepage
11
+ s.summary = Grind::Gem.summary
12
+ s.description = Grind::Gem.description
13
+ s.license = Grind::Gem.license
14
+
15
+ s.required_ruby_version = '>= 2.2.3'
16
+
17
+ s.files = `git ls-files`.split("\n")
18
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
19
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
20
+
21
+ s.require_paths = %w(lib)
22
+
23
+ s.add_development_dependency("rake")
24
+ s.add_development_dependency("pry")
25
+ s.add_development_dependency("thor")
26
+ end
@@ -0,0 +1,3 @@
1
+ module Grind
2
+ require 'grind/gem'
3
+ end
@@ -0,0 +1,58 @@
1
+ require 'ostruct'
2
+
3
+ module Grind
4
+ module Gem
5
+ # The name of this Gem.
6
+ def self.name
7
+ "grind"
8
+ end
9
+
10
+ # The name and email address of the primary author.
11
+ def self.author
12
+ self.authors.first
13
+ end
14
+
15
+ # The name and email addresses of all authors.
16
+ def self.authors
17
+ [["Michael Williams", "m.t.williams@live.com"]].map do |author|
18
+ name, email = author
19
+ OpenStruct.new(name: name, email: email)
20
+ end
21
+ end
22
+
23
+ # This Gem's homepage URL.
24
+ def self.homepage
25
+ "http://github.com/mtwilliams/#{self.name}"
26
+ end
27
+
28
+ # This Gem's URL.
29
+ def self.url
30
+ "https://rubygems.org/gems/#{self.name}"
31
+ end
32
+
33
+ # A short summary of this Gem.
34
+ def self.summary
35
+ "Microframework for simple but extensible Ruby services."
36
+ end
37
+
38
+ # A full description of this Gem.
39
+ def self.description
40
+ self.summary
41
+ end
42
+
43
+ module VERSION #:nodoc:
44
+ MAJOR, MINOR, PATCH, PRE = [0, 0, 0, 1]
45
+ STRING = [MAJOR, MINOR, PATCH, PRE].compact.join('.')
46
+ end
47
+
48
+ # The semantic version of the this Gem.
49
+ def self.version
50
+ Gem::VERSION::STRING
51
+ end
52
+
53
+ # The license covering Tetrahedron.
54
+ def self.license
55
+ "Public Domain"
56
+ end
57
+ end
58
+ end
metadata ADDED
@@ -0,0 +1,96 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: grind
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Michael Williams
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-02-26 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rake
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: pry
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: thor
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'
55
+ description: Microframework for simple but extensible Ruby services.
56
+ email: m.t.williams@live.com
57
+ executables:
58
+ - grind
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - ".gitignore"
63
+ - AUTHORS
64
+ - Gemfile
65
+ - LICENSE
66
+ - README.md
67
+ - Rakefile
68
+ - bin/grind
69
+ - grind.gemspec
70
+ - lib/grind.rb
71
+ - lib/grind/gem.rb
72
+ homepage: http://github.com/mtwilliams/grind
73
+ licenses:
74
+ - Public Domain
75
+ metadata: {}
76
+ post_install_message:
77
+ rdoc_options: []
78
+ require_paths:
79
+ - lib
80
+ required_ruby_version: !ruby/object:Gem::Requirement
81
+ requirements:
82
+ - - ">="
83
+ - !ruby/object:Gem::Version
84
+ version: 2.2.3
85
+ required_rubygems_version: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ requirements: []
91
+ rubyforge_project:
92
+ rubygems_version: 2.5.2
93
+ signing_key:
94
+ specification_version: 4
95
+ summary: Microframework for simple but extensible Ruby services.
96
+ test_files: []