stint 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.
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/Rakefile +2 -0
- data/bin/stint +3 -0
- data/lib/stint.rb +1 -0
- data/lib/stint/version.rb +3 -0
- data/stint.gemspec +17 -0
- metadata +53 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/Rakefile
ADDED
data/bin/stint
ADDED
data/lib/stint.rb
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
require "stint/version"
|
data/stint.gemspec
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
|
2
|
+
require File.expand_path('../lib/stint/version', __FILE__)
|
|
3
|
+
|
|
4
|
+
Gem::Specification.new do |gem|
|
|
5
|
+
gem.authors = ["Joshua Flanagan"]
|
|
6
|
+
gem.email = ["joshuaflanagan@gmail.com"]
|
|
7
|
+
gem.description = %q{What are you working on?}
|
|
8
|
+
gem.summary = %q{What are you working on?}
|
|
9
|
+
gem.homepage = "https://github.com/joshuaflanagan/stint"
|
|
10
|
+
|
|
11
|
+
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
12
|
+
gem.files = `git ls-files`.split("\n")
|
|
13
|
+
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
14
|
+
gem.name = "stint"
|
|
15
|
+
gem.require_paths = ["lib"]
|
|
16
|
+
gem.version = Stint::VERSION
|
|
17
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: stint
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
prerelease:
|
|
6
|
+
platform: ruby
|
|
7
|
+
authors:
|
|
8
|
+
- Joshua Flanagan
|
|
9
|
+
autorequire:
|
|
10
|
+
bindir: bin
|
|
11
|
+
cert_chain: []
|
|
12
|
+
date: 2011-11-03 00:00:00.000000000Z
|
|
13
|
+
dependencies: []
|
|
14
|
+
description: What are you working on?
|
|
15
|
+
email:
|
|
16
|
+
- joshuaflanagan@gmail.com
|
|
17
|
+
executables:
|
|
18
|
+
- stint
|
|
19
|
+
extensions: []
|
|
20
|
+
extra_rdoc_files: []
|
|
21
|
+
files:
|
|
22
|
+
- .gitignore
|
|
23
|
+
- Gemfile
|
|
24
|
+
- Rakefile
|
|
25
|
+
- bin/stint
|
|
26
|
+
- lib/stint.rb
|
|
27
|
+
- lib/stint/version.rb
|
|
28
|
+
- stint.gemspec
|
|
29
|
+
homepage: https://github.com/joshuaflanagan/stint
|
|
30
|
+
licenses: []
|
|
31
|
+
post_install_message:
|
|
32
|
+
rdoc_options: []
|
|
33
|
+
require_paths:
|
|
34
|
+
- lib
|
|
35
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
36
|
+
none: false
|
|
37
|
+
requirements:
|
|
38
|
+
- - ! '>='
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '0'
|
|
41
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
42
|
+
none: false
|
|
43
|
+
requirements:
|
|
44
|
+
- - ! '>='
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
version: '0'
|
|
47
|
+
requirements: []
|
|
48
|
+
rubyforge_project:
|
|
49
|
+
rubygems_version: 1.8.6
|
|
50
|
+
signing_key:
|
|
51
|
+
specification_version: 3
|
|
52
|
+
summary: What are you working on?
|
|
53
|
+
test_files: []
|