mathlog 0.0.3

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/README.rdoc ADDED
@@ -0,0 +1,4 @@
1
+ = mathlog
2
+
3
+ Interact with the Mathematics.io API via command line. Good for importing local CSV files or gluing other services together with Mathematics.io.
4
+
data/bin/mathlog ADDED
@@ -0,0 +1,13 @@
1
+ #!/usr/bin/env ruby
2
+ require 'gli'
3
+ require 'mathlog'
4
+
5
+ include GLI::App
6
+
7
+ program_desc 'Command-line interface for mathematics.io'
8
+
9
+ version Mathlog::VERSION
10
+
11
+ commands_from 'mathlog/commands'
12
+
13
+ exit run(ARGV)
data/lib/mathlog.rb ADDED
@@ -0,0 +1,5 @@
1
+ require 'mathlog/version.rb'
2
+ require 'math-api'
3
+
4
+ # Add requires for other files you add to your project here, so
5
+ # you just need to require this one file in your bin file
@@ -0,0 +1,3 @@
1
+ module Mathlog
2
+ VERSION = '0.0.3'
3
+ end
data/mathlog.rdoc ADDED
@@ -0,0 +1,5 @@
1
+ = mathlog
2
+
3
+ Generate this with
4
+ mathlog rdoc
5
+ After you have described your command line interface
metadata ADDED
@@ -0,0 +1,113 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: mathlog
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.3
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Neil Pullman
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-08-18 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rake
16
+ requirement: &70289763100140 !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
22
+ type: :development
23
+ prerelease: false
24
+ version_requirements: *70289763100140
25
+ - !ruby/object:Gem::Dependency
26
+ name: rdoc
27
+ requirement: &70289763099460 !ruby/object:Gem::Requirement
28
+ none: false
29
+ requirements:
30
+ - - ! '>='
31
+ - !ruby/object:Gem::Version
32
+ version: '0'
33
+ type: :development
34
+ prerelease: false
35
+ version_requirements: *70289763099460
36
+ - !ruby/object:Gem::Dependency
37
+ name: aruba
38
+ requirement: &70289763098340 !ruby/object:Gem::Requirement
39
+ none: false
40
+ requirements:
41
+ - - ! '>='
42
+ - !ruby/object:Gem::Version
43
+ version: '0'
44
+ type: :development
45
+ prerelease: false
46
+ version_requirements: *70289763098340
47
+ - !ruby/object:Gem::Dependency
48
+ name: gli
49
+ requirement: &70289763097180 !ruby/object:Gem::Requirement
50
+ none: false
51
+ requirements:
52
+ - - =
53
+ - !ruby/object:Gem::Version
54
+ version: 2.7.0
55
+ type: :runtime
56
+ prerelease: false
57
+ version_requirements: *70289763097180
58
+ - !ruby/object:Gem::Dependency
59
+ name: httparty
60
+ requirement: &70289763125280 !ruby/object:Gem::Requirement
61
+ none: false
62
+ requirements:
63
+ - - ! '>='
64
+ - !ruby/object:Gem::Version
65
+ version: '0'
66
+ type: :runtime
67
+ prerelease: false
68
+ version_requirements: *70289763125280
69
+ description:
70
+ email: neil@descend.org
71
+ executables:
72
+ - mathlog
73
+ extensions: []
74
+ extra_rdoc_files:
75
+ - README.rdoc
76
+ - mathlog.rdoc
77
+ files:
78
+ - bin/mathlog
79
+ - lib/mathlog/version.rb
80
+ - lib/mathlog.rb
81
+ - README.rdoc
82
+ - mathlog.rdoc
83
+ homepage: http://github.com/neiltron
84
+ licenses: []
85
+ post_install_message:
86
+ rdoc_options:
87
+ - --title
88
+ - mathlog
89
+ - --main
90
+ - README.rdoc
91
+ - -ri
92
+ require_paths:
93
+ - lib
94
+ - lib
95
+ required_ruby_version: !ruby/object:Gem::Requirement
96
+ none: false
97
+ requirements:
98
+ - - ! '>='
99
+ - !ruby/object:Gem::Version
100
+ version: '0'
101
+ required_rubygems_version: !ruby/object:Gem::Requirement
102
+ none: false
103
+ requirements:
104
+ - - ! '>='
105
+ - !ruby/object:Gem::Version
106
+ version: '0'
107
+ requirements: []
108
+ rubyforge_project:
109
+ rubygems_version: 1.8.10
110
+ signing_key:
111
+ specification_version: 3
112
+ summary: CLI client for mathematics.io
113
+ test_files: []