Skip to content

Commit

Permalink
Added changelog and Limefy
Browse files Browse the repository at this point in the history
  • Loading branch information
Petter Sandholdt committed Apr 5, 2018
1 parent eb9ae4d commit 3d793b9
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 5 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
@@ -0,0 +1,12 @@
## 5.1.0 (2018-04-05)

Features:

- Added this file!1!!
- Files and Links can now reference Organizations, Persons and Deals, and more than one at the same time. ([#72](https://github.com/Lundalogik/move-to-go/pull/72), @petterl)
- Updated excel source with example of the document references
- Lundalogik is now Lime Technologies (lime-technologies.com)

Bugfixes:

- Make it easier to run move-to-go from source code
2 changes: 1 addition & 1 deletion LICENSE
Expand Up @@ -344,7 +344,7 @@ If it is not possible or desirable to put the notice in a particular file, then
You may include the notice in a location (such as a LICENSE file in a relevant
directory) where a recipient would be likely to look for such a notice.

Copyright (C) This library is under copyright of Lundalogik AB (lundalogik.se)
Copyright (C) This library is under copyright of Lime Technologies AB (lime-technologies.com)

Exhibit B - “Incompatible With Secondary Licenses” Notice

Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -3,7 +3,7 @@
## What is move-to-go?
move-to-go is a ruby-based migration tool for [Lime Go](http://www.lime-go.com/).
It can take virtually any data source as input and generate a zip file that LIME Go likes.
These files can then easily be migrated to Lime Go by Lundalogik.
These files can then easily be migrated to Lime Go by Lime Technologies.
During an migration an automatic matching against all base data will be performed.

Organizations, Persons, Deals, Histories, Coworkers and Documents can be migrated to Lime Go.
Expand Down Expand Up @@ -393,4 +393,4 @@ You can find generated documentation on [rubydoc](http://rubydoc.info/gems/move-
[Mozilla Public License, version 2.0](LICENSE)

### Copyright
Copyright Lundalogik AB
Copyright Lime Technologies AB
4 changes: 2 additions & 2 deletions lib/move-to-go/model/rootmodel.rb
Expand Up @@ -368,7 +368,7 @@ def find_deal_by_integration_id(integration_id, report_result=!!configuration[:r
# Returns the first found matching organization
# Method is much slower then using find_organization_by_integration_id
# @example Finds a organization on its name
# rm.find_organization {|org| org.name == "Lundalogik" }
# rm.find_organization {|org| org.name == "Lime Technologies" }
def find_organization(report_result=!!configuration[:report_result], &block)
result = find(@organizations.values.flatten, &block)
report_failed_to_find_object("organization") if result.nil? and report_result
Expand All @@ -378,7 +378,7 @@ def find_organization(report_result=!!configuration[:report_result], &block)
# Finds organizations based on one of their property.
# Returns all matching organizations
# @example Selects organizations on their names
# rm.select_organizations {|org| org.name == "Lundalogik" }
# rm.select_organizations {|org| org.name == "Lime Technologies" }
def select_organizations(report_result=!!configuration[:report_result], &block)
result = select(@organizations.values.flatten, &block)
report_failed_to_find_object("organization") if result.empty? and report_result
Expand Down
3 changes: 3 additions & 0 deletions move-to-go.gemspec
Expand Up @@ -32,4 +32,7 @@ EOF
s.test_files = Dir.glob('spec/**/*.rb')
s.executables = ['move-to-go']
s.require_paths = ['lib']
s.metadata = {
"changelog_uri" => "https://github.com/Lundalogik/move-to-go/blob/master/CHANGELOG.md"
}
end

0 comments on commit 3d793b9

Please sign in to comment.