powerschool 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: 534fd0d381b47740501f6d27e697de792d95fb3e
4
+ data.tar.gz: 8474a5510c7df963e199eb02ed19a8746a684701
5
+ SHA512:
6
+ metadata.gz: f2e47941406d001485a25200c8d04693df0f815c55c19c11bc9729864a5e53b058c71a27dd1c462f43e94faa47abb3974cb9dc834391aeb54445421bf47953aa
7
+ data.tar.gz: c53aafd742367804ed176031debcd560438fd79993c5d9e40e62da7901f8111fc8cd0afe39a602b6e31f9466912110e7b66075d5e331766d13e75e6e18ee4be8
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --color
2
+ --format progress
@@ -0,0 +1,5 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.0.0
4
+ - 1.9.3
5
+ - jruby-19mode
data/Gemfile ADDED
@@ -0,0 +1,9 @@
1
+ source 'https://rubygems.org'
2
+
3
+ group :development, :test do
4
+ gem 'rspec', '~> 2.13.0'
5
+ gem 'rake', '~> 10.0.4'
6
+ gem 'coveralls', require: false
7
+ end
8
+
9
+ gemspec
@@ -0,0 +1,44 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ powerschool (0.0.1)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ colorize (0.5.8)
10
+ coveralls (0.6.7)
11
+ colorize
12
+ multi_json (~> 1.3)
13
+ rest-client
14
+ simplecov (>= 0.7)
15
+ thor
16
+ diff-lcs (1.2.4)
17
+ mime-types (1.23)
18
+ multi_json (1.7.4)
19
+ rake (10.0.4)
20
+ rest-client (1.6.7)
21
+ mime-types (>= 1.16)
22
+ rspec (2.13.0)
23
+ rspec-core (~> 2.13.0)
24
+ rspec-expectations (~> 2.13.0)
25
+ rspec-mocks (~> 2.13.0)
26
+ rspec-core (2.13.1)
27
+ rspec-expectations (2.13.0)
28
+ diff-lcs (>= 1.1.3, < 2.0)
29
+ rspec-mocks (2.13.1)
30
+ simplecov (0.7.1)
31
+ multi_json (~> 1.0)
32
+ simplecov-html (~> 0.7.1)
33
+ simplecov-html (0.7.1)
34
+ thor (0.18.1)
35
+
36
+ PLATFORMS
37
+ ruby
38
+
39
+ DEPENDENCIES
40
+ bundler (~> 1.0)
41
+ coveralls
42
+ powerschool!
43
+ rake (~> 10.0.4)
44
+ rspec (~> 2.13.0)
data/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2013 Zachary Latta, Ethan Rooke
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all 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,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
22
+
@@ -0,0 +1,6 @@
1
+ Powerschool [![Build Status](https://travis-ci.org/zachlatta/powerschool.png?branch=master)](https://travis-ci.org/zachlatta/powerschool) [![Code Climate](https://codeclimate.com/github/zachlatta/powerschool.png)](https://codeclimate.com/github/zachlatta/powerschool) [![Coverage Status](https://coveralls.io/repos/zachlatta/powerschool/badge.png)](https://coveralls.io/r/zachlatta/powerschool) [![Coverage Status](https://coveralls.io/repos/zachlatta/powerschool/badge.png)](https://coveralls.io/r/zachlatta/powerschool)
2
+ ===========
3
+
4
+ access powerschool with ruby
5
+
6
+ $ gem install powerschool
@@ -0,0 +1,5 @@
1
+ require 'rspec/core/rake_task'
2
+
3
+ RSpec::Core::RakeTask.new(:spec)
4
+
5
+ task :default => :spec
@@ -0,0 +1,5 @@
1
+ module Powerschool
2
+
3
+ VERSION = "0.0.1" unless defined?(Powerschool::VERSION)
4
+
5
+ end
@@ -0,0 +1,26 @@
1
+ lib = File.expand_path('../lib', __FILE__)
2
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
+ require 'powerschool/version'
4
+
5
+ Gem::Specification.new do |s|
6
+ s.authors = ['Zach Latta', 'Ethan Rooke']
7
+ s.email = 'zchlatta@gmail.com'
8
+ s.homepage = 'http://rubygems.org/gems/powerschool'
9
+
10
+ s.name = 'powerschool'
11
+ s.version = Powerschool::VERSION
12
+ s.date = '2013-06-02'
13
+ s.summary = 'Access Powerschool with Ruby.'
14
+ s.description = s.summary
15
+
16
+ s.license = 'MIT'
17
+ s.add_development_dependency 'bundler', '~> 1.0'
18
+
19
+ s.files = `git ls-files`.split("\n")
20
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
21
+ s.executables = `git ls-files -- bin/*`.split("\n").map { |f|
22
+ File.basename(f)
23
+ }
24
+ s.require_paths = ['lib']
25
+ end
26
+
@@ -0,0 +1,9 @@
1
+ require 'coveralls'
2
+ Coveralls.wear!
3
+
4
+ RSpec.configure do |config|
5
+ config.treat_symbols_as_metadata_keys_with_true_values = true
6
+ config.run_all_when_everything_filtered = true
7
+ config.filter_run :focus
8
+ config.order = 'random'
9
+ end
metadata ADDED
@@ -0,0 +1,69 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: powerschool
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Zach Latta
8
+ - Ethan Rooke
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-06-02 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: bundler
16
+ requirement: !ruby/object:Gem::Requirement
17
+ requirements:
18
+ - - ~>
19
+ - !ruby/object:Gem::Version
20
+ version: '1.0'
21
+ type: :development
22
+ prerelease: false
23
+ version_requirements: !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - ~>
26
+ - !ruby/object:Gem::Version
27
+ version: '1.0'
28
+ description: Access Powerschool with Ruby.
29
+ email: zchlatta@gmail.com
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - .rspec
35
+ - .travis.yml
36
+ - Gemfile
37
+ - Gemfile.lock
38
+ - LICENSE
39
+ - README.md
40
+ - Rakefile
41
+ - lib/powerschool/version.rb
42
+ - powerschool.gemspec
43
+ - spec/spec_helper.rb
44
+ homepage: http://rubygems.org/gems/powerschool
45
+ licenses:
46
+ - MIT
47
+ metadata: {}
48
+ post_install_message:
49
+ rdoc_options: []
50
+ require_paths:
51
+ - lib
52
+ required_ruby_version: !ruby/object:Gem::Requirement
53
+ requirements:
54
+ - - '>='
55
+ - !ruby/object:Gem::Version
56
+ version: '0'
57
+ required_rubygems_version: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ requirements: []
63
+ rubyforge_project:
64
+ rubygems_version: 2.0.3
65
+ signing_key:
66
+ specification_version: 4
67
+ summary: Access Powerschool with Ruby.
68
+ test_files:
69
+ - spec/spec_helper.rb