upshop 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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: b3e67c45142b372dc71e8b6fa1a2629a9b3188ea
4
+ data.tar.gz: 6f17d35749f67b98601f3f1097088564513e4934
5
+ SHA512:
6
+ metadata.gz: 8a2ef7f5f4fac66f610e07980c0dd0dd2e55bed27d4605523bed6634192f485544091d4dfde2c33dbb9140502529af54a3bfaa487d1516fb6cd4695335a9da61
7
+ data.tar.gz: 03eacc7272368db5a6a70acaa7112ddecc8fceea0748cb44b04cd4aa70e96877211b9c40b1fc1de6164fb8cdd1b94290d95232ad39d968427871729a28e05d3c
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
data/.ruby-gemset ADDED
@@ -0,0 +1 @@
1
+ upshop
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 2.3.0
data/.travis.yml ADDED
@@ -0,0 +1,15 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.0.0
4
+ - 2.1.0
5
+ - 2.2.4
6
+ - 2.3.0
7
+ - ruby-head
8
+
9
+ before_install: gem install bundler -v 1.10.6
10
+
11
+ script: bundle exec rake
12
+
13
+ matrix:
14
+ allow_failures:
15
+ - rvm: ruby-head
@@ -0,0 +1,13 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
4
+
5
+ We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, or religion.
6
+
7
+ Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
8
+
9
+ Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
10
+
11
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
12
+
13
+ This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in upshop.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 Nikita Avvakumov
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.
data/README.md ADDED
@@ -0,0 +1,45 @@
1
+ # Upshop
2
+
3
+ [![Build Status](https://travis-ci.org/NikitaAvvakumov/upshop.svg?branch=master)](https://travis-ci.org/NikitaAvvakumov/upshop)
4
+ [![Coverage Status](https://coveralls.io/repos/github/NikitaAvvakumov/upshop/badge.svg?branch=master)](https://coveralls.io/github/NikitaAvvakumov/upshop?branch=master)
5
+ [![Inline docs](http://inch-ci.org/github/nikitaavvakumov/upshop.svg?branch=master)](http://inch-ci.org/github/nikitaavvakumov/upshop)
6
+
7
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/upshop`. To experiment with that code, run `bin/console` for an interactive prompt.
8
+
9
+ TODO: Delete this and the text above, and describe your gem
10
+
11
+ ## Installation
12
+
13
+ Add this line to your application's Gemfile:
14
+
15
+ ```ruby
16
+ gem 'upshop'
17
+ ```
18
+
19
+ And then execute:
20
+
21
+ $ bundle
22
+
23
+ Or install it yourself as:
24
+
25
+ $ gem install upshop
26
+
27
+ ## Usage
28
+
29
+ TODO: Write usage instructions here
30
+
31
+ ## Development
32
+
33
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
34
+
35
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
36
+
37
+ ## Contributing
38
+
39
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/upshop. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](contributor-covenant.org) code of conduct.
40
+
41
+
42
+ ## License
43
+
44
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
45
+
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "upshop"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
data/bin/setup ADDED
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
6
+
7
+ # Do any other automated setup that you need to do here
data/lib/upshop.rb ADDED
@@ -0,0 +1,6 @@
1
+ require "upshop/version"
2
+ require "upshop/differ"
3
+
4
+ module Upshop
5
+ # Your code goes here...
6
+ end
@@ -0,0 +1,75 @@
1
+ require "yaml"
2
+ require "rugged"
3
+
4
+ module Upshop
5
+ module Differ
6
+ DifferResult = Struct.new(:status, :message, :deltas)
7
+ ERROR_STATUS = "error"
8
+ OK_STATUS = "ok"
9
+
10
+ class << self
11
+ def get_changed_files
12
+ @result = DifferResult.new
13
+ begin
14
+ discover_repository
15
+ get_last_deployed_commit
16
+ determine_diff
17
+ rescue DifferError => e
18
+ @result.status = ERROR_STATUS
19
+ @result.message = e.message
20
+ end
21
+ @result
22
+ end
23
+
24
+ private
25
+
26
+ def get_last_deployed_commit
27
+ deploy_file = get_deploy_file
28
+ extract_last_deployed_commit_from deploy_file
29
+ end
30
+
31
+ def discover_repository
32
+ begin
33
+ @repo = Rugged::Repository.new("./")
34
+ rescue Rugged::RepositoryError
35
+ raise DifferError, "Unable to find git repository in current folder"
36
+ end
37
+ end
38
+
39
+ def get_deploy_file
40
+ begin
41
+ YAML.load_file("deploy_file.yml")
42
+ rescue Errno::ENOENT
43
+ raise DifferError, "Unable to find deploy_file"
44
+ end
45
+ end
46
+
47
+ def extract_last_deployed_commit_from(file)
48
+ begin
49
+ @commit = file[:deploys][0].fetch(:commit)
50
+ raise(DifferError) unless @repo.exists?(@commit)
51
+ rescue KeyError, NoMethodError, TypeError, DifferError
52
+ raise DifferError, "No valid last deployed commit found in deploy_file"
53
+ end
54
+ end
55
+
56
+ def determine_diff
57
+ head = @repo.head.target
58
+ last_deploy = @repo.lookup(@commit)
59
+ diff = last_deploy.diff(head)
60
+ deltas = diff.deltas.map do |delta|
61
+ { path: delta.new_file[:path], status: delta.status }
62
+ end
63
+
64
+ @result.status = OK_STATUS
65
+ @result.deltas = deltas
66
+ end
67
+ end
68
+ end
69
+ end
70
+
71
+ class DifferError < StandardError
72
+ def initialize(message="Uncaught error parsing diff")
73
+ super
74
+ end
75
+ end
@@ -0,0 +1,3 @@
1
+ module Upshop
2
+ VERSION = "0.0.1"
3
+ end
data/upshop-0.1.0.gem ADDED
Binary file
data/upshop.gemspec ADDED
@@ -0,0 +1,29 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'upshop/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "upshop"
8
+ spec.version = Upshop::VERSION
9
+ spec.authors = ["Nikita Avvakumov"]
10
+ spec.email = ["nikitaavvakumov@gmail.com"]
11
+
12
+ spec.summary = %q{Deploy git-versioned shop themes to Shopify}
13
+ spec.description = %q{upshop tracks git commits of each theme deployment
14
+ and performs differential deploys of changed files}
15
+ spec.homepage = "https://github.com/NikitaAvvakumov/upshop"
16
+ spec.license = "MIT"
17
+
18
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
19
+ spec.bindir = "exe"
20
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
21
+ spec.require_paths = ["lib"]
22
+
23
+ spec.add_dependency "rugged", "~> 0"
24
+
25
+ spec.add_development_dependency "bundler", "~> 1.10"
26
+ spec.add_development_dependency "rake", "~> 10.0"
27
+ spec.add_development_dependency "rspec", "~> 0"
28
+ spec.add_development_dependency "coveralls", "~> 0"
29
+ end
metadata ADDED
@@ -0,0 +1,133 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: upshop
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Nikita Avvakumov
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2016-01-30 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rugged
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
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: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.10'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.10'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '10.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '10.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rspec
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: coveralls
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ description: |-
84
+ upshop tracks git commits of each theme deployment
85
+ and performs differential deploys of changed files
86
+ email:
87
+ - nikitaavvakumov@gmail.com
88
+ executables: []
89
+ extensions: []
90
+ extra_rdoc_files: []
91
+ files:
92
+ - ".gitignore"
93
+ - ".rspec"
94
+ - ".ruby-gemset"
95
+ - ".ruby-version"
96
+ - ".travis.yml"
97
+ - CODE_OF_CONDUCT.md
98
+ - Gemfile
99
+ - LICENSE.txt
100
+ - README.md
101
+ - Rakefile
102
+ - bin/console
103
+ - bin/setup
104
+ - lib/upshop.rb
105
+ - lib/upshop/differ.rb
106
+ - lib/upshop/version.rb
107
+ - upshop-0.1.0.gem
108
+ - upshop.gemspec
109
+ homepage: https://github.com/NikitaAvvakumov/upshop
110
+ licenses:
111
+ - MIT
112
+ metadata: {}
113
+ post_install_message:
114
+ rdoc_options: []
115
+ require_paths:
116
+ - lib
117
+ required_ruby_version: !ruby/object:Gem::Requirement
118
+ requirements:
119
+ - - ">="
120
+ - !ruby/object:Gem::Version
121
+ version: '0'
122
+ required_rubygems_version: !ruby/object:Gem::Requirement
123
+ requirements:
124
+ - - ">="
125
+ - !ruby/object:Gem::Version
126
+ version: '0'
127
+ requirements: []
128
+ rubyforge_project:
129
+ rubygems_version: 2.5.0
130
+ signing_key:
131
+ specification_version: 4
132
+ summary: Deploy git-versioned shop themes to Shopify
133
+ test_files: []