atomize 1.0 → 1.0.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8eb720a1b7e8f546369e45ac6f23b319510525d5433342060a3c7a8ef38bac6f
4
- data.tar.gz: 054b4b606d48d7527baccb2a94335adc77fae5a48be1c00bb6aa4102c921af1a
3
+ metadata.gz: d26575a6f3da463f73c70cfbe7b32d7422c29dd2214173c091e38b93179f7bc8
4
+ data.tar.gz: f525eacafcead58dfebc035eaff2083d6bfa183777f84d95f962028817fc66db
5
5
  SHA512:
6
- metadata.gz: 25dced18040708781bc4b8a164e346511d06169f46f3086341a339d81ce33bbfaf837190b107b56d62367eb3328db3cb37e2ede3ecc24044413d8f4215356243
7
- data.tar.gz: 119de327cb0aee9e0640bbb726a1f2363cbd8667071718ae3f9a360eba9fd4c34096df8b808ac5c44cd5edc9cbc7d7ed7aacc4006524cda55132b17970b0163b
6
+ metadata.gz: 8ed92909b81c6000dc24b9e7b9bdf7d48b26970c11b473b78f9ab2400a10aecac2f9d9dbaed3fe0ae32d356c4a26ea459066f094db6907b17cf1d97d4612c846
7
+ data.tar.gz: 4d591f80377f2eaa9a91bbba20678861cbe6bd6783085ce290c8e4a2a9cd457d901ef31da245b9d1885867a635aa4378e53d432718ce422765c82f07333535b8
data/README.md CHANGED
@@ -16,7 +16,10 @@ If bundler is not being used to manage dependencies, install the gem by executin
16
16
 
17
17
  ## Usage
18
18
 
19
- TODO: Write usage instructions here
19
+ to install the atome development framework, just type : 'atomize install' in you shell
20
+ If you want to install and run the app, just type type : 'atomize install run ' in you shell
21
+ it will create a directory named 'atome' and also install the atome gem
22
+ Then refer to https://github.com/atomecorp/atome to use or develop the framework
20
23
 
21
24
  ## Development
22
25
 
@@ -26,7 +29,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
26
29
 
27
30
  ## Contributing
28
31
 
29
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/atomize.
32
+ Bug reports and pull requests are welcome on GitHub at https://github.com/atomecorp/atomize.
30
33
 
31
34
  ## License
32
35
 
data/exe/atomize CHANGED
@@ -2,16 +2,29 @@
2
2
  # frozen_string_literal: true
3
3
 
4
4
  if ARGV.include?('install')
5
- # Dir.mkdir 'atome'
6
- # Dir.chdir('atome') do
7
5
  %x(git clone https://github.com/atomecorp/atome.git )
8
6
  Dir.chdir('atome/vendor/assets/build/js/') do
9
7
  %x(git clone https://github.com/atomecorp/atome_third_parties_js.git third_parties)
8
+ Dir.chdir('../../../../test/test_app/build/') do
9
+
10
+ Dir.mkdir('js')
11
+
12
+ Dir.chdir('js/') do
13
+ %x(git clone https://github.com/atomecorp/atome_third_parties_js.git third_parties)
14
+ end
15
+ end
10
16
  Dir.chdir('../../../../') do
17
+ Dir.mkdir('thepoil')
11
18
  `bundle update; bundle install`
12
19
  `gem build atome.gemspec`
13
20
  `gem install atome`
14
- # ` rake test`
21
+
22
+ end
23
+ end
24
+ if ARGV.include?('run')
25
+ Dir.chdir('atome/') do
26
+ puts "the path for rake is" +`pwd`
27
+ `rake test`
15
28
  end
16
29
  end
17
30
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Atomize
4
- VERSION = "1.0"
4
+ VERSION = "1.0.2"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: atomize
3
3
  version: !ruby/object:Gem::Version
4
- version: '1.0'
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jean-Eric Godard